Merge pull request #6115 from 1715173329/udpxy

luci-app-udpxy: rewritten in JS
This commit is contained in:
Jo-Philipp Wich 2022-11-23 12:35:52 +01:00 committed by GitHub
commit 8012ad2ad5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 608 additions and 577 deletions

View file

@ -7,7 +7,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
LUCI_TITLE:=LuCI Support for udpxy LUCI_TITLE:=LuCI Support for udpxy
LUCI_DEPENDS:=+luci-compat +udpxy LUCI_DEPENDS:=+udpxy
include ../../luci.mk include ../../luci.mk

View file

@ -0,0 +1,61 @@
'use strict';
'require form';
'require view';
return view.extend({
render: function () {
var m, s, o;
m = new form.Map('udpxy', _('udpxy'),
_('udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can configure the settings.'));
s = m.section(form.TypedSection, 'udpxy');
s.anonymous = true;
s.addremove = true;
o = s.option(form.Flag, 'disabled', _('Enabled'));
o.enabled = '0';
o.disabled = '1';
o.default = o.disabled;
o.rmempty = false;
o = s.option(form.Flag, 'respawn', _('Respawn'));
o.default = o.disabled;
o = s.option(form.Flag, 'verbose', _('Verbose'));
o.default = o.disabled;
o = s.option(form.Flag, 'status', _('Status'));
o = s.option(form.Value, 'bind', _('Bind IP/Interface'));
o.datatype = 'or(ipaddr, network)';
o = s.option(form.Value, 'port', _('Port'));
o.datatype = 'port';
o = s.option(form.Value, 'source', _('Source IP/Interface'));
o.datatype = 'or(ipaddr, network)';
o = s.option(form.Value, 'max_clients', _('Max clients'));
o.datatype = 'range(1, 5000)';
o = s.option(form.Value, 'log_file', _('Log file'));
o = s.option(form.Value, 'buffer_size', _('Buffer size'));
o.datatype = 'range(4096, 2097152)';
o = s.option(form.Value, 'buffer_messages', _('Buffer messages'));
o.datatype = 'or(-1, and(min(1),uinteger))';
o = s.option(form.Value, 'buffer_time', _('Buffer time'));
o.datatype = 'or(-1, and(min(1),uinteger))';
o = s.option(form.Value, 'nice_increment', _('Nice increment'));
o.datatype = 'or(and(max(-1),uinteger), and(min(1),uinteger))';
o = s.option(form.Value, 'mcsub_renew', _('Multicast subscription renew'));
o.datatype = 'or(0, range(30, 64000))';
return m.render();
}
});

View file

@ -1,63 +0,0 @@
-- Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com>
-- Licensed to the public under the Apache License 2.0.
m = Map("udpxy", "udpxy", translate("udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can configure the settings."))
s = m:section(TypedSection, "udpxy", "")
s.addremove = true
s.anonymous = false
enable=s:option(Flag, "disabled", translate("Enabled"))
enable.enabled="0"
enable.disabled="1"
enable.default = "1"
enable.rmempty = false
respawn=s:option(Flag, "respawn", translate("Respawn"))
respawn.default = false
verbose=s:option(Flag, "verbose", translate("Verbose"))
verbose.default = false
status=s:option(Flag, "status", translate("Status"))
bind=s:option(Value, "bind", translate("Bind IP/Interface"))
bind.rmempty = true
bind.datatype = "or(ipaddr, network)"
port=s:option(Value, "port", translate("Port"))
port.rmempty = true
port.datatype = "port"
source=s:option(Value, "source", translate("Source IP/Interface"))
source.rmempty = true
source.datatype = "or(ipaddr, network)"
max_clients=s:option(Value, "max_clients", translate("Max clients"))
max_clients.rmempty = true
max_clients.datatype = "range(1, 5000)"
log_file=s:option(Value, "log_file", translate("Log file"))
log_file.rmempty = true
--log_file.datatype = "file"
buffer_size=s:option(Value, "buffer_size", translate("Buffer size"))
buffer_size.rmempty = true
buffer_size.datatype = "range(4096,2097152)"
buffer_messages=s:option(Value, "buffer_messages", translate("Buffer messages"))
buffer_messages.rmempty = true
buffer_messages.datatype = "or(-1, and(min(1), uinteger))"
buffer_time=s:option(Value, "buffer_time", translate("Buffer time"))
buffer_time.rmempty = true
buffer_time.datatype = "or(-1, and(min(1), uinteger))"
nice_increment=s:option(Value, "nice_increment", translate("Nice increment"))
nice_increment.rmempty = true
nice_increment.datatype = "or(and(max(-1), integer),and(min(1), integer))"
mcsub_renew=s:option(Value, "mcsub_renew", translate("Multicast subscription renew"))
mcsub_renew.rmempty = true
mcsub_renew.datatype = "or(0, range(30, 64000))"
return m

View file

@ -11,23 +11,23 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.5.2-dev\n" "X-Generator: Weblate 4.5.2-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "مفعل" msgstr "مفعل"
@ -35,47 +35,48 @@ msgstr "مفعل"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "ملف تسجيل" msgstr "ملف تسجيل"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "المنفذ" msgstr "المنفذ"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "الحالة" msgstr "الحالة"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.8.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Разрешен" msgstr "Разрешен"
@ -34,47 +34,48 @@ msgstr "Разрешен"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Статус" msgstr "Статус"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n" "X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "সক্রিয়" msgstr "সক্রিয়"
@ -34,47 +34,48 @@ msgstr "সক্রিয়"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "লগ ফাইল" msgstr "লগ ফাইল"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "সর্বোচ্চ ক্লায়েন্ট সংখ্যা" msgstr "সর্বোচ্চ ক্লায়েন্ট সংখ্যা"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "পোর্ট" msgstr "পোর্ট"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "অবস্থা" msgstr "অবস্থা"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10.1\n" "X-Generator: Weblate 3.10.1\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
@ -34,47 +34,48 @@ msgstr "Activat"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Estat" msgstr "Estat"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"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 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Navázat na IP adresu / rozhraní" msgstr "Navázat na IP adresu / rozhraní"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Vyrovnávací paměť zpráv" msgstr "Vyrovnávací paměť zpráv"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Velikost vyrovnávací paměti" msgstr "Velikost vyrovnávací paměti"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Časová délka pokrývaná vyrovnávací pamětí" msgstr "Časová délka pokrývaná vyrovnávací pamětí"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Zapnuto" msgstr "Zapnuto"
@ -34,47 +34,48 @@ msgstr "Zapnuto"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Soubor pro záznam událostí" msgstr "Soubor pro záznam událostí"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Nejvýše klientů" msgstr "Nejvýše klientů"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Obnovení přihlášení k odběru vícesměrového vysílání" msgstr "Obnovení přihlášení k odběru vícesměrového vysílání"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Přírůstek hodnoty nice" msgstr "Přírůstek hodnoty nice"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "V případě výpadku znovu spustit" msgstr "V případě výpadku znovu spustit"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Zdrojová IP adresa / rozhraní" msgstr "Zdrojová IP adresa / rozhraní"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Stav" msgstr "Stav"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Podrobné" msgstr "Podrobné"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9.1-dev\n" "X-Generator: Weblate 4.9.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Bind IP/Interface" msgstr "Bind IP/Interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Buffer beskeder" msgstr "Buffer beskeder"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Buffer størrelse" msgstr "Buffer størrelse"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Buffer tid" msgstr "Buffer tid"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Aktiveret" msgstr "Aktiveret"
@ -34,47 +34,48 @@ msgstr "Aktiveret"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Giv UCI-adgang til luci-app-udpxy" msgstr "Giv UCI-adgang til luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Logfil" msgstr "Logfil"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Maks. klienter" msgstr "Maks. klienter"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Multicast-abonnement forny" msgstr "Multicast-abonnement forny"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Flot stigning" msgstr "Flot stigning"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Respawn" msgstr "Respawn"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Kilde IP/interface" msgstr "Kilde IP/interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Verbose" msgstr "Verbose"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.14.1\n" "X-Generator: Weblate 4.14.1\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "IP/Schnittstelle anbinden" msgstr "IP/Schnittstelle anbinden"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Nachrichten zwischenpuffern" msgstr "Nachrichten zwischenpuffern"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Puffergröße" msgstr "Puffergröße"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Pufferdauer" msgstr "Pufferdauer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Aktiviert" msgstr "Aktiviert"
@ -34,47 +34,48 @@ msgstr "Aktiviert"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Erlaube UCI Zugriff für luci-app-udpxy" msgstr "Erlaube UCI Zugriff für luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Protokolldatei" msgstr "Protokolldatei"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Maximale Clients" msgstr "Maximale Clients"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Multicast-Abonnement erneuern" msgstr "Multicast-Abonnement erneuern"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Nettes Inkrement" msgstr "Nettes Inkrement"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Erneut starten" msgstr "Erneut starten"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Quell-IP/Schnittstelle" msgstr "Quell-IP/Schnittstelle"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Ausührlich" msgstr "Ausührlich"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Ενεργοποιήθηκε" msgstr "Ενεργοποιήθηκε"
@ -34,47 +34,48 @@ msgstr "Ενεργοποιήθηκε"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Αρχείο καταγραφής" msgstr "Αρχείο καταγραφής"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Θύρα" msgstr "Θύρα"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Κατάσταση" msgstr "Κατάσταση"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7.1-dev\n" "X-Generator: Weblate 4.7.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Enabled" msgstr "Enabled"
@ -34,47 +34,48 @@ msgstr "Enabled"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -13,23 +13,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Enlace IP/interfaz" msgstr "Enlace IP/interfaz"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Mensajes de búfer" msgstr "Mensajes de búfer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Tamaño del búfer" msgstr "Tamaño del búfer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Tiempo del búfer" msgstr "Tiempo del búfer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Activado" msgstr "Activado"
@ -37,47 +37,48 @@ msgstr "Activado"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Conceder acceso UCI para luci-app-udpxy" msgstr "Conceder acceso UCI para luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Archivo de registro" msgstr "Archivo de registro"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Máx. clientes" msgstr "Máx. clientes"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Renovación de suscripción de multidifusión" msgstr "Renovación de suscripción de multidifusión"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Incremento agradable" msgstr "Incremento agradable"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Puerto" msgstr "Puerto"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Reaparecer" msgstr "Reaparecer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "IP de origen/interfaz" msgstr "IP de origen/interfaz"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Estado" msgstr "Estado"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Verbosidad" msgstr "Verbosidad"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7\n" "X-Generator: Weblate 4.7\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Sido IP/sovitin" msgstr "Sido IP/sovitin"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Puskurin viestit" msgstr "Puskurin viestit"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Puskurin koko" msgstr "Puskurin koko"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Puskurin aika" msgstr "Puskurin aika"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Käytössä" msgstr "Käytössä"
@ -34,47 +34,48 @@ msgstr "Käytössä"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Myönnä UCI:n käyttöoikeus luci-app-udpxy:lle" msgstr "Myönnä UCI:n käyttöoikeus luci-app-udpxy:lle"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Lokitiedosto" msgstr "Lokitiedosto"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Asiakkaita enintään" msgstr "Asiakkaita enintään"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Monilähetystilauksen uusiminen" msgstr "Monilähetystilauksen uusiminen"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Mukava lisäys" msgstr "Mukava lisäys"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Portti" msgstr "Portti"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Respawn" msgstr "Respawn"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Lähde IP/sovitin" msgstr "Lähde IP/sovitin"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Tila" msgstr "Tila"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Monisanainen" msgstr "Monisanainen"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Lier IP/Interface" msgstr "Lier IP/Interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Messages tampon" msgstr "Messages tampon"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Taille du tampon" msgstr "Taille du tampon"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Durée du tampon" msgstr "Durée du tampon"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Activé" msgstr "Activé"
@ -34,47 +34,48 @@ msgstr "Activé"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Accorder à l'UCI l'accès à luci-app-udpxy" msgstr "Accorder à l'UCI l'accès à luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Fichier de journal" msgstr "Fichier de journal"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Nombre max. de clients" msgstr "Nombre max. de clients"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Renouvellement de l'abonnement à la multidiffusion" msgstr "Renouvellement de l'abonnement à la multidiffusion"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Augmentation douce" msgstr "Augmentation douce"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Réapparition (Respawn)" msgstr "Réapparition (Respawn)"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "IP/interface Source" msgstr "IP/interface Source"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "État" msgstr "État"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Verbeux" msgstr "Verbeux"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -11,23 +11,23 @@ msgstr ""
"n % 10 == 0) ? 2 : 3));\n" "n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
@ -35,47 +35,48 @@ msgstr ""
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "פתחה" msgstr "פתחה"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -4,23 +4,23 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
@ -28,47 +28,48 @@ msgstr ""
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Kötési IP-cím/interfész" msgstr "Kötési IP-cím/interfész"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Üzenetpuffer" msgstr "Üzenetpuffer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Pufferméret" msgstr "Pufferméret"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Pufferezési idő" msgstr "Pufferezési idő"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Engedélyezve" msgstr "Engedélyezve"
@ -34,47 +34,48 @@ msgstr "Engedélyezve"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Naplófájl" msgstr "Naplófájl"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Max. ügyfélszám" msgstr "Max. ügyfélszám"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Multicast-előfizetés megújítása" msgstr "Multicast-előfizetés megújítása"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Nice növekmény" msgstr "Nice növekmény"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Újraszármaztatás" msgstr "Újraszármaztatás"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Forrás IP-cím/interfész" msgstr "Forrás IP-cím/interfész"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Állapot" msgstr "Állapot"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Bőbeszédű" msgstr "Bőbeszédű"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.11-dev\n" "X-Generator: Weblate 4.11-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Abilitato" msgstr "Abilitato"
@ -34,47 +34,48 @@ msgstr "Abilitato"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "File registro eventi" msgstr "File registro eventi"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Porta" msgstr "Porta"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Rinasci" msgstr "Rinasci"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Stato" msgstr "Stato"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "有効" msgstr "有効"
@ -34,47 +34,48 @@ msgstr "有効"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "luci-app-udpxy の UCI アクセスを許可" msgstr "luci-app-udpxy の UCI アクセスを許可"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "ログファイル" msgstr "ログファイル"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "最大クライアント" msgstr "最大クライアント"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "ポート" msgstr "ポート"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "リスポーン" msgstr "リスポーン"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "ステータス" msgstr "ステータス"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.14-dev\n" "X-Generator: Weblate 4.14-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "활성화" msgstr "활성화"
@ -34,47 +34,48 @@ msgstr "활성화"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "로그 파일" msgstr "로그 파일"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "포트" msgstr "포트"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "상태" msgstr "상태"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "सक्षम केले" msgstr "सक्षम केले"
@ -34,47 +34,48 @@ msgstr "सक्षम केले"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "लॉग फाइल" msgstr "लॉग फाइल"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "पोर्ट" msgstr "पोर्ट"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "स्थिती" msgstr "स्थिती"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -4,23 +4,23 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
@ -28,47 +28,48 @@ msgstr ""
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.6-dev\n" "X-Generator: Weblate 4.6-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Påskrudd" msgstr "Påskrudd"
@ -34,47 +34,48 @@ msgstr "Påskrudd"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Start på ny" msgstr "Start på ny"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -11,23 +11,23 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Powiąż IP/Interfejs" msgstr "Powiąż IP/Interfejs"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Wiadomości bufora" msgstr "Wiadomości bufora"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Rozmiar bufora" msgstr "Rozmiar bufora"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Czas buforowania" msgstr "Czas buforowania"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Włączone" msgstr "Włączone"
@ -35,47 +35,48 @@ msgstr "Włączone"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Udziel dostępu UCI do luci-app-udpxy" msgstr "Udziel dostępu UCI do luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Plik dziennika" msgstr "Plik dziennika"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Maks. klientów" msgstr "Maks. klientów"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Przedłużenie subskrypcji Multicast" msgstr "Przedłużenie subskrypcji Multicast"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Niezły przyrost" msgstr "Niezły przyrost"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Odrodzenie" msgstr "Odrodzenie"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Źródło IP/Interfejs" msgstr "Źródło IP/Interfejs"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Pełne" msgstr "Pełne"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.14-dev\n" "X-Generator: Weblate 4.14-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Ligar IP/Interface" msgstr "Ligar IP/Interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Buffer mensagens" msgstr "Buffer mensagens"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Tamanho do buffer" msgstr "Tamanho do buffer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Tempo de buffer" msgstr "Tempo de buffer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
@ -34,47 +34,48 @@ msgstr "Ativado"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Conceder acesso UCI ao luci-app-udpxy" msgstr "Conceder acesso UCI ao luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Ficheiro de registo" msgstr "Ficheiro de registo"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Máximo de clientes" msgstr "Máximo de clientes"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Renovação de assinatura multicast" msgstr "Renovação de assinatura multicast"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Incremento nice" msgstr "Incremento nice"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Porta" msgstr "Porta"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Redisparar" msgstr "Redisparar"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Fonte IP/Interface" msgstr "Fonte IP/Interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Estado" msgstr "Estado"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Verbose" msgstr "Verbose"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.13.1-dev\n" "X-Generator: Weblate 4.13.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Vincular IP/Interface" msgstr "Vincular IP/Interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Empilhar mensagens" msgstr "Empilhar mensagens"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Tamanho do buffer" msgstr "Tamanho do buffer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Tempo do buffer" msgstr "Tempo do buffer"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
@ -34,47 +34,48 @@ msgstr "Ativado"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Conceda acesso UCI ao luci-app-udpxy" msgstr "Conceda acesso UCI ao luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Arquivo log" msgstr "Arquivo log"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Quantidade máxima de clientes" msgstr "Quantidade máxima de clientes"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Renovar a assinatura multicast" msgstr "Renovar a assinatura multicast"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Incremento fino" msgstr "Incremento fino"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Porta" msgstr "Porta"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Ressurgir" msgstr "Ressurgir"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Origem IP/Interface" msgstr "Origem IP/Interface"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Condição Geral" msgstr "Condição Geral"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Loquaz" msgstr "Loquaz"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -11,23 +11,23 @@ msgstr ""
"20)) ? 1 : 2;\n" "20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Legătura IP/Interfață" msgstr "Legătura IP/Interfață"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Mesaje tampon" msgstr "Mesaje tampon"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Dimensiunea tamponului" msgstr "Dimensiunea tamponului"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Timp tampon" msgstr "Timp tampon"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
@ -35,47 +35,48 @@ msgstr "Activat"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Acordă acces UCI pentru luci-app-udpxy" msgstr "Acordă acces UCI pentru luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Fișier jurnal" msgstr "Fișier jurnal"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Număr maxim de clienți" msgstr "Număr maxim de clienți"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Reînnoirea abonamentului Multicast" msgstr "Reînnoirea abonamentului Multicast"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Un spor frumos" msgstr "Un spor frumos"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Reîntoarcerea" msgstr "Reîntoarcerea"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "IP/Interfață sursă" msgstr "IP/Interfață sursă"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Stare" msgstr "Stare"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Verbală" msgstr "Verbală"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -11,23 +11,23 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Исходящий IP/Интерфейс" msgstr "Исходящий IP/Интерфейс"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Количество сообщений, накапливаемых в буфере" msgstr "Количество сообщений, накапливаемых в буфере"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Размер буфера для входящих данных" msgstr "Размер буфера для входящих данных"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Макс. время накопления сообщений в буфере" msgstr "Макс. время накопления сообщений в буфере"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Включено" msgstr "Включено"
@ -35,47 +35,48 @@ msgstr "Включено"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Предоставить UCI доступ для luci-app-udpxy" msgstr "Предоставить UCI доступ для luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Файл журнала приложения" msgstr "Файл журнала приложения"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Макс. кол-во обслуживаемых клиентов" msgstr "Макс. кол-во обслуживаемых клиентов"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Периодически возобновлять подписку на мультикаст-канал" msgstr "Периодически возобновлять подписку на мультикаст-канал"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Смещение приоритета приложения" msgstr "Смещение приоритета приложения"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Порт" msgstr "Порт"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Перезапуск при сбое" msgstr "Перезапуск при сбое"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Входящий IP/Интерфейс" msgstr "Входящий IP/Интерфейс"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Состояние" msgstr "Состояние"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Подробный журнал" msgstr "Подробный журнал"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "UDP-HTTP прокси (udpxy)" msgstr "UDP-HTTP прокси (udpxy)"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"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 4.14.1\n" "X-Generator: Weblate 4.14.1\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Zapnuté" msgstr "Zapnuté"
@ -34,47 +34,48 @@ msgstr "Zapnuté"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Stav" msgstr "Stav"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Bind IP/Gränssnitt" msgstr "Bind IP/Gränssnitt"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Aktiverad" msgstr "Aktiverad"
@ -34,47 +34,48 @@ msgstr "Aktiverad"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Loggfil" msgstr "Loggfil"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Återuppliva" msgstr "Återuppliva"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -1,23 +1,23 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
@ -25,47 +25,48 @@ msgstr ""
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13.1-dev\n" "X-Generator: Weblate 4.13.1-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "IP / Arayüz Bağla" msgstr "IP / Arayüz Bağla"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Tampon mesajları" msgstr "Tampon mesajları"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Tampon boyutu" msgstr "Tampon boyutu"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Tampon zamanı" msgstr "Tampon zamanı"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Etkin" msgstr "Etkin"
@ -34,47 +34,48 @@ msgstr "Etkin"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "luci-app-udpxy için UCI erişimi verin" msgstr "luci-app-udpxy için UCI erişimi verin"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Günlük dosyası" msgstr "Günlük dosyası"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Maksimum istemci" msgstr "Maksimum istemci"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Çok noktaya yayın aboneliği yenile" msgstr "Çok noktaya yayın aboneliği yenile"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Güzel artış" msgstr "Güzel artış"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Bağlantı noktası" msgstr "Bağlantı noktası"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Tekrar başlat" msgstr "Tekrar başlat"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Kaynak IP / Arayüz" msgstr "Kaynak IP / Arayüz"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Durum" msgstr "Durum"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Ayrıntılı" msgstr "Ayrıntılı"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -11,23 +11,23 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.5.2-dev\n" "X-Generator: Weblate 4.5.2-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "Присвоєний IP/Інтерфейс" msgstr "Присвоєний IP/Інтерфейс"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "Буфер повідомлень" msgstr "Буфер повідомлень"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "Розмір буферу" msgstr "Розмір буферу"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "Час буферу" msgstr "Час буферу"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Увімкнено" msgstr "Увімкнено"
@ -35,47 +35,48 @@ msgstr "Увімкнено"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "Надати доступ до UCI для luci-app-udpxy" msgstr "Надати доступ до UCI для luci-app-udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "Файл звіту" msgstr "Файл звіту"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "Максимум клієнтів" msgstr "Максимум клієнтів"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "Оновлювати підписку на групову трансляцію" msgstr "Оновлювати підписку на групову трансляцію"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "Зсув пріоритету застосунку" msgstr "Зсув пріоритету застосунку"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "Порт" msgstr "Порт"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "Поновляти" msgstr "Поновляти"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "Джерельний IP/інтерфейс" msgstr "Джерельний IP/інтерфейс"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Стан" msgstr "Стан"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "Детальний звіт" msgstr "Детальний звіт"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "UDP-HTTP проксі (udpxy)" msgstr "UDP-HTTP проксі (udpxy)"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "Bật" msgstr "Bật"
@ -34,47 +34,48 @@ msgstr "Bật"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "Trạng thái" msgstr "Trạng thái"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "" msgstr ""
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.6-dev\n" "X-Generator: Weblate 4.6-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "绑定 IP/接口" msgstr "绑定 IP/接口"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "缓冲区消息" msgstr "缓冲区消息"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "缓冲区大小" msgstr "缓冲区大小"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "缓冲时间" msgstr "缓冲时间"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "已启用" msgstr "已启用"
@ -34,47 +34,48 @@ msgstr "已启用"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "授予UCI访问luci-app-udpxy的权限" msgstr "授予UCI访问luci-app-udpxy的权限"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "日志文件" msgstr "日志文件"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "最大客户端数量" msgstr "最大客户端数量"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "组播订阅续订" msgstr "组播订阅续订"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "优先级增量" msgstr "优先级增量"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "端口" msgstr "端口"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "刷新" msgstr "刷新"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "源 IP/接口" msgstr "源 IP/接口"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "状态" msgstr "状态"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "记录详细日志" msgstr "记录详细日志"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy" msgstr "udpxy"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -10,23 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.14-dev\n" "X-Generator: Weblate 4.14-dev\n"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:23 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:30
msgid "Bind IP/Interface" msgid "Bind IP/Interface"
msgstr "綁定IP/介面" msgstr "綁定IP/介面"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:47 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:47
msgid "Buffer messages" msgid "Buffer messages"
msgstr "緩衝訊息" msgstr "緩衝訊息"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:43 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:44
msgid "Buffer size" msgid "Buffer size"
msgstr "緩衝區大小" msgstr "緩衝區大小"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:51 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:50
msgid "Buffer time" msgid "Buffer time"
msgstr "緩衝時間" msgstr "緩衝時間"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:10 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:16
msgid "Enabled" msgid "Enabled"
msgstr "啟用" msgstr "啟用"
@ -34,47 +34,48 @@ msgstr "啟用"
msgid "Grant UCI access for luci-app-udpxy" msgid "Grant UCI access for luci-app-udpxy"
msgstr "授予 luci-app-udpxy 擁有 UCI 存取的權限" msgstr "授予 luci-app-udpxy 擁有 UCI 存取的權限"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:39 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:42
msgid "Log file" msgid "Log file"
msgstr "日誌檔案" msgstr "日誌檔案"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:35 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:39
msgid "Max clients" msgid "Max clients"
msgstr "最大客戶數" msgstr "最大客戶數"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:59 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:56
msgid "Multicast subscription renew" msgid "Multicast subscription renew"
msgstr "群播訂閱續訂" msgstr "群播訂閱續訂"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:55 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:53
msgid "Nice increment" msgid "Nice increment"
msgstr "不錯的增量" msgstr "不錯的增量"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:27 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:33
msgid "Port" msgid "Port"
msgstr "連接埠" msgstr "連接埠"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:15 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:22
msgid "Respawn" msgid "Respawn"
msgstr "重生" msgstr "重生"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:31 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:36
msgid "Source IP/Interface" msgid "Source IP/Interface"
msgstr "來源 IP/介面" msgstr "來源 IP/介面"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:21 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:28
msgid "Status" msgid "Status"
msgstr "狀態" msgstr "狀態"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:18 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:25
msgid "Verbose" msgid "Verbose"
msgstr "詳細" msgstr "詳細"
#: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:9
#: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3 #: applications/luci-app-udpxy/root/usr/share/luci/menu.d/luci-app-udpxy.json:3
msgid "udpxy" msgid "udpxy"
msgstr "udpxy (低頻寬免解碼IPTV串流轉向Http)" msgstr "udpxy (低頻寬免解碼IPTV串流轉向Http)"
#: applications/luci-app-udpxy/luasrc/model/cbi/udpxy.lua:4 #: applications/luci-app-udpxy/htdocs/luci-static/resources/view/udpxy.js:10
msgid "" msgid ""
"udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can " "udpxy is a UDP-to-HTTP multicast traffic relay daemon, here you can "
"configure the settings." "configure the settings."

View file

@ -2,9 +2,8 @@
"admin/services/udpxy": { "admin/services/udpxy": {
"title": "udpxy", "title": "udpxy",
"action": { "action": {
"type": "cbi", "type": "view",
"path": "udpxy", "path": "udpxy"
"post": { "cbi.submit": true }
}, },
"depends": { "depends": {
"acl": [ "luci-app-udpxy" ], "acl": [ "luci-app-udpxy" ],