diff options
Diffstat (limited to 'applications/luci-app-xinetd')
38 files changed, 4251 insertions, 3686 deletions
diff --git a/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js b/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js index c8caa5292f..d1476ae1e5 100644 --- a/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js +++ b/applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js @@ -4,6 +4,7 @@ 'require form'; 'require view'; 'require fs'; +'require network'; 'require tools.widgets as widgets'; function validateEmpty(section, value) { @@ -16,8 +17,15 @@ function validateEmpty(section, value) { } return view.extend({ - render: function() { + load: function() { + return Promise.all([ + network.getNetworks() + ]); + }, + + render: function(promises) { var m, s, o; + var networks = promises[0]; m = new form.Map('xinetd', _('Xinetd Settings'), _('Here you can configure Xinetd services')); @@ -97,6 +105,24 @@ return view.extend({ o.rmempty = false; o.modalonly = true; + o = s.taboption('basic', form.Value, 'bind', _('Bind address'), _('To which address to bind')); + o.datatype = 'ipaddr'; + [4, 6].forEach(family => { + networks.forEach(network => { + if (network.getName() !== 'loopback') { + const addrs = (family === 6) ? network.getIP6Addrs() : network.getIPAddrs(); + addrs.forEach(addr => { + o.value(addr.split('/')[0], E([], [ + addr.split('/')[0], ' (', + widgets.NetworkSelect.prototype.renderIfaceBadge(network), + ')' + ])); + }); + } + }); + }); + o.rmempty = true; + o = s.taboption('basic', form.Value, 'id', _('Identification'), _('Required if a services can use tcp and udp.')); o.datatype = 'string'; o.value('time-stream'); @@ -174,7 +200,7 @@ return view.extend({ o.rmempty = false; o.modalonly = true; - o = s.taboption('advanced', form.MultiValue, 'log_on_success', _('Log on success'), _('Informations that should be logged for this service in case of successful connection')); + o = s.taboption('advanced', form.MultiValue, 'log_on_success', _('Log on success'), _('What to log for successful connections')); o.value('PID', _('Server PID')); o.value('HOST', _('Remote host address ')); o.value('USERID', _('User ID of the remote user')); @@ -183,7 +209,7 @@ return view.extend({ o.value('TRAFFIC', _('Total bytes in and out for a redirected service')); o.modalonly = true; - o = s.taboption('advanced', form.MultiValue, 'log_on_failure', _('Log on failure'), _('Informations that should be logged for this service in case of a failed connection')); + o = s.taboption('advanced', form.MultiValue, 'log_on_failure', _('Log on failure'), _('What to log for failed connections')); o.value('HOST', _('Remote host address ')); o.value('USERID', _('User ID of the remote user')); o.value('ATTEMPT', _('Failed attempts')); diff --git a/applications/luci-app-xinetd/po/ar/xinetd.po b/applications/luci-app-xinetd/po/ar/xinetd.po index b9ffe34622..8e28787241 100644 --- a/applications/luci-app-xinetd/po/ar/xinetd.po +++ b/applications/luci-app-xinetd/po/ar/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-04-12 14:21+0000\n" -"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n" +"PO-Revision-Date: 2024-07-16 16:41+0000\n" +"Last-Translator: Rex_sa <rex.sa@pm.me>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/ar/>\n" "Language: ar\n" @@ -11,76 +11,80 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "إعدادات متقدمة" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "" +msgstr "مفعَّل" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -88,246 +92,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" -msgstr "" +msgstr "المنفذ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" -msgstr "" +msgstr "البروتوكول" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" -msgstr "" +msgstr "الخادم" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" -msgstr "" +msgstr "نوع الخدمة" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" -msgstr "" +msgstr "لا" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "نعم" diff --git a/applications/luci-app-xinetd/po/bg/xinetd.po b/applications/luci-app-xinetd/po/bg/xinetd.po index 0fd4199bb1..98d76d9da5 100644 --- a/applications/luci-app-xinetd/po/bg/xinetd.po +++ b/applications/luci-app-xinetd/po/bg/xinetd.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-01-11 23:35+0000\n" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" "Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n" "Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/bg/>\n" @@ -10,76 +10,80 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.4-dev\n" +"X-Generator: Weblate 5.8-rc\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Разширени настройки" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "" +msgstr "Позволен" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Порт" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/bn_BD/xinetd.po b/applications/luci-app-xinetd/po/bn_BD/xinetd.po index be200689ba..f91f040b5c 100644 --- a/applications/luci-app-xinetd/po/bn_BD/xinetd.po +++ b/applications/luci-app-xinetd/po/bn_BD/xinetd.po @@ -8,74 +8,78 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -83,246 +87,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ca/xinetd.po b/applications/luci-app-xinetd/po/ca/xinetd.po index e36f027540..4847346b71 100644 --- a/applications/luci-app-xinetd/po/ca/xinetd.po +++ b/applications/luci-app-xinetd/po/ca/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Protocol" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "no" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "sí" diff --git a/applications/luci-app-xinetd/po/cs/xinetd.po b/applications/luci-app-xinetd/po/cs/xinetd.po index 138e5f7351..071b5ccf21 100644 --- a/applications/luci-app-xinetd/po/cs/xinetd.po +++ b/applications/luci-app-xinetd/po/cs/xinetd.po @@ -1,82 +1,89 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-22 12:01+0000\n" +"Last-Translator: Ondřej Vajda <g3n371k@gmail.com>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/cs/>\n" "Language: cs\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"X-Generator: Weblate 5.8.2-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" -msgstr "" +msgstr "Přístup" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "Pokročilá nastavení" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/da/xinetd.po b/applications/luci-app-xinetd/po/da/xinetd.po index 5bdc7cf70a..f4830e5572 100644 --- a/applications/luci-app-xinetd/po/da/xinetd.po +++ b/applications/luci-app-xinetd/po/da/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Aktiveret" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Tjenestetype" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/de/xinetd.po b/applications/luci-app-xinetd/po/de/xinetd.po index e60569d1d0..9ba2b00e8a 100644 --- a/applications/luci-app-xinetd/po/de/xinetd.po +++ b/applications/luci-app-xinetd/po/de/xinetd.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2024-04-19 17:04+0000\n" +"PO-Revision-Date: 2024-07-04 05:50+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/de/>\n" @@ -8,21 +8,21 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Zugriffskontrolle" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Zugriffszeiten" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "Neuen Service-Eintrag hinzufügen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." @@ -30,56 +30,60 @@ msgstr "" "Zusätzliche Aufruf-Argumente für den Server. Es findet keine Überprüfung " "statt." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "Zulässige Hosts" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "Grundlegende Einstellungen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Bind-Adresse" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "Kompletter Pfad zur ausführbaren Server-Datei" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "Verbindungslimit" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "Dauer einer Session" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "Diesen Service Aktivieren oder Deaktivieren" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "Erwartet '[Zahl] [Zahl]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "Erwartet 'hh:mm-hh:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "Erwartet: nicht leerer Wert" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "Fehlgeschlagene Versuche" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "Verbotene Hosts" @@ -87,77 +91,61 @@ msgstr "Verbotene Hosts" msgid "Grant access to luci-app-xinetd" msgstr "Zugriff auf luci-app-xinetd gewähren" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "Hier können Xinetd Dienste konfiguriert werden" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "INTERN" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "Identifikation" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" -"Informationen die im Falle einer fehlgeschlagenen Verbindung protokolliert " -"werden sollen" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" -"Informationen die im Falle einer erfolgreichen Verbindung protokolliert " -"werden sollen" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "Ungültiges Zeichen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "Liste zulässiger Hosts für diesen Service" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "Liste verbotener Hosts für diesen Service" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "Zusätzlich auf IPv6 hören" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "Log im Fehlerfall" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "Log bei Erfolg" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "Multi-Threaded-Dienst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "Name für den Dienst, wenn INTERN von /etc/services" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "Anzahl Instanzen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" @@ -165,85 +153,85 @@ msgstr "" "Anzahl gleichzeitig laufender Server für diesen Service. Das Argument ist " "eine Zahl oder das Schlüsselwort UNLIMITED" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Port" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "Umleiten" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "Eingehende TCP Anfragen an diese IP-Adresse:Port umleiten." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "Adresse des entfernten Hosts" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "Erforderlich, wenn ein Dienst tcp und udp verwenden kann." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "Threading für diesen Service" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Server" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "Server-PID" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "Server Argumente" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "Server mit dem Exit-Code" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "Service \"%s\": Unzulässige Datei für Server \"%s\"" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "Service \"%s\": Kein Zugriff auf Datei für Server \"%s\" (%s)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "Service Definitionen zur Verwendung mit Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "Dienstname" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "Single-threaded Dienst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "Socket Typ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" @@ -251,92 +239,108 @@ msgstr "" "Erwartet zwei Argumente: [Anzahl Verbindungen pro Sekunde] [Anzahl von " "Sekunden zur Reaktivierung des Service]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" "Port, der für diesen Service verwendet werden soll. Wertebereich: 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "Das Protokoll das für diesen Service verwendet werden soll" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "Typ des Sockets der für diesen Service verwendet werden soll" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "Threading Verhalten" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "Zeitintervalle in denen der Service verfügbar ist (Format hh:mm-hh:mm)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "An welche Adresse binden" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "Anzahl Bytes (IN/OUT) für einen weitergeleiteten Service" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "Typ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Art des Dienstes" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "UNLISTED" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "Benutzer (UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "Benutzer-ID des Server-Prozesses für diesen Server" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "Benutzer-ID des Remote Users" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" +"Informationen die im Falle einer fehlgeschlagenen Verbindung protokolliert " +"werden sollen" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" +"Informationen die im Falle einer erfolgreichen Verbindung protokolliert " +"werden sollen" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "Xinetd Einstellungen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "Datagrammbasierter Dienst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "direkter Zugriff auf den IP-Dienst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "nein" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "sequentieller Datagramm-Übertragungsdienst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "strombasierter Dienst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "ja" diff --git a/applications/luci-app-xinetd/po/el/xinetd.po b/applications/luci-app-xinetd/po/el/xinetd.po index 708f00cd35..a4db137da2 100644 --- a/applications/luci-app-xinetd/po/el/xinetd.po +++ b/applications/luci-app-xinetd/po/el/xinetd.po @@ -1,82 +1,89 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-11-09 08:59+0000\n" +"Last-Translator: Mac Mac <nofxmac@gmail.com>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/el/>\n" "Language: el\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.8.2\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" -msgstr "" +msgstr "Θύρα" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" -msgstr "" +msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/en/xinetd.po b/applications/luci-app-xinetd/po/en/xinetd.po index c8248ec0ea..66f45690f7 100644 --- a/applications/luci-app-xinetd/po/en/xinetd.po +++ b/applications/luci-app-xinetd/po/en/xinetd.po @@ -10,74 +10,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.16.2-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Advanced Settings" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -85,246 +89,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Port" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Server" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/es/xinetd.po b/applications/luci-app-xinetd/po/es/xinetd.po index 7950274970..82290c33f4 100644 --- a/applications/luci-app-xinetd/po/es/xinetd.po +++ b/applications/luci-app-xinetd/po/es/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-03-21 13:58+0000\n" -"Last-Translator: Mc Giver <mcgivergim@gmail.com>\n" +"PO-Revision-Date: 2024-10-08 22:24+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/es/>\n" "Language: es\n" @@ -10,323 +10,337 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.8-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Control de acceso" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Horas de acceso" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "Agregar nueva entrada de servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" +"Argumentos adicionales pasados al servidor. No hay validaciones de esta " +"entrada." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Ajustes avanzados" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" -msgstr "" +msgstr "Huéspedes permitidos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" -msgstr "" +msgstr "Ajustes básicos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Dirección de unión" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" -msgstr "" +msgstr "Ruta completa al archivo ejecutable del servidor" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" -msgstr "" +msgstr "Límite de conexión" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" -msgstr "" +msgstr "Duración de una sesión de servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" -msgstr "" +msgstr "Activar o desactivar este servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Activado" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" -msgstr "" +msgstr "Se esperaba '[Number] [Number]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" -msgstr "" +msgstr "Se esperaba 'hh:mm-hh:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" -msgstr "" +msgstr "Se esperaba: valor no vacío" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" -msgstr "" +msgstr "Intentos fallidos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" -msgstr "" +msgstr "Hosts prohibidos" #: applications/luci-app-xinetd/root/usr/share/rpcd/acl.d/luci-app-xinetd.json:3 msgid "Grant access to luci-app-xinetd" -msgstr "" +msgstr "Conceder acceso a luci-app-xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" -msgstr "" +msgstr "Aquí puedes configurar servicios de Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" -msgstr "" +msgstr "INTERNO" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" +msgstr "Identificación" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" -msgstr "" +msgstr "Carácter inválido" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" -msgstr "" +msgstr "Lista de hosts permitidos para acceder a este servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" -msgstr "" +msgstr "Lista de hosts prohibidos para acceder a este servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" -msgstr "" +msgstr "Escuchar en IPv6 adicional" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" -msgstr "" +msgstr "Registrar en caso de fallo" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" -msgstr "" +msgstr "Registrar en caso de éxito" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" -msgstr "" +msgstr "Servicio multiproceso" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" -msgstr "" +msgstr "Nombre del servicio, si es INTERNO de /etc/services" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" -msgstr "" +msgstr "Número de instancias" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" +"Número de servidores que se ejecutan simultáneamente para este servicio. El " +"argumento puede ser cualquier número o la palabra clave 'UNLIMITED'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Puerto" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" -msgstr "" +msgstr "Protocolo" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" -msgstr "" +msgstr "Redirigir" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." -msgstr "" +msgstr "Redirigir las solicitudes TCP entrantes a esta dirección IP:puerto." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" -msgstr "" +msgstr "Dirección de host remoto" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." -msgstr "" +msgstr "Requerido si un servicio puede usar TCP y UDP." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" -msgstr "" +msgstr "Selección de gestión de hilos para este servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Servidor" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" -msgstr "" +msgstr "PID del servidor" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" -msgstr "" +msgstr "Argumentos del servidor" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" -msgstr "" +msgstr "El servidor salió junto con el estado de salida" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" -msgstr "" +msgstr "Servicio \"%s\": Archivo de servidor inválido \"%s\"" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" -msgstr "" +msgstr "Servicio \"%s\": No se tiene acceso al archivo de servidor \"%s\" (%s)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" -msgstr "" +msgstr "Definiciones de servicio que utilizará Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" -msgstr "" +msgstr "Nombre de servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" -msgstr "" +msgstr "Servicio de un solo hilo" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" -msgstr "" +msgstr "Tipo de socket" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" -msgstr "" +msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" +"Toma dos argumentos: [Número de conexiones por segundo] [Número de segundos " +"para volver a habilitar el servicio]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" -msgstr "" +msgstr "El puerto utilizado para este servicio, rango válido: 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" -msgstr "" +msgstr "El protocolo que se utilizará para este servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" -msgstr "" +msgstr "El tipo de socket utilizado para este servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" -msgstr "" +msgstr "Comportamiento de los subprocesos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" +"Los intervalos de tiempo dentro del servicio están disponibles (formato hh" +":mm-hh:mm)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "¿A qué dirección vincular?" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" +"Para servicios de redireccionamiento, el número total de bytes de entrada y " +"salida" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "Tipo" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" -msgstr "" +msgstr "Tipo de servicio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" -msgstr "" +msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" -msgstr "" +msgstr "NO INCLUIDO EN LISTADO" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" -msgstr "" +msgstr "Usuario (UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" -msgstr "" +msgstr "ID del usuario del proceso del servidor para este servidor" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" -msgstr "" +msgstr "ID del usuario remoto" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "¿Qué registrar en caso de conexiones fallidas?" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "¿Qué registrar para conexiones exitosas?" #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" -msgstr "" +msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" -msgstr "" +msgstr "Configuración de Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" -msgstr "" +msgstr "servicio basado en datagramas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" -msgstr "" +msgstr "acceso directo al servicio IP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" -msgstr "" +msgstr "no" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" -msgstr "" +msgstr "servicio de transmisión de datagramas secuenciales" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" -msgstr "" +msgstr "servicio basado en streaming" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" -msgstr "" +msgstr "Sí" diff --git a/applications/luci-app-xinetd/po/fi/xinetd.po b/applications/luci-app-xinetd/po/fi/xinetd.po index 925f9f23d5..2f69eed123 100644 --- a/applications/luci-app-xinetd/po/fi/xinetd.po +++ b/applications/luci-app-xinetd/po/fi/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Palvelun tyyppi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/fr/xinetd.po b/applications/luci-app-xinetd/po/fr/xinetd.po index 5e36d8b410..71b03c0a54 100644 --- a/applications/luci-app-xinetd/po/fr/xinetd.po +++ b/applications/luci-app-xinetd/po/fr/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-02-01 22:49+0000\n" -"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n" +"PO-Revision-Date: 2024-11-19 09:25+0000\n" +"Last-Translator: Phantomwise <phantomwise67@protonmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/fr/>\n" "Language: fr\n" @@ -10,76 +10,80 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.4-dev\n" +"X-Generator: Weblate 5.9-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Paramètres avancés" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" -msgstr "" +msgstr "Activer ou désactiver ce service" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Activé" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" -msgstr "" +msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ga/xinetd.po b/applications/luci-app-xinetd/po/ga/xinetd.po new file mode 100644 index 0000000000..5373b6c117 --- /dev/null +++ b/applications/luci-app-xinetd/po/ga/xinetd.po @@ -0,0 +1,342 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n" +"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/ga/>\n" +"Language: ga\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" +"n>6 && n<11) ? 3 : 4;\n" +"X-Generator: Weblate 5.8-rc\n" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 +msgid "Access Control" +msgstr "Rialú Rochtana" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 +msgid "Access times" +msgstr "Amanna rochtana" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 +msgid "Add new service entry" +msgstr "Cuir iontráil seirbhíse nua leis" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +msgid "" +"Additional arguments passed to the server. There is no validation of this " +"input." +msgstr "" +"Argóintí breise curtha ar aghaidh chuig an bhfreastalaí. Níl aon bhailíochtú " +"ar an ionchur seo." + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 +msgid "Advanced Settings" +msgstr "Socruithe chun cinn" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 +msgid "Allowed hosts" +msgstr "Óstach ceadaithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 +msgid "Basic Settings" +msgstr "Socruithe Bunúsacha" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Seoladh ceangail" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +msgid "Complete path to the executable server file" +msgstr "Comhlánaigh cosán go dtí an comhad freastalaí inrite" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 +msgid "Connection limit" +msgstr "Teorainn ceangail" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +msgid "Duration of a service session" +msgstr "Fad seisiún seirbhíse" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 +msgid "Enable or Disable this service" +msgstr "Cumasaigh nó Díchumasaigh an tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 +msgid "Enabled" +msgstr "Cumasaithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 +msgid "Expected '[Number] [Number]'" +msgstr "Bhíothas ag súil le '[Uimhir] [Uimhir]'" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 +msgid "Expected 'hh:mm-hh:mm'" +msgstr "Bhíothas ag súil le 'hh:mm-hh:mm'" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 +msgid "Expecting: non-empty value" +msgstr "Ag súil le: luach neamhfholamh" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +msgid "Failed attempts" +msgstr "Iarrachtaí teipthe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +msgid "Forbidden hosts" +msgstr "Óstaigh toirmiscthe" + +#: applications/luci-app-xinetd/root/usr/share/rpcd/acl.d/luci-app-xinetd.json:3 +msgid "Grant access to luci-app-xinetd" +msgstr "Deonaigh rochtain ar luci-app-xinetd" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 +msgid "Here you can configure Xinetd services" +msgstr "Anseo is féidir leat seirbhísí Xinetd a chumrú" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 +msgid "INTERNAL" +msgstr "INMHEÁNACH" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 +msgid "IPv6" +msgstr "IPv6" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 +msgid "Identification" +msgstr "Aitheantas" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 +msgid "Invalid character" +msgstr "Carachtar neamhbhailí" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 +msgid "List of allowed hosts to access this service" +msgstr "" +"Liosta de na hóstach ceadaithe chun rochtain a fháil ar an tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +msgid "List of forbidden hosts to access this service" +msgstr "Liosta de na hóstach toirmiscthe rochtain a fháil ar an tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 +msgid "Listen on IPv6 additional" +msgstr "Éist ar IPv6 breise" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "Log on failure" +msgstr "Logáil ar teip" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "Log on success" +msgstr "Logáil ar rath" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 +msgid "Multi-Threaded Service" +msgstr "Seirbhís Il-snáithithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 +msgid "Name for the service, if INTERNAL from /etc/services" +msgstr "Ainm na seirbhíse, más INMHEÁNACH ó /etc/services" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 +msgid "Number of instances" +msgstr "Líon cásanna" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 +msgid "" +"Number of simultaneously running servers for this service. Argument is any " +"number or the keyword 'UNLIMITED'" +msgstr "" +"Líon na bhfreastalaithe a ritheann go comhuaineach don tseirbhís seo. Is " +"ionann argóint agus uimhir ar bith nó an eochairfhocal 'UNLIMITED'" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +msgid "Port" +msgstr "Port" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 +msgid "Protocol" +msgstr "Prótacal" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 +msgid "Redirect" +msgstr "Atreorú" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 +msgid "Redirect incoming TCP requests to this IP address:port." +msgstr "Iarratais TCP isteach a atreorú chuig an seoladh IP seo: port." + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 +msgid "Remote host address" +msgstr "Seoladh cianda óstaigh" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 +msgid "Required if a services can use tcp and udp." +msgstr "Ag teastáil más féidir le seirbhísí tcp agus udp a úsáid." + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 +msgid "Selection of the threading for this service" +msgstr "Roghnú na snáitheála don tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +msgid "Server" +msgstr "Freastalaí" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 +msgid "Server PID" +msgstr "PID freastalaí" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +msgid "Server arguments" +msgstr "Argóintí freastalaí" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 +msgid "Server exited along with the exit status" +msgstr "Scoir an freastalaí mar aon leis an stádas scoir" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +msgid "Service \"%s\": Invalid server file \"%s\"" +msgstr "Seirbhís \"%s\": Comhad freastalaí neamhbhailí \"%s\"" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +msgid "Service \"%s\": No access to server file \"%s\" (%s)" +msgstr "Seirbhís \"%s\": Níl rochtain ar chomhad an fhreastalaí \"%s\" (%s)" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 +msgid "Service definitions to be used by Xinetd" +msgstr "Sainmhínithe seirbhíse le húsáid ag Xinetd" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 +msgid "Servicename" +msgstr "Ainm seirbhíse" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +msgid "Single-Threaded Service" +msgstr "Seirbhís Snáithe Aonair" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 +msgid "Socket type" +msgstr "Cineál soicéad" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 +msgid "TCP" +msgstr "TCP" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 +msgid "" +"Takes two arguments: [Number of connections per second] [Number of seconds " +"to reenable service]" +msgstr "" +"Déantar dhá argóint: [Líon nasc sa soicind] [Líon soicind chun an tseirbhís " +"a athchumasú]" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +msgid "The port used for this service, valid range: 0 - 65535" +msgstr "An calafort a úsáidtear don tseirbhís seo, raon bailí: 0 - 65535" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 +msgid "The protocol to be used for this service" +msgstr "An prótacal atá le húsáid don tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 +msgid "The type of the socket used for this service" +msgstr "An cineál soicéad a úsáidtear don tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 +msgid "Threading behaviour" +msgstr "Iompar snáithithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 +msgid "Time intervals within service is available (Format hh:mm-hh:mm)" +msgstr "Tá eatraimh ama laistigh den tseirbhís ar fáil (Formáid hh:mm-hh:mm)" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "Cén seoladh lena gceangal" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 +msgid "Total bytes in and out for a redirected service" +msgstr "Bearta iomlána isteach agus amach le haghaidh seirbhíse atreoraithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 +msgid "Type" +msgstr "Cineál" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 +msgid "Type of service" +msgstr "Cineál seirbhíse" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 +msgid "UDP" +msgstr "UDP" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 +msgid "UNLISTED" +msgstr "NEAMHLIOSTAITHE" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 +msgid "User (UID)" +msgstr "Úsáideoir (UID)" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 +msgid "User ID for the server process for this service" +msgstr "Aitheantas Úsáideora don phróiseas freastalaí don tseirbhís seo" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 +msgid "User ID of the remote user" +msgstr "Aitheantas úsáideora an úsáideora chianda" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "Cad atá le logáil isteach le haghaidh naisc theip" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "Cad atá le logáil isteach le haghaidh naisc rathúla" + +#: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 +msgid "Xinetd" +msgstr "Xinetd" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 +msgid "Xinetd Settings" +msgstr "Socruithe Xinetd" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 +msgid "datagram-based service" +msgstr "seirbhís datagram-bhunaithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 +msgid "direct access to IP service" +msgstr "rochtain dhíreach ar sheirbhís IP" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 +msgid "no" +msgstr "níl" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 +msgid "sequential datagram transmission service" +msgstr "seirbhís tarchurtha datagram seicheamhach" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +msgid "stream-based service" +msgstr "seirbhís sruthbhunaithe" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 +msgid "yes" +msgstr "tá" diff --git a/applications/luci-app-xinetd/po/he/xinetd.po b/applications/luci-app-xinetd/po/he/xinetd.po index 9640aa3e0b..ea96c7877c 100644 --- a/applications/luci-app-xinetd/po/he/xinetd.po +++ b/applications/luci-app-xinetd/po/he/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "פעילה" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/hi/xinetd.po b/applications/luci-app-xinetd/po/hi/xinetd.po index d7cf949e43..9be8def98a 100644 --- a/applications/luci-app-xinetd/po/hi/xinetd.po +++ b/applications/luci-app-xinetd/po/hi/xinetd.po @@ -1,81 +1,89 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-07-06 11:32+0000\n" +"Last-Translator: Sathvic <sathvic.p@gmail.com>\n" +"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/hi/>\n" "Language: hi\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "उन्नत सेटिंग्स" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -83,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/hu/xinetd.po b/applications/luci-app-xinetd/po/hu/xinetd.po index 2ca9acfd60..37af4912d7 100644 --- a/applications/luci-app-xinetd/po/hu/xinetd.po +++ b/applications/luci-app-xinetd/po/hu/xinetd.po @@ -1,82 +1,89 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-08-29 18:11+0000\n" +"Last-Translator: hmzs <hmzs@1szer1.hu>\n" +"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/hu/>\n" "Language: hu\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.7.1-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "Haladó beállítások" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "" +msgstr "Engedélyezve" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" -msgstr "" +msgstr "Nem üres érték az elvárás" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" -msgstr "" +msgstr "Protokoll" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" -msgstr "" +msgstr "Kiszolgáló" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" -msgstr "" +msgstr "Szolgáltatás típusa" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/it/xinetd.po b/applications/luci-app-xinetd/po/it/xinetd.po index 5dd5a7ca2d..3a17967ff5 100644 --- a/applications/luci-app-xinetd/po/it/xinetd.po +++ b/applications/luci-app-xinetd/po/it/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-04-19 13:21+0000\n" -"Last-Translator: ettore <hettore.giacomini@gmail.com>\n" +"PO-Revision-Date: 2024-07-17 22:44+0000\n" +"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/it/>\n" "Language: it\n" @@ -10,76 +10,81 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Controllo di accesso" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Tempi di accesso" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" -msgstr "" +msgstr "Aggiungi una nuova voce di servizio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" +"Ulteriori argomenti passati al server. Non c'è convalida di questo input." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Impostazioni avanzate" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" +msgstr "Impostazioni di base" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "Abilitato" +msgstr "Abilita" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +92,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Porta" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Server" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" -msgstr "" +msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" -msgstr "" +msgstr "Tipo di servizio" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ja/xinetd.po b/applications/luci-app-xinetd/po/ja/xinetd.po index fe731441a5..2d469b9c99 100644 --- a/applications/luci-app-xinetd/po/ja/xinetd.po +++ b/applications/luci-app-xinetd/po/ja/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "アクセス制御" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "詳細設定" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ko/xinetd.po b/applications/luci-app-xinetd/po/ko/xinetd.po index a756703e13..60fb032d53 100644 --- a/applications/luci-app-xinetd/po/ko/xinetd.po +++ b/applications/luci-app-xinetd/po/ko/xinetd.po @@ -9,74 +9,78 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +88,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/lt/xinetd.po b/applications/luci-app-xinetd/po/lt/xinetd.po index ff609550d8..2a0e3093f7 100644 --- a/applications/luci-app-xinetd/po/lt/xinetd.po +++ b/applications/luci-app-xinetd/po/lt/xinetd.po @@ -1,339 +1,347 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-01-29 01:18+0000\n" -"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" +"PO-Revision-Date: 2024-10-18 12:58+0000\n" +"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n" "Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/lt/>\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " -"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " -"1 : 2);\n" -"X-Generator: Weblate 5.4-dev\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (" +"n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Prieigos valdymas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Prieigos laikai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "Pridėti naujos tarnybos įvestį" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" +"Papildomi argumentai yra perduodami serveriui. Nėra šios įvesties " +"patvirtinimo/patikrinimo." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Pažangūs nustatymai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" -msgstr "Leidžiami skleidėjai/p.k – vedėjai" +msgstr "Leidžiami skleidėjai/vedėjai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "Paprasti nustatymai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Pririšti adresą" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "Pilnas kelias, kuriame randamas vykdomasis serverio failas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "Prisijungimų limitas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" -msgstr "Tarnybos sesijos trukmė" +msgstr "Tarnybos seanso trukmė" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "Įjungti/Išjungti šią tarnybą" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "Įjungta/-as" +msgstr "Įjungta/Įgalinta (-s/-i)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "Numatytas – '[Skaičius] [Skaičius]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "Numatoma – 'vv:mm-val:min'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "Tikėtina: netuščia reikšmė" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "Nepavykę/Nesėkmingi bandymai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" -msgstr "Draudžiami skleidėjai/p.k – vedėjai" +msgstr "Draudžiami skleidėjai/vedėjai" #: applications/luci-app-xinetd/root/usr/share/rpcd/acl.d/luci-app-xinetd.json:3 msgid "Grant access to luci-app-xinetd" msgstr "Duoti prieigą prie „luci-app-xinetd“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "Čia Jūs galite konfigūruoti „Xinetd“ tarnybas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "VIDINIS" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6 – Interneto protokolo versija 6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "Identifikacija" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "Negalimos rašmenys" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -"Leidžiamų skleidėjų/p.k – vedėjų sąrašas, kurie turi prieigą prie šios " -"tarnybos" +"Leidžiamų skleidėjų/vedėjų sąrašas, kurie turi prieigą prie šios tarnybos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -"Draudžiamų skleidėjų/p.k – vedėjų sąrašas, kurie neturi prieigos prie šios " -"tarnybos" +"Draudžiamų skleidėjų/vedėjų sąrašas, kurie neturi prieigos prie šios tarnybos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" -msgstr "" +msgstr "Laukti prisijungimo/jungties ryšio ant – IPv6, papildomai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "Prisijungimo nepavykimas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "Prisijungimo pavykimas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" -msgstr "" +msgstr "Kelių gijų tarnyba" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" -msgstr "" +msgstr "Tarnybos pavadinimas, jei „VIDINIS“ yra iš – „/etc/services“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" -msgstr "" +msgstr "Egzempliorių skaičius" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" +"Vienu metu veikiančių šios tarnybos serverių skaičius. Argumentas yra – bet " +"koks skaičius arba raktinis žodis – „NERIBOTAS“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Prievadas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Protokolas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" -msgstr "" +msgstr "Peradresuoti" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." -msgstr "" +msgstr "Peradresuoti gaunamas – „TCP“ užklausas, į šį IP adresą:prievadą." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" -msgstr "" +msgstr "Nuotolinio skleidėjo/vedėjo adresas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." -msgstr "" +msgstr "Reikalingas, jei tarnybos gali naudoti – „tcp“ ir „udp“." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" -msgstr "" +msgstr "Šios tarnybos gijų pasirinkimas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Serveris" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "Serverio „PID“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" -msgstr "" +msgstr "Serverio argumentai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" -msgstr "" +msgstr "Serveris „išėjo“ kartu su „išėjimo“ būklę/būseną" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" -msgstr "" +msgstr "Tarnyba – „%s“: Negalimas serverio failas – „%s“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" -msgstr "" +msgstr "Tarnyba –„%s“: Nėra prieigos prie serverio failo – „%s“ („%s“)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" -msgstr "" +msgstr "Tarnybos apibrėžimai, kuriuos turi naudoti – „Xinetd“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "Tarnybos pavadinimas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" -msgstr "" +msgstr "Vienos gijos tarnyba" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" -msgstr "" +msgstr "Lizdo/Jungties tipas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "„TCP“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" +"Paima dvi argumentus: [Ryšių skaičius per sekundę] [Sekundžių skaičius, per " +"kurį reikia vėl/iš naujo įjungti/įgalinti tarnybą]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" "Prievadas naudojamas šiai tarnybai, galima apimtis (nuo ir iki): 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" -msgstr "" +msgstr "Protokolas, kuris bus naudojamas šiai tarnybai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" -msgstr "" +msgstr "Lizdo/Jungties tipas, kuris yra naudojamas šiai tarnybai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" -msgstr "" +msgstr "„Threading“ elgsena" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" +"Laiko intervalai, tarnybos viduje yra pasiekiama (Formatas – vv:mm-vv:mm)" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "Prie kurio adreso pririšti" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" -msgstr "" +msgstr "Bendras peradresuotos tarnybos baitų, skaičius" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "Tipas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Tarnybos tipas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "„UDP“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "NEPAŽYMĖTAS" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "Naudotojas/Vartotojas („UID“)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" -msgstr "Naudotojo/Vartotojo ID, skirtas šio serverio proceso tarnybai" +msgstr "Naudotojo/Vartotojo ID, skirtas šio serverio vyksmo tarnybai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "Nuotolinio naudotojo/vartotojo ID" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "Ką žurnalinti, nevykusiems ryšio užmezgimams" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "Ką žurnalinti, sėkmingiems ryšio užmezgimams" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "„Xinetd“" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "„Xinetd“ nustatymai" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "„datagram-based“ tarnybą" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "Tiesioginė prieiga prie IP tarnybos" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "ne" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" -msgstr "" +msgstr "nuoseklaus datagramų perdavimo tarnyba" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" -msgstr "" +msgstr "Srauto pagrįsta tarnyba" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "taip" diff --git a/applications/luci-app-xinetd/po/mr/xinetd.po b/applications/luci-app-xinetd/po/mr/xinetd.po index 094ebc5e03..daf632b94e 100644 --- a/applications/luci-app-xinetd/po/mr/xinetd.po +++ b/applications/luci-app-xinetd/po/mr/xinetd.po @@ -8,74 +8,78 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -83,246 +87,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ms/xinetd.po b/applications/luci-app-xinetd/po/ms/xinetd.po index 78733986d4..64a12ed9d7 100644 --- a/applications/luci-app-xinetd/po/ms/xinetd.po +++ b/applications/luci-app-xinetd/po/ms/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Masa akses" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Dibolehkan" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Port" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Protokol" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "tidak" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "ya" diff --git a/applications/luci-app-xinetd/po/nb_NO/xinetd.po b/applications/luci-app-xinetd/po/nb_NO/xinetd.po index 4bb1237d86..8a234c2044 100644 --- a/applications/luci-app-xinetd/po/nb_NO/xinetd.po +++ b/applications/luci-app-xinetd/po/nb_NO/xinetd.po @@ -12,74 +12,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Avanserte innstillinger" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Påskrudd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/nl/xinetd.po b/applications/luci-app-xinetd/po/nl/xinetd.po index 8024b78c16..b79a5d2700 100644 --- a/applications/luci-app-xinetd/po/nl/xinetd.po +++ b/applications/luci-app-xinetd/po/nl/xinetd.po @@ -9,74 +9,78 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +88,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/pl/xinetd.po b/applications/luci-app-xinetd/po/pl/xinetd.po index 0a22360222..053e03d184 100644 --- a/applications/luci-app-xinetd/po/pl/xinetd.po +++ b/applications/luci-app-xinetd/po/pl/xinetd.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-01-05 11:26+0000\n" +"PO-Revision-Date: 2024-05-14 12:14+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/pl/>\n" @@ -11,21 +11,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.4-dev\n" +"X-Generator: Weblate 5.6-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Kontrola dostępu" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Czasy dostępu" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "Dodaj nowy wpis usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." @@ -33,56 +33,60 @@ msgstr "" "Dodatkowe argumenty przekazywane do serwera. Nie ma żadnej weryfikacji tego " "wejścia." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "Dozwolone hosty" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "Ustawienia podstawowe" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Zwiąż adres" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "Pełna ścieżka do pliku wykonywalnego serwera" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "Limit połączenia" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "Czas trwania sesji usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "Włącz lub wyłącz tę usługę" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "Oczekiwano '[Numer] [Numer]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "Oczekiwano 'gg:mm-gg:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "Oczekiwanie: niepusta wartość" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "Nieudane próby" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "Zabronione hosty" @@ -90,77 +94,61 @@ msgstr "Zabronione hosty" msgid "Grant access to luci-app-xinetd" msgstr "Udziel dostępu do luci-app-xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "Tutaj możesz skonfigurować usługi Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "WEWNĘTRZNY" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "Identyfikacja" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" -"Informacje, które powinny być zarejestrowane dla tej usługi w przypadku " -"nieudanego połączenia" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" -"Informacje, które powinny zostać zarejestrowane dla tej usługi w przypadku " -"pomyślnego połączenia" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "Nieprawidłowy znak" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "Lista hostów, które mogą uzyskać dostęp do tej usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "Lista hostów, które mają zabroniony dostęp do tej usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "Słuchaj dodatkowo na IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "Rejestruj przy niepowodzeniu" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "Rejestruj przy powodzeniu" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "Usługa wielowątkowa" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "Nazwa usługi, jeśli WEWNĘTRZNY, z /etc/services" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "Liczba instancji" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" @@ -168,85 +156,85 @@ msgstr "" "Liczba jednocześnie działających serwerów dla tej usługi. Argumentem jest " "dowolna liczba lub słowo kluczowe 'UNLIMITED'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Port" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Protokół" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "Przekieruj" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "Przekieruj przychodzące żądania TCP na ten adres IP:port." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "Adres hosta zdalnego" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "Wymagane, jeśli usługa może używać protokołów TCP i UDP." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "Dobór wątkowości do tej usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Serwer" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "PID serwera" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "Argumenty serwera" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "Serwer zakończył działanie wraz ze statusem wyjścia" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "Usługa \"%s\": Nieprawidłowy plik serwera \"%s\"" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "Usługa \"%s\": Brak dostępu do pliku serwera \"%s\" (%s)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "Definicje usług, które mają być używane przez Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "Nazwa usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "Usługa jednowątkowa" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "Typ gniazda" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" @@ -254,91 +242,107 @@ msgstr "" "Przyjmuje dwa argumenty: [Liczba połączeń na sekundę] [Liczba sekund do " "ponownego włączenia usługi]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "Port używany dla tej usługi, prawidłowy zakres: 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "Protokół używany w tej usłudze" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "Typ gniazda używanego w tej usłudze" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "Zachowanie wątkowości" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "Dostępne są przedziały czasowe w ramach usługi (format gg:mm-gg:mm)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "Na który adres do związania" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" "Łączna liczba bajtów przychodzących i wychodzących dla przekierowanej usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "Typ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Typ usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "NIEWYPISANY" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "Użytkownik (UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "Identyfikator użytkownika procesu serwera dla tej usługi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "Identyfikator użytkownika zdalnego" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" +"Informacje, które powinny być zarejestrowane dla tej usługi w przypadku " +"nieudanego połączenia" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" +"Informacje, które powinny zostać zarejestrowane dla tej usługi w przypadku " +"pomyślnego połączenia" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "Ustawienia Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "Usługa oparta na datagramach" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "bezpośredni dostęp do usługi IP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "nie" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "usługa sekwencyjnej transmisji datagramów" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "usługa oparta na strumieniach" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "tak" diff --git a/applications/luci-app-xinetd/po/pt/xinetd.po b/applications/luci-app-xinetd/po/pt/xinetd.po index 9708c290bc..51d60f722b 100644 --- a/applications/luci-app-xinetd/po/pt/xinetd.po +++ b/applications/luci-app-xinetd/po/pt/xinetd.po @@ -1,82 +1,89 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-07-09 23:09+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "Configurações avançadas" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/pt_BR/xinetd.po b/applications/luci-app-xinetd/po/pt_BR/xinetd.po index faa9b8cbf2..7b2c63ad02 100644 --- a/applications/luci-app-xinetd/po/pt_BR/xinetd.po +++ b/applications/luci-app-xinetd/po/pt_BR/xinetd.po @@ -1,82 +1,89 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-11-17 07:48+0000\n" +"Last-Translator: gcb <gabrielbarros+weblate@gmail.com>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsxinetd/pt_BR/>\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.9-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" -msgstr "" +msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" -msgstr "" +msgstr "Tipo de serviço" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ro/xinetd.po b/applications/luci-app-xinetd/po/ro/xinetd.po index 09cf050b0a..687d56bfd4 100644 --- a/applications/luci-app-xinetd/po/ro/xinetd.po +++ b/applications/luci-app-xinetd/po/ro/xinetd.po @@ -10,74 +10,78 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -85,246 +89,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/ru/xinetd.po b/applications/luci-app-xinetd/po/ru/xinetd.po index 4f2404d0fa..48e323f289 100644 --- a/applications/luci-app-xinetd/po/ru/xinetd.po +++ b/applications/luci-app-xinetd/po/ru/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-01-21 14:18+0000\n" -"Last-Translator: st7105 <st7105@gmail.com>\n" +"PO-Revision-Date: 2024-10-30 02:45+0000\n" +"Last-Translator: sergio <sergio+it@outerface.net>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/ru/>\n" "Language: ru\n" @@ -11,21 +11,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.4-dev\n" +"X-Generator: Weblate 5.8.2-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Контроль доступа" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Время доступа" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "Добавить новую запись службы" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." @@ -33,56 +33,60 @@ msgstr "" "Дополнительные аргументы, передаваемые серверу. Валидация этого ввода не " "производится." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Расширеные настройки" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "Разрешенные хосты" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "Основные настройки" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Прослушиваемый адрес" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "Полный путь к исполняемому файлу сервера" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "Предел подключений" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "Продолжительность сеанса обслуживания" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "Включите или отключите эту службу" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "Включено" +msgstr "Включен" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "Ожидается '[число] [число]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "Ожидается 'hh:mm-hh:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "Ожидание: непустое значение" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "Неудачные попытки" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "Запрещенные хосты" @@ -90,77 +94,61 @@ msgstr "Запрещенные хосты" msgid "Grant access to luci-app-xinetd" msgstr "Предоставьте доступ к luci-app-xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" -msgstr "Здесь вы можете настроить службы Xinetd" +msgstr "Здесь можно настроить службы Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "ВНУТРЕННИЙ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "Идентификация" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" -"Информация, которая должна быть записана в журнал для этой службы в случае " -"неудачного соединения" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" -"Информация, которая должна быть зарегистрирована для этой службы в случае " -"успешного подключения" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "Недопустимый символ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "Список хостов, которым разрешен доступ к этой службе" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "Список хостов, которым запрещен доступ к этой службе" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "Слушать на дополнительном IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "Сбой при входе в систему" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "Успешный вход в систему" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "Многопоточная служба" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "Имя службы, если она ВНУТРЕННИЙ, из /etc/services" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "Количество экземпляров" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" @@ -168,85 +156,85 @@ msgstr "" "Количество одновременно работающих серверов для этой службы. Аргумент - " "любое число или ключевое слово 'UNLIMITED'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Порт" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Протокол" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "Перенаправление" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "Перенаправление входящих TCP-запросов на этот IP-адрес:порт." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "Адрес удаленного хоста" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "Требуется, если службы могут использовать tcp и udp." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "Выбор многозадачности для этой службы" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Сервер" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "PID сервера" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "Аргументы сервера" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "Сервер завершился с указанием статуса завершения" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "Служба \"%s\": Недопустимый файл сервера \"%s\"" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "Служба \"%s\": Нет доступа к файлу сервера \"%s\" (%s)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "Определения служб, которые будут использоваться Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "Название службы" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "Однопоточная служба" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "Тип сокета" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" @@ -254,92 +242,108 @@ msgstr "" "Принимает два аргумента: [Количество соединений в секунду] [Количество " "секунд для возобновления обслуживания]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "Порт, используемый для этой службы, допустимый диапазон: 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "Протокол, который будет использоваться для этой услуги" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "Тип сокета, используемого для этой службы" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "Поведение многозадачности" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" "Временные интервалы, в течение которых услуга доступна (формат hh:mm-hh:mm)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "К какому адресу привязать" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" "Общее количество входящих и исходящих байт для перенаправленного сервиса" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "Тип" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Тип службы" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "НЕЗАВИСИМЫЙ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "Пользователь (UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "Идентификатор пользователя серверного процесса для данной службы" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "Идентификатор пользователя удаленного пользователя" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" +"Информация, которая должна быть записана в журнал для этой службы в случае " +"неудачного соединения" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" +"Информация, которая должна быть зарегистрирована для этой службы в случае " +"успешного подключения" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "Настройки Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "служба на основе дейтаграмм" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "прямой доступ к IP-службе" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "нет" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "служба последовательной передачи дейтаграмм" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "служба на основе потока данных" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "да" diff --git a/applications/luci-app-xinetd/po/sk/xinetd.po b/applications/luci-app-xinetd/po/sk/xinetd.po index d25a9aaf56..4935a7060f 100644 --- a/applications/luci-app-xinetd/po/sk/xinetd.po +++ b/applications/luci-app-xinetd/po/sk/xinetd.po @@ -9,74 +9,78 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -84,246 +88,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/sv/xinetd.po b/applications/luci-app-xinetd/po/sv/xinetd.po index 6c2781d12b..a97f8bc91d 100644 --- a/applications/luci-app-xinetd/po/sv/xinetd.po +++ b/applications/luci-app-xinetd/po/sv/xinetd.po @@ -1,329 +1,351 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-10-23 12:34+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" +"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsxinetd/sv/>\n" "Language: sv\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.8.2-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" -msgstr "" +msgstr "Åtkomstkontroll" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" -msgstr "" +msgstr "Åtkomsttider" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" +"Ytterligare argument att skicka till servern. Det finns ingen validering av " +"denna inmatning." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "Avancerade inställningar" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" -msgstr "" +msgstr "Tillåtna värdar" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" +msgstr "Grundläggande inställningar" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" -msgstr "" +msgstr "Hela sökvägen till den exekverbara serverfilen" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "" +msgstr "Aktiverat" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" -msgstr "" +msgstr "Misslyckade försök" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" -msgstr "" +msgstr "Förbjudna värdar" #: applications/luci-app-xinetd/root/usr/share/rpcd/acl.d/luci-app-xinetd.json:3 msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" -msgstr "" +msgstr "Här kan du konfigurera Xinetd-tjänster" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" +msgstr "Identifiering" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" -msgstr "" +msgstr "Ogiltig karaktär" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" -msgstr "" +msgstr "Lista av tillåtna värdar för denna tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" -msgstr "" +msgstr "Lista av förbjudna värdar för denna tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" -msgstr "" +msgstr "Lyssna också på IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" -msgstr "" +msgstr "Logg vid misslyckat" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" -msgstr "" +msgstr "Logg vid lyckat" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" -msgstr "" +msgstr "Flertrådad tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" -msgstr "" +msgstr "Antal instanser" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" -msgstr "" +msgstr "Port" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" -msgstr "" +msgstr "Protokoll" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" -msgstr "" +msgstr "Omdirigera" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." -msgstr "" +msgstr "Dirigera om inkommande TCP-förfrågningar till IP-adress:port." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" -msgstr "" +msgstr "Server" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" -msgstr "" +msgstr "Servicenamn" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" -msgstr "" +msgstr "Enkeltrådad tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" -msgstr "" +msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" -msgstr "" +msgstr "Port att använda för denna tjänst, giltigt invervall: 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" -msgstr "" +msgstr "Protokoll att använda för denna tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" -msgstr "" +msgstr "Trådbeteende" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" +msgstr "Tidsintervall då tjänsten är tillgänglig (format tt:mm-tt:mm)" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" -msgstr "" +msgstr "Typ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" -msgstr "" +msgstr "Typ av tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" -msgstr "" +msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" -msgstr "" +msgstr "Användare (UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" -msgstr "" +msgstr "Användar-ID för serverprocessen för denna tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" +msgstr "Användar-ID för fjärranvändaren" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" msgstr "" #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" -msgstr "" +msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" -msgstr "" +msgstr "Inställningar för Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" -msgstr "" +msgstr "nej" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" -msgstr "" +msgstr "strömbaserad tjänst" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" -msgstr "" +msgstr "ja" + +#~ msgid "" +#~ "Informations that should be logged for this service in case of a failed " +#~ "connection" +#~ msgstr "" +#~ "Information som ska loggas för denna tjänst ifall anslutningen " +#~ "misslyckades" + +#~ msgid "" +#~ "Informations that should be logged for this service in case of successful " +#~ "connection" +#~ msgstr "" +#~ "Information som ska loggas för denna tjänst ifall anslutningen lyckades" diff --git a/applications/luci-app-xinetd/po/templates/xinetd.pot b/applications/luci-app-xinetd/po/templates/xinetd.pot index ad65d6be34..d00667f3bd 100644 --- a/applications/luci-app-xinetd/po/templates/xinetd.pot +++ b/applications/luci-app-xinetd/po/templates/xinetd.pot @@ -1,74 +1,78 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -76,246 +80,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/tr/xinetd.po b/applications/luci-app-xinetd/po/tr/xinetd.po index 2e1331f5a6..e1d6ab6809 100644 --- a/applications/luci-app-xinetd/po/tr/xinetd.po +++ b/applications/luci-app-xinetd/po/tr/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-04-01 08:36+0000\n" -"Last-Translator: Oğuz Han <h4n.3545@gmail.com>\n" +"PO-Revision-Date: 2024-05-14 18:06+0000\n" +"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/tr/>\n" "Language: tr\n" @@ -10,77 +10,81 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.6-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Erişim Kontrolü" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "Erişim süreleri" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "Yeni hizmet girişi ekleme" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" "Sunucuya iletilen ek komutlar. Bu girdi için herhangi bir doğrulama yoktur." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "İzin verilen ana bilgisayarlar" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "Temel Ayarlar" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Bağlantı adresi" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "Çalıştırılabilir sunucu dosyasının tam yolu" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "Bağlantı sınırı" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "Hizmet oturumunun süresi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "Bu hizmeti etkinleştirin veya devre dışı bırakın" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Etkin" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "Beklenen '[Sayı] [Sayı]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "Beklenen 'hh:mm-hh:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "Beklenen: boş olmayan değer" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "Başarısız denemeler" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "Yasaklanan ana bilgisayarlar" @@ -88,77 +92,61 @@ msgstr "Yasaklanan ana bilgisayarlar" msgid "Grant access to luci-app-xinetd" msgstr "luci-app-xinetd'ye erişim izni verin" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "Burada Xinetd hizmetlerini yapılandırabilirsiniz" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "DAHİLİ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "Kimlik belirleme" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" -"Başarısız bir bağlantı durumunda bu hizmet için günlüğe kaydedilmesi gereken " -"bilgiler" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" -"Başarılı bağlantı durumunda bu hizmet için günlüğe kaydedilmesi gereken " -"bilgiler" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "Geçersiz karakter" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "Bu hizmete erişmesine izin verilen ana bilgisayarların listesi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "Bu hizmete erişimi yasaklanmış ana bilgisayarların listesi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "IPv6 ek olarak dinleyin" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "Oturum açma hatası" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "Başarılı giriş" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "Çok İş Parçacıklı Servis" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "Hizmetin adı, eğer /etc/services dosyasında" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "Örnek sayısı" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" @@ -166,85 +154,85 @@ msgstr "" "Bu hizmet için aynı anda çalışan sunucu sayısı. Argüman herhangi bir sayı " "veya 'UNLIMITED' anahtar kelimesidir" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Bağlantı Noktası" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "Protokol" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "Yönlendirme" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "Gelen TCP isteklerini şu IP adresine yönlendirin: bağlantı noktası." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "Uzaktaki ana bilgisayar adresi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "Bir hizmet tcp ve udp'yi kullanabiliyorsa gereklidir." -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "Bu hizmet için iş parçacığı seçimi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "Sunucu" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "Sunucu PID'si" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "Sunucu değişkenleri" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "Sunucu çıkış durumu ile birlikte çıktı" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "Hizmet \"%s\": Geçersiz sunucu dosyası \"%s\"" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "Hizmet \"%s\": \"%s\" sunucu dosyasına erişim yok (%s)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "Xinetd tarafından kullanılacak servis tanımları" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "Hizmet adı" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "Tek İş Parçacıklı Hizmet" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "Soket tipi" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" @@ -252,90 +240,106 @@ msgstr "" "İki bağımsız değişken alır: [Saniye başına bağlantı sayısı] [Hizmeti yeniden " "etkinleştirmek için saniye sayısı]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "Bu hizmet için kullanılan bağlantı noktası, geçerli aralık: 0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "Bu hizmet için kullanılacak protokol" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "Bu hizmet için kullanılan soketin türü" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "İş parçacığı davranışı" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "Hizmet dahilindeki zaman aralıkları kullanılabilir (Biçim ss:dd-ss:dd)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "Hangi adrese bağlanacağı" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "Yönlendirilen bir hizmet için giren ve çıkan toplam bayt" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "Tür" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "Hizmet türü" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "LİSTEDE YOK" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "Kullanıcı (UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "Bu hizmet için sunucu işleminin kullanıcı kimliği" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "Uzak kullanıcının kullanıcı kimliği" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" +"Başarısız bir bağlantı durumunda bu hizmet için günlüğe kaydedilmesi gereken " +"bilgiler" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" +"Başarılı bağlantı durumunda bu hizmet için günlüğe kaydedilmesi gereken " +"bilgiler" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "Xinetd Ayarları" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "datagram tabanlı servis" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "IP servisine doğrudan erişim" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "hayır" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "sıralı datagram aktarım hizmeti" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "akış tabanlı servis" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "Evet" diff --git a/applications/luci-app-xinetd/po/uk/xinetd.po b/applications/luci-app-xinetd/po/uk/xinetd.po index 416f3678f9..46b6d8a47d 100644 --- a/applications/luci-app-xinetd/po/uk/xinetd.po +++ b/applications/luci-app-xinetd/po/uk/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-04-01 18:18+0000\n" -"Last-Translator: Ievgen Ievgen <jony057dev@gmail.com>\n" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" +"Last-Translator: Andrew <stanol777@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/uk/>\n" "Language: uk\n" @@ -11,76 +11,80 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.8-rc\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "Контроль доступу" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Розширені налаштування" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -88,246 +92,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "Порт" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" -msgstr "" +msgstr "Сервер" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/vi/xinetd.po b/applications/luci-app-xinetd/po/vi/xinetd.po index 1c9ec221db..55de51d9cd 100644 --- a/applications/luci-app-xinetd/po/vi/xinetd.po +++ b/applications/luci-app-xinetd/po/vi/xinetd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-01-26 16:51+0000\n" -"Last-Translator: Hứa Đức Quân <huaducquan14@gmail.com>\n" +"PO-Revision-Date: 2024-11-28 03:52+0000\n" +"Last-Translator: Lê Hoàng Tiến <tienthichchoigame@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsxinetd/vi/>\n" "Language: vi\n" @@ -10,76 +10,80 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.4-dev\n" +"X-Generator: Weblate 5.9-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "Cài đặt Nâng cao" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "Gán địa chỉ" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" -msgstr "" +msgstr "Giới hạn số lượng kết nối" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" -msgstr "" +msgstr "Đang bật" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" -msgstr "" +msgstr "Cú pháp đúng là 'hh:mm-hh:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" -msgstr "" +msgstr "Số lần thử không thành công" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" -msgstr "" +msgstr "Ký tự không hợp lệ" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" -msgstr "" +msgstr "Danh sách các thiết bị KHÔNG được truy cập service (dịch vụ) này" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" -msgstr "" +msgstr "Đăng nhập không thành công" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" -msgstr "" +msgstr "Đăng nhập thành công" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" -msgstr "" +msgstr "Cổng" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" -msgstr "" +msgstr "Giao thức" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" -msgstr "" +msgstr "Chuyển hướng" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" diff --git a/applications/luci-app-xinetd/po/zh_Hans/xinetd.po b/applications/luci-app-xinetd/po/zh_Hans/xinetd.po index 2741ef54a4..567bf2a687 100644 --- a/applications/luci-app-xinetd/po/zh_Hans/xinetd.po +++ b/applications/luci-app-xinetd/po/zh_Hans/xinetd.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-02-22 18:08+0000\n" -"Last-Translator: try496 <pinghejk@gmail.com>\n" +"PO-Revision-Date: 2024-05-15 11:43+0000\n" +"Last-Translator: 大王叫我来巡山 <hamburger2048@users.noreply.hosted.weblate." +"org>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsxinetd/zh_Hans/>\n" "Language: zh_Hans\n" @@ -10,76 +11,80 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.6-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "访问控制" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "访问时间" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "添加新服务项" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "传递给服务器的额外参数。此输入未经过验证。" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" msgstr "高级设置" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "允许的主机" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "基本设置" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "绑定地址" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "执行服务器文件的完整路径" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "连接限制" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "服务会话的持续时间" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "启用或禁用此服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "已启用" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "预期为 '[数字] [数字]'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "预期格式 'hh:mm-hh:mm'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "期望:非空值" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "失败的尝试" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "禁止的主机" @@ -87,246 +92,246 @@ msgstr "禁止的主机" msgid "Grant access to luci-app-xinetd" msgstr "授予对 luci-app-xinetd 的访问权限" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "在这里,您可以配置 Xinetd 服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "内部" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "识别" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "在连接失败的情况下,应记录此服务的信息" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "在成功连接的情况下,应记录此服务的信息" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "无效字符" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "访问此服务的允许主机列表" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "访问此服务的禁止主机列表" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "在 IPv6 上附加监听" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "失败时记录日志" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "成功时记录日志" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "多线程服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "如果从内部提供服务,则服务的名称是 /etc/services" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "实例数量" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "此服务同时运行服务器的数量。参数可以是任何数字或关键字 'UNLIMITED'" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "端口" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "协议" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "重定向" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "将传入的 TCP 请求重定向到此 IP 地址:端口。" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "远程主机地址" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "如果服务可以使用TCP和UDP,则需要。" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "此服务的线程选择" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "服务器" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "服务器 PID" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "服务器参数" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "服务器随退出状态一起退出" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "服务 \"%s\":无效的服务器文件 \"%s\"" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "服务 \"%s\":无法访问服务器文件 \"%s\" (%s)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "Xinetd 使用的服务定义" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "服务名称" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "单线程服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "套接字类型" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "TCP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "接受两个参数:[每秒连接数] [重新启用服务的秒数]" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "此服务使用的端口,有效范围:0 - 65535" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "此服务要使用的协议" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "用于此服务的套接字类型" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "线程行为" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "服务可用的时间间隔(格式为 hh:mm-hh:mm)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "要绑定到哪个地址" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "对于重定向服务,输入和输出的总字节数" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "类型" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "服务类型" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "UDP" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "未列出" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "用户(UID)" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "此服务的服务器进程的用户ID" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "远程用户的用户ID" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "在连接失败的情况下,应记录此服务的信息" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "在成功连接的情况下,应记录此服务的信息" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "Xinetd" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "Xinetd 设置" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "基于数据报的服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "直接访问IP服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "否" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "顺序数据报传输服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "基于流的服务" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "是" diff --git a/applications/luci-app-xinetd/po/zh_Hant/xinetd.po b/applications/luci-app-xinetd/po/zh_Hant/xinetd.po index 4b3be422a4..20894d8e02 100644 --- a/applications/luci-app-xinetd/po/zh_Hant/xinetd.po +++ b/applications/luci-app-xinetd/po/zh_Hant/xinetd.po @@ -1,85 +1,89 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-05-04 07:42+0000\n" -"Last-Translator: Yuan Lau <traverslombard@outlook.com>\n" -"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationsxinetd/zh_Hant/>\n" +"PO-Revision-Date: 2024-11-18 14:09+0000\n" +"Last-Translator: 少年ウィンド <k236michaeimm@gmail.com>\n" +"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/" +"projects/openwrt/luciapplicationsxinetd/zh_Hant/>\n" "Language: zh_Hant\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.5.3\n" +"X-Generator: Weblate 5.9-dev\n" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:72 msgid "Access Control" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Access times" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:29 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:37 msgid "Add new service entry" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "" "Additional arguments passed to the server. There is no validation of this " "input." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:63 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:71 msgid "Advanced Settings" -msgstr "" +msgstr "進階設定" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "Allowed hosts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:62 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:70 msgid "Basic Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "Bind address" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Complete path to the executable server file" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "Connection limit" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:182 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 msgid "Duration of a service session" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enable or Disable this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:56 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:79 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:64 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:87 msgid "Enabled" msgstr "啟用" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:241 msgid "Expected '[Number] [Number]'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:250 msgid "Expected 'hh:mm-hh:mm'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:14 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:15 msgid "Expecting: non-empty value" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:189 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:215 msgid "Failed attempts" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "Forbidden hosts" msgstr "" @@ -87,246 +91,246 @@ msgstr "" msgid "Grant access to luci-app-xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Here you can configure Xinetd services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:95 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:103 msgid "INTERNAL" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:47 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:55 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "IPv6" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Identification" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 -msgid "" -"Informations that should be logged for this service in case of a failed " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 -msgid "" -"Informations that should be logged for this service in case of successful " -"connection" -msgstr "" - -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:76 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:111 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:84 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:137 msgid "Invalid character" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:193 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:219 msgid "List of allowed hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:224 msgid "List of forbidden hosts to access this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:86 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:94 msgid "Listen on IPv6 additional" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 msgid "Log on failure" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:177 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 msgid "Log on success" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:173 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:199 msgid "Multi-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Name for the service, if INTERNAL from /etc/services" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "Number of instances" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:229 msgid "" "Number of simultaneously running servers for this service. Argument is any " "number or the keyword 'UNLIMITED'" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:38 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:46 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "Port" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:35 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:43 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "Protocol" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:53 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:61 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:136 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:162 msgid "Redirect incoming TCP requests to this IP address:port." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:179 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:187 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:205 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:213 msgid "Remote host address" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:100 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:126 msgid "Required if a services can use tcp and udp." msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Selection of the threading for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:44 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:52 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 msgid "Server" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:204 msgid "Server PID" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:160 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:186 msgid "Server arguments" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:207 msgid "Server exited along with the exit status" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:152 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:178 msgid "Service \"%s\": Invalid server file \"%s\"" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:181 msgid "Service \"%s\": No access to server file \"%s\" (%s)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:25 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:33 msgid "Service definitions to be used by Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:32 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:69 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:40 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:77 msgid "Servicename" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:172 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:198 msgid "Single-Threaded Service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "Socket type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:122 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:148 msgid "TCP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:208 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:234 msgid "" "Takes two arguments: [Number of connections per second] [Number of seconds " "to reenable service]" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:114 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:140 msgid "The port used for this service, valid range: 0 - 65535" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:120 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:146 msgid "The protocol to be used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:127 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:153 msgid "The type of the socket used for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:170 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:196 msgid "Threading behaviour" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:218 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:244 msgid "Time intervals within service is available (Format hh:mm-hh:mm)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:183 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:108 +msgid "To which address to bind" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:209 msgid "Total bytes in and out for a redirected service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:41 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:93 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:101 msgid "Type of service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:123 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:149 msgid "UDP" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:96 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:104 msgid "UNLISTED" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User (UID)" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:166 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:192 msgid "User ID for the server process for this service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:180 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:188 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:206 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:214 msgid "User ID of the remote user" msgstr "" +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:212 +msgid "What to log for failed connections" +msgstr "" + +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:203 +msgid "What to log for successful connections" +msgstr "" + #: applications/luci-app-xinetd/root/usr/share/luci/menu.d/luci-app-xinetd.json:3 msgid "Xinetd" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:22 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:30 msgid "Xinetd Settings" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:130 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:156 msgid "datagram-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:131 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:157 msgid "direct access to IP service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "no" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:132 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:158 msgid "sequential datagram transmission service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:129 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:155 msgid "stream-based service" msgstr "" -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:49 -#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:58 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:57 +#: applications/luci-app-xinetd/htdocs/luci-static/resources/view/xinetd/xinetd.js:66 msgid "yes" msgstr "" |