diff options
Diffstat (limited to 'applications/luci-app-omcproxy')
33 files changed, 2216 insertions, 0 deletions
diff --git a/applications/luci-app-omcproxy/Makefile b/applications/luci-app-omcproxy/Makefile new file mode 100644 index 0000000000..7091f66df9 --- /dev/null +++ b/applications/luci-app-omcproxy/Makefile @@ -0,0 +1,22 @@ +# +# Copyright 2019 Shun Li <riverscn@gmail.com> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=luci-app-omcproxy +PKG_VERSION:=0.1.0 +PKG_RELEASE:=1 + +PKG_MAINTAINER:=Shun Li <riverscn@gmail.com> +PKG_LICENSE:=Apache-2.0 + +LUCI_TITLE:=LuCI support for omcproxy +LUCI_DEPENDS:=+omcproxy +LUCI_PKGARCH:=all + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js b/applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js new file mode 100644 index 0000000000..cbc77f66ff --- /dev/null +++ b/applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js @@ -0,0 +1,40 @@ +// Copyright 2019 Shun Li <riverscn@gmail.com> +// This is free software, licensed under the Apache License, Version 2.0 + +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.view.extend({ + render: function () { + var m, s, o; + + m = new form.Map('omcproxy', _('omcproxy'), _('Embedded IGMPv3 and MLDv2 proxy')); + + s = m.section(form.TypedSection, 'proxy', _('Proxy Instance')); + s.anonymous = true; + s.addremove = true; + s.addbtntitle = _('Add instance'); + + o = s.option(form.ListValue, 'scope', _('Scope'), _('Minimum multicast scope to proxy (only affects IPv6 multicast)')); + o.datatype = 'string'; + o.value('', _('default')) + o.value('global', _('global')) + o.value('organization', _('organization-local')) + o.value('site', _('site-local')) + o.value('admin', _('admin-local')) + o.value('realm', _('realm')) + o.default = ''; + o.rmempty = true; + + o = s.option(widgets.NetworkSelect, 'uplink', _('Uplink interface'), _('Where does the multicast come from?')); + o.nocreate = true; + o.rmempty = false; + + o = s.option(widgets.NetworkSelect, 'downlink', _('Downlink interface'), _('Where does the multicast go to?')); + o.nocreate = true; + o.rmempty = false; + + return m.render(); + } +}); diff --git a/applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua b/applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua new file mode 100644 index 0000000000..6842a20971 --- /dev/null +++ b/applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua @@ -0,0 +1,13 @@ +-- Copyright 2019 Shun Li <riverscn@gmail.com> +-- This is free software, licensed under the Apache License, Version 2.0 + +module("luci.controller.omcproxy", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/omcproxy") then + return + end + + entry({"admin", "services", "omcproxy"}, view("omcproxy"), _("omcproxy")).dependent = true + +end
\ No newline at end of file diff --git a/applications/luci-app-omcproxy/po/bg/omcproxy.po b/applications/luci-app-omcproxy/po/bg/omcproxy.po new file mode 100644 index 0000000000..acf972feab --- /dev/null +++ b/applications/luci-app-omcproxy/po/bg/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/ca/omcproxy.po b/applications/luci-app-omcproxy/po/ca/omcproxy.po new file mode 100644 index 0000000000..70229b5e0c --- /dev/null +++ b/applications/luci-app-omcproxy/po/ca/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: ca\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/cs/omcproxy.po b/applications/luci-app-omcproxy/po/cs/omcproxy.po new file mode 100644 index 0000000000..53bb28ca21 --- /dev/null +++ b/applications/luci-app-omcproxy/po/cs/omcproxy.po @@ -0,0 +1,76 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-09 20:06+0000\n" +"Last-Translator: Jiri Tersel <jiri.tersel@seznam.cz>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsomcproxy/cs/>\n" +"Language: cs\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Přidat instanci" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/de/omcproxy.po b/applications/luci-app-omcproxy/po/de/omcproxy.po new file mode 100644 index 0000000000..b2e61359df --- /dev/null +++ b/applications/luci-app-omcproxy/po/de/omcproxy.po @@ -0,0 +1,76 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-09 20:06+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsomcproxy/de/>\n" +"Language: de\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Instanz hinzufügen" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "Standardeinstellung" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/el/omcproxy.po b/applications/luci-app-omcproxy/po/el/omcproxy.po new file mode 100644 index 0000000000..94f54b8593 --- /dev/null +++ b/applications/luci-app-omcproxy/po/el/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: el\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/en/omcproxy.po b/applications/luci-app-omcproxy/po/en/omcproxy.po new file mode 100644 index 0000000000..40c04395c3 --- /dev/null +++ b/applications/luci-app-omcproxy/po/en/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/es/omcproxy.po b/applications/luci-app-omcproxy/po/es/omcproxy.po new file mode 100644 index 0000000000..c69954b07c --- /dev/null +++ b/applications/luci-app-omcproxy/po/es/omcproxy.po @@ -0,0 +1,78 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-09 20:06+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsomcproxy/es/>\n" +"Language: es\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Añadir instancia" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "Interfaz de enlace descendente" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "Proxy IGMPv3 y MLDv2 incorporado" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" +"Alcance mínimo de multidifusión al proxy (solo afecta a la multidifusión " +"IPv6)" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "Instancia de Proxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "Alcance" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "Interfaz de enlace ascendente" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "¿De dónde viene la multidifusión?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "¿A dónde va la multidifusión?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "admin-local" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "predeterminado" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "global" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "omcproxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "organización-local" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "reino" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "sitio-local" diff --git a/applications/luci-app-omcproxy/po/fr/omcproxy.po b/applications/luci-app-omcproxy/po/fr/omcproxy.po new file mode 100644 index 0000000000..99523f90f3 --- /dev/null +++ b/applications/luci-app-omcproxy/po/fr/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: fr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/he/omcproxy.po b/applications/luci-app-omcproxy/po/he/omcproxy.po new file mode 100644 index 0000000000..1583d87b0f --- /dev/null +++ b/applications/luci-app-omcproxy/po/he/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/hi/omcproxy.po b/applications/luci-app-omcproxy/po/hi/omcproxy.po new file mode 100644 index 0000000000..9cc7c220b8 --- /dev/null +++ b/applications/luci-app-omcproxy/po/hi/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/hu/omcproxy.po b/applications/luci-app-omcproxy/po/hu/omcproxy.po new file mode 100644 index 0000000000..3333c6f838 --- /dev/null +++ b/applications/luci-app-omcproxy/po/hu/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: hu\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/it/omcproxy.po b/applications/luci-app-omcproxy/po/it/omcproxy.po new file mode 100644 index 0000000000..fd32cf08bc --- /dev/null +++ b/applications/luci-app-omcproxy/po/it/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: it\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/ja/omcproxy.po b/applications/luci-app-omcproxy/po/ja/omcproxy.po new file mode 100644 index 0000000000..3bfe52442a --- /dev/null +++ b/applications/luci-app-omcproxy/po/ja/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: ja\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/ko/omcproxy.po b/applications/luci-app-omcproxy/po/ko/omcproxy.po new file mode 100644 index 0000000000..3d0d2f10fa --- /dev/null +++ b/applications/luci-app-omcproxy/po/ko/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: ko\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/mr/omcproxy.po b/applications/luci-app-omcproxy/po/mr/omcproxy.po new file mode 100644 index 0000000000..2f1067a3b2 --- /dev/null +++ b/applications/luci-app-omcproxy/po/mr/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: mr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/ms/omcproxy.po b/applications/luci-app-omcproxy/po/ms/omcproxy.po new file mode 100644 index 0000000000..7005e0fe6e --- /dev/null +++ b/applications/luci-app-omcproxy/po/ms/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/nb_NO/omcproxy.po b/applications/luci-app-omcproxy/po/nb_NO/omcproxy.po new file mode 100644 index 0000000000..1157e6c8af --- /dev/null +++ b/applications/luci-app-omcproxy/po/nb_NO/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: nb_NO\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/pl/omcproxy.po b/applications/luci-app-omcproxy/po/pl/omcproxy.po new file mode 100644 index 0000000000..da5d68d2a7 --- /dev/null +++ b/applications/luci-app-omcproxy/po/pl/omcproxy.po @@ -0,0 +1,77 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-15 21:23+0000\n" +"Last-Translator: Michal L <michalrmsmi@wp.pl>\n" +"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsomcproxy/pl/>\n" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Dodaj instancję" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "Wbudowany IGMPv3 i proxy MLDv2" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "Instancja proxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "Zakres" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "Skąd pochodzi multicast?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "Dokąd zmierza multicast?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "domyślna" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "omcproxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/pt/omcproxy.po b/applications/luci-app-omcproxy/po/pt/omcproxy.po new file mode 100644 index 0000000000..f7af81ef3f --- /dev/null +++ b/applications/luci-app-omcproxy/po/pt/omcproxy.po @@ -0,0 +1,76 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-09 20:06+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsomcproxy/pt/>\n" +"Language: pt\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Adicionar instância" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "Interface de downlink" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "Proxy de IGMPv3 e MLDv2 incorporado" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "Escopo mínimo de multicast ao proxy (afeta apenas o multicast IPv6)" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "Instância de Proxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "Escopo" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "Interface de uplink" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "De onde vem o multicast?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "Para onde vai o multicast?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "admin-local" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "padrão" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "global" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "omcproxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "organização-local" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "domínio" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "site-local" diff --git a/applications/luci-app-omcproxy/po/pt_BR/omcproxy.po b/applications/luci-app-omcproxy/po/pt_BR/omcproxy.po new file mode 100644 index 0000000000..6332276c54 --- /dev/null +++ b/applications/luci-app-omcproxy/po/pt_BR/omcproxy.po @@ -0,0 +1,77 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-05 17:08+0000\n" +"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsomcproxy/pt_BR/>\n" +"Language: pt-BR\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Adicionar instância" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "Interface de downlink" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "Proxy IGMPv3 e MLDv2 incorporado" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" +"Escopo mínimo de multicast para o proxy (afeta apenas o multicast IPv6)" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "Instância de proxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "Escopo" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "Interface uplink" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "De onde vem o multicast?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "Para onde vai o multicast?" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "administrador-local" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "Padrão" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "Global" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "omcproxy" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "organização-local" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "realm" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "site-local" diff --git a/applications/luci-app-omcproxy/po/ro/omcproxy.po b/applications/luci-app-omcproxy/po/ro/omcproxy.po new file mode 100644 index 0000000000..abbcf5ba1f --- /dev/null +++ b/applications/luci-app-omcproxy/po/ro/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: ro\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/ru/omcproxy.po b/applications/luci-app-omcproxy/po/ru/omcproxy.po new file mode 100644 index 0000000000..52718b4192 --- /dev/null +++ b/applications/luci-app-omcproxy/po/ru/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: ru\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/sk/omcproxy.po b/applications/luci-app-omcproxy/po/sk/omcproxy.po new file mode 100644 index 0000000000..65ba109322 --- /dev/null +++ b/applications/luci-app-omcproxy/po/sk/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: sk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/sv/omcproxy.po b/applications/luci-app-omcproxy/po/sv/omcproxy.po new file mode 100644 index 0000000000..405d030b26 --- /dev/null +++ b/applications/luci-app-omcproxy/po/sv/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: sv\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/templates/omcproxy.pot b/applications/luci-app-omcproxy/po/templates/omcproxy.pot new file mode 100644 index 0000000000..0bbaa295be --- /dev/null +++ b/applications/luci-app-omcproxy/po/templates/omcproxy.pot @@ -0,0 +1,67 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/tr/omcproxy.po b/applications/luci-app-omcproxy/po/tr/omcproxy.po new file mode 100644 index 0000000000..ac64906ebb --- /dev/null +++ b/applications/luci-app-omcproxy/po/tr/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: tr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/uk/omcproxy.po b/applications/luci-app-omcproxy/po/uk/omcproxy.po new file mode 100644 index 0000000000..80ca460771 --- /dev/null +++ b/applications/luci-app-omcproxy/po/uk/omcproxy.po @@ -0,0 +1,77 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-15 21:23+0000\n" +"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" +"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsomcproxy/uk/>\n" +"Language: uk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "Додати реалізацію" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/vi/omcproxy.po b/applications/luci-app-omcproxy/po/vi/omcproxy.po new file mode 100644 index 0000000000..4ea7f36607 --- /dev/null +++ b/applications/luci-app-omcproxy/po/vi/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" diff --git a/applications/luci-app-omcproxy/po/zh-cn/omcproxy.po b/applications/luci-app-omcproxy/po/zh-cn/omcproxy.po new file mode 100644 index 0000000000..1b4bbadf9e --- /dev/null +++ b/applications/luci-app-omcproxy/po/zh-cn/omcproxy.po @@ -0,0 +1,67 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "添加实例" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "下行链路接口" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "嵌入式IGMPv3和MLDv2组播代理(omcproxy)" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "代理的最小范围(只影响IPv6的组播)" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "代理实例" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "范围" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "上行链路接口" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "组播数据来源" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "组播代理去向" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "管理本地范围" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "默认" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "全球范围" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "组播代理" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "机构本地范围" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "保留" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "站点本地范围" diff --git a/applications/luci-app-omcproxy/po/zh_Hant/omcproxy.po b/applications/luci-app-omcproxy/po/zh_Hant/omcproxy.po new file mode 100644 index 0000000000..9eda3bd89d --- /dev/null +++ b/applications/luci-app-omcproxy/po/zh_Hant/omcproxy.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:17 +msgid "Add instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Downlink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +msgid "Embedded IGMPv3 and MLDv2 proxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Minimum multicast scope to proxy (only affects IPv6 multicast)" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:14 +msgid "Proxy Instance" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:19 +msgid "Scope" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Uplink interface" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:30 +msgid "Where does the multicast come from?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:34 +msgid "Where does the multicast go to?" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:25 +msgid "admin-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:21 +msgid "default" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:22 +msgid "global" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:12 +#: applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua:11 +msgid "omcproxy" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:23 +msgid "organization-local" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:26 +msgid "realm" +msgstr "" + +#: applications/luci-app-omcproxy/htdocs/luci-static/resources/view/omcproxy.js:24 +msgid "site-local" +msgstr "" |