diff options
Diffstat (limited to 'applications/luci-app-pagekitec')
41 files changed, 1653 insertions, 776 deletions
diff --git a/applications/luci-app-pagekitec/Makefile b/applications/luci-app-pagekitec/Makefile index ea61323420..d875009772 100644 --- a/applications/luci-app-pagekitec/Makefile +++ b/applications/luci-app-pagekitec/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for PageKite -LUCI_DEPENDS:=+luci-compat +pagekitec +LUCI_DEPENDS:=+pagekitec PKG_MAINTAINER:=Karl Palsson <karlp@tweak.net.au> diff --git a/applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js b/applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js new file mode 100644 index 0000000000..9289bf3260 --- /dev/null +++ b/applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js @@ -0,0 +1,38 @@ +'use strict'; +'require view'; +'require form'; + +var desc = _("" + + "<p/>Note: you need a working PageKite account, or at least, your own running front end for this form to work. " + + "Visit <a href='https://pagekite.net/home/'>your account</a> to set up a name for your " + + "router and get a secret key for the connection." + + "<p/><em>Note: this web configurator only supports " + + "some very very basic uses of pagekite.</em>" +); + +return view.extend({ + render: function() { + var m, s, o; + + m = new form.Map('pagekitec', _('PageKite'), desc); + + s = m.section(form.TypedSection, 'pagekitec', _("Configuration")); + s.anonymous = true; + + o = s.option(form.Value, "kitename", _("Kite Name")); + o = s.option(form.Value, "kitesecret", _("Kite Secret")); + o.password = true; + + o = s.option(form.Flag, "static", _("Static setup"), + _("Static setup, disable FE failover and DDNS updates, set this if you are running your " + + "own frontend without a pagekite.me account")); + o = s.option(form.Flag, "simple_http", _("Basic HTTP"), _("Enable a tunnel to the local HTTP server (in most cases, this admin interface)")); + o = s.option(form.Flag, "simple_ssh", _("Basic SSH"), _("Enable a tunnel to the local SSH server")); + o = s.option(form.Value, "simple_ws", _("Basic WebSockets"), _("Enable a WebSockets tunnel on a given local port")); + o.placeholder = 8083; + o.datatype = "port"; + o.optional = true; + + return m.render(); + } +}); diff --git a/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua b/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua deleted file mode 100644 index 938356be64..0000000000 --- a/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua +++ /dev/null @@ -1,8 +0,0 @@ --- Copyright 2018 Karl Palsson <karlp@tweak.net.au> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.pagekitec", package.seeall) - -function index() - entry({"admin", "services", "pagekitec"}, cbi("pagekitec"), _("PageKite")) -end diff --git a/applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua b/applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua deleted file mode 100644 index 1abd3f79d5..0000000000 --- a/applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua +++ /dev/null @@ -1,26 +0,0 @@ -m = Map("pagekitec", translate("PageKite"), - translate([[ -<p/>Note: you need a working PageKite account, or at least, your own running front end for this form to work. -Visit <a href="https://pagekite.net/home/">your account</a> to set up a name for your -router and get a secret key for the connection. -<p/><em>Note: this web configurator only supports -some very very basic uses of pagekite.</em> -]])) - -s = m:section(TypedSection, "pagekitec", translate("PageKite")) -s.anonymous = true - -p = s:option(Value, "kitename", translate("Kite Name")) -p = s:option(Value, "kitesecret", translate("Kite Secret")) -p.password = true -p = s:option(Flag, "static", translate("Static Setup"), - translate([[Static setup, disable FE failover and DDNS updates, set this if you are running your - own frontend without a pagekite.me account]])) - -p = s:option(Flag, "simple_http", translate("Basic HTTP"), - translate([[Enable a tunnel to the local HTTP server (in most cases, this admin -site)]])) -p = s:option(Flag, "simple_ssh", translate("Basic SSH"), - translate([[Enable a tunnel to the local SSH server]])) - -return m diff --git a/applications/luci-app-pagekitec/po/ar/pagekitec.po b/applications/luci-app-pagekitec/po/ar/pagekitec.po new file mode 100644 index 0000000000..4af595010f --- /dev/null +++ b/applications/luci-app-pagekitec/po/ar/pagekitec.po @@ -0,0 +1,67 @@ +msgid "" +msgstr "" +"Language: ar\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 +msgid "" +"<p/>Note: you need a working PageKite account, or at least, your own running " +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "Basic HTTP" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Basic SSH" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Enable a tunnel to the local SSH server" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 +msgid "Kite Name" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 +msgid "Kite Secret" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 +msgid "PageKite" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 +msgid "" +"Static setup, disable FE failover and DDNS updates, set this if you are " +"running your own frontend without a pagekite.me account" +msgstr "" diff --git a/applications/luci-app-pagekitec/po/bg/pagekitec.po b/applications/luci-app-pagekitec/po/bg/pagekitec.po index 0b5b03bcbf..055699665d 100644 --- a/applications/luci-app-pagekitec/po/bg/pagekitec.po +++ b/applications/luci-app-pagekitec/po/bg/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/bn_BD/pagekitec.po b/applications/luci-app-pagekitec/po/bn_BD/pagekitec.po new file mode 100644 index 0000000000..9293ecfca4 --- /dev/null +++ b/applications/luci-app-pagekitec/po/bn_BD/pagekitec.po @@ -0,0 +1,67 @@ +msgid "" +msgstr "" +"Language: bn_BD\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 +msgid "" +"<p/>Note: you need a working PageKite account, or at least, your own running " +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "Basic HTTP" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Basic SSH" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Enable a tunnel to the local SSH server" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 +msgid "Kite Name" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 +msgid "Kite Secret" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 +msgid "PageKite" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 +msgid "" +"Static setup, disable FE failover and DDNS updates, set this if you are " +"running your own frontend without a pagekite.me account" +msgstr "" diff --git a/applications/luci-app-pagekitec/po/ca/pagekitec.po b/applications/luci-app-pagekitec/po/ca/pagekitec.po index b10c0ea8a4..61eb7a55a3 100644 --- a/applications/luci-app-pagekitec/po/ca/pagekitec.po +++ b/applications/luci-app-pagekitec/po/ca/pagekitec.po @@ -1,54 +1,72 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-11 23:49+0000\n" +"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/ca/>\n" "Language: ca\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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" -msgstr "" +msgstr "HTTP bàsic" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" +msgstr "SSH bàsic" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "WebSockets bàsics" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configuració" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/cs/pagekitec.po b/applications/luci-app-pagekitec/po/cs/pagekitec.po index 4bc5fd3784..71c7d3fd11 100644 --- a/applications/luci-app-pagekitec/po/cs/pagekitec.po +++ b/applications/luci-app-pagekitec/po/cs/pagekitec.po @@ -1,54 +1,72 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-05-05 06:18+0000\n" +"Last-Translator: Dominik Lenoch <dlenoch@redhat.com>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/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 4.1-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Nastavení" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/de/pagekitec.po b/applications/luci-app-pagekitec/po/de/pagekitec.po index a5bbfce226..6d89e540c0 100644 --- a/applications/luci-app-pagekitec/po/de/pagekitec.po +++ b/applications/luci-app-pagekitec/po/de/pagekitec.po @@ -1,55 +1,93 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-29 07:02+0000\n" +"Last-Translator: Holger Heins <h.p.heins@gmx.de>\n" +"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" -msgstr "" +msgstr "Aktiviere einen Tunnel zum lokalen SSH-Server" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" -msgstr "" +msgstr "Kite Name" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" -msgstr "" +msgstr "Kite Geheimnis" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" -msgstr "" +msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" msgstr "" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>Hinweis: Damit dieses Formular funktioniert wird ein funktionierendes " +#~ "PageKite-Konto oder zumindest ein eigenes laufendes Frontend benötigt. " +#~ "Besuche <a href=\"https://pagekite.net/home/\">Dein Konto</a>, um einen " +#~ "Namen für deinen Router einzurichten und einen geheimen Schlüssel für die " +#~ "Verbindung zu erhalten. <p/><em>Hinweis: Dieser Web-Konfigurator " +#~ "unterstützt nur einige sehr einfache Anwendungen von Pagekite.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Aktiviere einen Tunnel zum lokalen HTTP-Server (in den meisten Fällen " +#~ "diese Administrationsseite)" diff --git a/applications/luci-app-pagekitec/po/el/pagekitec.po b/applications/luci-app-pagekitec/po/el/pagekitec.po index a404b8f727..f49eea6f6d 100644 --- a/applications/luci-app-pagekitec/po/el/pagekitec.po +++ b/applications/luci-app-pagekitec/po/el/pagekitec.po @@ -1,54 +1,72 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-14 19:36+0000\n" +"Last-Translator: lamprakis <lamprakisa@yahoo.gr>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/el/>\n" "Language: el\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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Διαμόρφωση" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/en/pagekitec.po b/applications/luci-app-pagekitec/po/en/pagekitec.po index 4690069ba9..d5e65c66b0 100644 --- a/applications/luci-app-pagekitec/po/en/pagekitec.po +++ b/applications/luci-app-pagekitec/po/en/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/es/pagekitec.po b/applications/luci-app-pagekitec/po/es/pagekitec.po index ea8d9f9eee..54ba528f35 100644 --- a/applications/luci-app-pagekitec/po/es/pagekitec.po +++ b/applications/luci-app-pagekitec/po/es/pagekitec.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2019-11-18 05:08+0000\n" +"PO-Revision-Date: 2020-03-01 16:12+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationspagekitec/es/>\n" @@ -11,60 +11,72 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -"<p />Nota: necesita una cuenta de PageKite que funcione, o al menos, su " -"propio front end para que este formulario funcione. Visite <a href=\"https://" -"pagekite.net/home/\">su cuenta</a> para configurar un nombre para su " -"enrutador y obtener una clave secreta para la conexión. <p/> <em> Nota: este " -"configurador web solo admite algunos usos muy básicos de pagekite.</em>" +"<p/>Nota: necesita una cuenta de PageKite que funcione, o al menos, su " +"propio front-end para que funcione este formulario. Visite <a href='https://" +"pagekite.net/home/'>su cuenta</a> para configurar un nombre para su " +"enrutador y obtener una clave secreta para la conexión.<P/> <em>Nota: este " +"configurador web sólo admite algunos usos muy básicos de pagekite.</em>" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "HTTP básico" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "SSH básico" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "WebSockets básicos" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configuración" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "Activa un túnel WebSockets en un puerto local dado" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -"Activar un túnel al servidor HTTP local (en la mayoría de los casos, este " -"sitio de administración)" +"Activa un túnel al servidor HTTP local (en la mayoría de los casos, esta " +"interfaz de administrador)" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "Activar un túnel al servidor SSH local" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "Nombre de Kite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "Kite secreto" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "Configuración estática" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" @@ -72,3 +84,26 @@ msgstr "" "Configuración estática, desactivar la conmutación por error FE y " "actualizaciones de DDNS, configúralo si estás ejecutando tu propia interfaz " "sin una cuenta de pagekite.me" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p />Nota: necesita una cuenta de PageKite que funcione, o al menos, su " +#~ "propio front end para que este formulario funcione. Visite <a href=" +#~ "\"https://pagekite.net/home/\">su cuenta</a> para configurar un nombre " +#~ "para su enrutador y obtener una clave secreta para la conexión. <p/> <em> " +#~ "Nota: este configurador web solo admite algunos usos muy básicos de " +#~ "pagekite.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Activar un túnel al servidor HTTP local (en la mayoría de los casos, este " +#~ "sitio de administración)" + +#~ msgid "Static Setup" +#~ msgstr "Configuración estática" diff --git a/applications/luci-app-pagekitec/po/fi/pagekitec.po b/applications/luci-app-pagekitec/po/fi/pagekitec.po new file mode 100644 index 0000000000..8b8a6d5283 --- /dev/null +++ b/applications/luci-app-pagekitec/po/fi/pagekitec.po @@ -0,0 +1,75 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-24 17:42+0000\n" +"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" +"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/fi/>\n" +"Language: fi\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 4.2-dev\n" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 +msgid "" +"<p/>Note: you need a working PageKite account, or at least, your own running " +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "Basic HTTP" +msgstr "Perus HTTP" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Basic SSH" +msgstr "Perus SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "Perus WebSockets" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Määritys" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "WebSockets-tunnelin ottaminen käyttöön tietyssä paikallisessa portissa" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" +msgstr "" +"Käytä tunnelia paikalliseen HTTP-palvelimeen (useimmissa tapauksissa tämä " +"hallintaliittymä)" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Enable a tunnel to the local SSH server" +msgstr "Käytä tunnelia paikalliseen SSH-palvelimeen" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 +msgid "Kite Name" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 +msgid "Kite Secret" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 +msgid "PageKite" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 +msgid "" +"Static setup, disable FE failover and DDNS updates, set this if you are " +"running your own frontend without a pagekite.me account" +msgstr "" diff --git a/applications/luci-app-pagekitec/po/fr/pagekitec.po b/applications/luci-app-pagekitec/po/fr/pagekitec.po index 4cb0779c47..80ce9d1b9f 100644 --- a/applications/luci-app-pagekitec/po/fr/pagekitec.po +++ b/applications/luci-app-pagekitec/po/fr/pagekitec.po @@ -1,55 +1,106 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-04-28 13:41+0000\n" +"Last-Translator: viking76 <liaudetgael@gmail.com>\n" +"Language-Team: French <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/fr/>\n" "Language: fr\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 4.0.2\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" +"<p/>Note : vous devez disposer d'un compte PageKite fonctionnel ou, du " +"moins, de votre propre interface de gestion pour que ce formulaire " +"fonctionne. Visitez <a href=\"https://pagekite.net/home/\">votre compte</a> " +"pour donner un nom à votre routeur et obtenir une clé secrète pour la " +"connexion. <p/><em>Note : ce configurateur web ne prend en charge que " +"quelques utilisations très basiques de pagekite.</em>" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" -msgstr "" +msgstr "HTTP de base" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" -msgstr "" +msgstr "SSH de base" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "WebSockets de Base" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configuration" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "Activer à un WebSockets tunnel sur un port local" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" +"Activer un tunnel vers le serveur HTTP local (dans la plupart des cas, ce " +"site d'administration)" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" -msgstr "" +msgstr "Activer un tunnel vers le serveur SSH local" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" -msgstr "" +msgstr "Nom Kite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" -msgstr "" +msgstr "Secret Kite" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" -msgstr "" +msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "Configuration statique" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" msgstr "" +"Configuration statique, désactive le basculement FE et des mises à jour " +"DDNS, à définir si vous utilisez votre propre frontal sans compte pagekite.me" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>Note : vous devez disposer d'un compte PageKite fonctionnel ou, du " +#~ "moins, de votre propre interface de gestion pour que ce formulaire " +#~ "fonctionne. Visitez <a href=\"https://pagekite.net/home/\">votre compte</" +#~ "a> pour donner un nom à votre routeur et obtenir une clé secrète pour la " +#~ "connexion. <p/><em>Note : ce configurateur web ne prend en charge que " +#~ "quelques utilisations très basiques de pagekite.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Activer un tunnel vers le serveur HTTP local (dans la plupart des cas, ce " +#~ "site d'administration)" + +#~ msgid "Static Setup" +#~ msgstr "Configuration statique" diff --git a/applications/luci-app-pagekitec/po/he/pagekitec.po b/applications/luci-app-pagekitec/po/he/pagekitec.po index bc66ade41c..6061553971 100644 --- a/applications/luci-app-pagekitec/po/he/pagekitec.po +++ b/applications/luci-app-pagekitec/po/he/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/hi/pagekitec.po b/applications/luci-app-pagekitec/po/hi/pagekitec.po index aa1ad01c0e..9db4136d88 100644 --- a/applications/luci-app-pagekitec/po/hi/pagekitec.po +++ b/applications/luci-app-pagekitec/po/hi/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/hu/pagekitec.po b/applications/luci-app-pagekitec/po/hu/pagekitec.po index bf44c58bf2..6f1b814311 100644 --- a/applications/luci-app-pagekitec/po/hu/pagekitec.po +++ b/applications/luci-app-pagekitec/po/hu/pagekitec.po @@ -1,55 +1,99 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-31 13:27+0000\n" +"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n" +"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/hu/>\n" "Language: hu\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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" -msgstr "" +msgstr "Alap HTTP" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" +msgstr "Alap SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Beállítás" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" -msgstr "" +msgstr "Alagút engedélyezése a helyi SSH kiszolgálóhoz" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" -msgstr "" +msgstr "Kite név" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" -msgstr "" +msgstr "Kite titok" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" -msgstr "" +msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" msgstr "" +"Statikus beállítás, az FE feladatátvétel és a DDNS frissítések letiltása. " +"Akkor állítsa be ezt, ha a saját előtétprogramját futtatja egy pagekite.me " +"fiók nélkül" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>Megjegyzés: egy működő PageKite-fiókra van szüksége, vagy legalább a " +#~ "saját futtatású előtétprogramra, ahhoz hogy ez az űrlap működjön. " +#~ "Látogassa meg a <a href=\"https://pagekite.net/home/\">saját fiókját</a> " +#~ "az útválasztó nevének beállításához és a kapcsolat titkos kulcsának " +#~ "lekéréséhez. <p/><em>Megjegyzés: ez a webes beállító a pagekite csak " +#~ "néhány nagyon alapszintű használatát támogatja.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Alagút engedélyezése a helyi HTTP kiszolgálóhoz (a legtöbb esetben ez " +#~ "adminisztrátori oldal)" + +#~ msgid "Static Setup" +#~ msgstr "Statikus beállítás" diff --git a/applications/luci-app-pagekitec/po/it/pagekitec.po b/applications/luci-app-pagekitec/po/it/pagekitec.po index 00a94f9b2a..84c90f2d89 100644 --- a/applications/luci-app-pagekitec/po/it/pagekitec.po +++ b/applications/luci-app-pagekitec/po/it/pagekitec.po @@ -1,54 +1,72 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-03 13:35+0000\n" +"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n" +"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/it/>\n" "Language: it\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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configurazione" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/ja/pagekitec.po b/applications/luci-app-pagekitec/po/ja/pagekitec.po index 996342cae4..c30da16c8f 100644 --- a/applications/luci-app-pagekitec/po/ja/pagekitec.po +++ b/applications/luci-app-pagekitec/po/ja/pagekitec.po @@ -1,67 +1,75 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Language-Team: \n" +"PO-Revision-Date: 2020-06-13 22:13+0000\n" +"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" +"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/ja/>\n" +"Language: ja\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.7\n" -"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Plural-Forms: nplurals=1; plural=0;\n" -"Language: ja\n" +"X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -"<p/>注意: 動作には PageKite アカウント、もしくは少なくともこのフォーム用の実" -"行中のフロントエンドが必要です。ルーター用の名前をセットアップするには<a " -"href=\"https://pagekite.net/home/\">アカウント</a>へアクセスし、接続用のシー" -"クレット キーを取得します。<p/><em>注意: この Web 設定は、PageKite の非常に簡" -"易な使用のみサポートしています。</em>" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "ベーシック HTTP" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "ベーシック SSH" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "設定" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" -msgstr "ローカル HTTP サーバーへのトンネルを有効化(通常、この管理サイト)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" +msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "ローカル SSH サーバーへのトンネルを有効化" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "Kite 名" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "Kite シークレット" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "静的セットアップ" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" @@ -69,3 +77,23 @@ msgstr "" "静的セットアップは、 FE フェイルオーバーと DDNS アップデートを無効にします。" "もし pagekite.me アカウント無しにフロントエンドを実行している場合、これを設定" "します。" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>注意: 動作には PageKite アカウント、もしくは少なくともこのフォーム用の" +#~ "実行中のフロントエンドが必要です。ルーター用の名前をセットアップするには" +#~ "<a href=\"https://pagekite.net/home/\">アカウント</a>へアクセスし、接続用" +#~ "のシークレット キーを取得します。<p/><em>注意: この Web 設定は、PageKite " +#~ "の非常に簡易な使用のみサポートしています。</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "ローカル HTTP サーバーへのトンネルを有効化(通常、この管理サイト)" + +#~ msgid "Static Setup" +#~ msgstr "静的セットアップ" diff --git a/applications/luci-app-pagekitec/po/ko/pagekitec.po b/applications/luci-app-pagekitec/po/ko/pagekitec.po index 0e0434227f..095073a119 100644 --- a/applications/luci-app-pagekitec/po/ko/pagekitec.po +++ b/applications/luci-app-pagekitec/po/ko/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/mr/pagekitec.po b/applications/luci-app-pagekitec/po/mr/pagekitec.po index f8304f3fd9..bbf5cbd286 100644 --- a/applications/luci-app-pagekitec/po/mr/pagekitec.po +++ b/applications/luci-app-pagekitec/po/mr/pagekitec.po @@ -1,55 +1,83 @@ msgid "" msgstr "" +"PO-Revision-Date: 2019-12-16 23:26+0000\n" +"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" +"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/mr/>\n" "Language: mr\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-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" -msgstr "" +msgstr "मूलभूत HTTP" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" +msgstr "मूलभूत SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" -msgstr "" +msgstr "स्थानिक SSH सर्व्हरसाठी बोगदा सक्षम करा" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" -msgstr "" +msgstr "पतंग नाव" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" -msgstr "" +msgstr "पतंग रहस्य" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" -msgstr "" +msgstr "पेजकाइट" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" msgstr "" +"स्टॅटिक सेटअप, एफई फेलओव्हर आणि डीडीएनएस अद्यतने अक्षम करा, जर आपण pagekite.me " +"खात्याशिवाय स्वतःचा फ्रंटएंड चालवत असाल तर हे सेट करा" + +#, fuzzy +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "सक्षम एक बोगदा स्थानिक HTTP सर्व्हर (बहुतांश घटनांमध्ये, हे प्रशासन साइट)" + +#~ msgid "Static Setup" +#~ msgstr "स्टॅटिक सेटअप" diff --git a/applications/luci-app-pagekitec/po/ms/pagekitec.po b/applications/luci-app-pagekitec/po/ms/pagekitec.po index bff4b5ad50..18238ea229 100644 --- a/applications/luci-app-pagekitec/po/ms/pagekitec.po +++ b/applications/luci-app-pagekitec/po/ms/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/nb_NO/pagekitec.po b/applications/luci-app-pagekitec/po/nb_NO/pagekitec.po index 2ce0d2d1fc..7a5f486726 100644 --- a/applications/luci-app-pagekitec/po/nb_NO/pagekitec.po +++ b/applications/luci-app-pagekitec/po/nb_NO/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/pl/pagekitec.po b/applications/luci-app-pagekitec/po/pl/pagekitec.po index 0ab0889ab3..d362263832 100644 --- a/applications/luci-app-pagekitec/po/pl/pagekitec.po +++ b/applications/luci-app-pagekitec/po/pl/pagekitec.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-06 00:14+0000\n" -"Last-Translator: Michal L <michalrmsmi@wp.pl>\n" +"PO-Revision-Date: 2020-03-01 19:53+0000\n" +"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationspagekitec/pl/>\n" "Language: pl\n" @@ -9,66 +9,100 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -"<p/>Uwaga: do działania tego formularza potrzebujesz działającego konta " -"PageKite lub przynajmniej, własnego działającego interfejsu użytkownika. " -"Odwiedź <a href=\"https://pagekite.net/home/\">swoje konto</a>, aby " -"skonfigurować nazwę routera i uzyskać tajny klucz do połączenia.<p/" -"><em>Uwaga: ten konfigurator internetowy obsługuje tylko niektóre bardzo " -"podstawowe zastosowania pagekite.</em>" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +"<p/> Uwaga: aby ten formularz działał, potrzebujesz działającego konta " +"PageKite lub przynajmniej własnego działającego interfejsu użytkownika. " +"Odwiedź <a href='https://pagekite.net/home/'> swoje konto </a>, aby " +"skonfigurować nazwę routera i uzyskać tajny klucz do połączenia. <p/> <em> " +"Uwaga: ten konfigurator internetowy obsługuje tylko niektóre bardzo " +"podstawowe zastosowania pagekite. </em>" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "Podstawowy HTTP" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "Podstawowy SSH" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "Podstawowy WebSockets" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Konfiguracja" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "Włącz tunel WebSockets na danym porcie lokalnym" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -"Włącz tunel do lokalnego serwera HTTP (w większości przypadków tej witryny " -"administracyjnej)" +"Włącz tunel do lokalnego serwera HTTP (w większości przypadków to interfejs " +"administratora)" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "Włącz tunel do lokalnego serwera SSH" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "Nazwa Kite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" -msgstr "" +msgstr "Kite sekret" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "Ustawienia statyczne" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "Konfiguracja statyczna" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 -#, fuzzy +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" msgstr "" "Ustawienia statyczne, wyłącz tryb failover FE i aktualizacje DDNS, ustaw tę " -"opcję, jeśli korzystasz z własnego interfejsu użytkownika bez konta " -"pagekite.me" +"opcję, jeśli korzystasz z własnego interfejsu użytkownika bez konta pagekite." +"me" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>Uwaga: do działania tego formularza potrzebujesz działającego konta " +#~ "PageKite lub przynajmniej, własnego działającego interfejsu użytkownika. " +#~ "Odwiedź <a href=\"https://pagekite.net/home/\">swoje konto</a>, aby " +#~ "skonfigurować nazwę routera i uzyskać tajny klucz do połączenia.<p/" +#~ "><em>Uwaga: ten konfigurator internetowy obsługuje tylko niektóre bardzo " +#~ "podstawowe zastosowania pagekite.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Włącz tunel do lokalnego serwera HTTP (w większości przypadków tej " +#~ "witryny administracyjnej)" + +#~ msgid "Static Setup" +#~ msgstr "Ustawienia statyczne" diff --git a/applications/luci-app-pagekitec/po/pt/pagekitec.po b/applications/luci-app-pagekitec/po/pt/pagekitec.po index 30c612eed6..8c2db04bea 100644 --- a/applications/luci-app-pagekitec/po/pt/pagekitec.po +++ b/applications/luci-app-pagekitec/po/pt/pagekitec.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-30 21:06+0000\n" +"PO-Revision-Date: 2020-03-03 13:35+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationspagekitec/pt/>\n" @@ -8,61 +8,72 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -"<p/>Note: precisa de uma conta PageKite funcional, ou pelo menos, o seu " -"próprio front end em execução para que este formulário funcione. Visite <a " -"href=\"https://pagekite.net/home/\">a sua conta</a> para configurar um nome " -"para o seu roteador e obter uma chave secreta para a conexão. <p/><em>Nota: " -"este configurador web suporta apenas alguns usos muito básicos do " -"pagekite.</em>" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +"<p/>Nota: precisa de uma conta PageKite funcional, ou pelo menos, da sua " +"própria conta para que este formulário funcione. Visite <a href='https://" +"pagekite.net/home/'>sua conta</a> para configurar um nome para o seu " +"roteador e obter uma chave secreta para a ligação.<p/><em>Note: este " +"configurador web suporta apenas alguns usos muito básicos de pagekite.</em>" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "HTTP básico" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "SSH básico" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "WebSockets Básico" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "Ativar um túnel WebSockets numa determinada porta local" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -"Ativar um túnel para o servidor HTTP local (na maioria dos casos, este site " -"de administração)" +"Ativar um túnel no servidor HTTP local (esta é a interface de administração " +"na maioria dos casos)" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "Ativar um túnel para o servidor SSH local" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "Nome do Kite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "Segredo Kite" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "Configuração Estática" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "Configuração estática" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" @@ -70,3 +81,26 @@ msgstr "" "Configuração estática, desativar o failover de FE e atualizações de DDNS, " "defina isto se estiver a executar o seu próprio frontend sem uma conta " "pagekite.me" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>Note: precisa de uma conta PageKite funcional, ou pelo menos, o seu " +#~ "próprio front end em execução para que este formulário funcione. Visite " +#~ "<a href=\"https://pagekite.net/home/\">a sua conta</a> para configurar um " +#~ "nome para o seu roteador e obter uma chave secreta para a conexão. <p/" +#~ "><em>Nota: este configurador web suporta apenas alguns usos muito básicos " +#~ "do pagekite.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Ativar um túnel para o servidor HTTP local (na maioria dos casos, este " +#~ "site de administração)" + +#~ msgid "Static Setup" +#~ msgstr "Configuração Estática" diff --git a/applications/luci-app-pagekitec/po/pt_BR/pagekitec.po b/applications/luci-app-pagekitec/po/pt_BR/pagekitec.po index a59647cb21..2cad409fa9 100644 --- a/applications/luci-app-pagekitec/po/pt_BR/pagekitec.po +++ b/applications/luci-app-pagekitec/po/pt_BR/pagekitec.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-04 12:07+0000\n" +"PO-Revision-Date: 2020-05-22 12:40+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationspagekitec/pt_BR/>\n" @@ -8,61 +8,73 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -"<p/>Note: você precisa de uma conta ativa na PageKite ou pelo menos a sua " -"própria interface primária para que este formulário funcione. Visite <a href=" -"\"https://pagekite.net/home/\">sua conta</a> para configurar um nome para o " -"seu roteador e obter uma chave secreta para a conexão. <p/><em>>Note: este " -"configurador web é compatível apenas com algumas funções muito básicas do " +"<p/>Nota: você precisa de uma conta ativa no PageKite, ou pelo menos um " +"front end próprio e funcional para que este formulário funcione. Visite a <a " +"href='https://pagekite.net/home/'>sua conta</a> para configurar um nome para " +"o seu roteador e para obter uma chave secreta para a conexão.<p/><em>Note: " +"este configurador web é compatível apenas com algumas funções básicas do " "pagekite.</em>" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "HTTP básico" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "SSH básico" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "WebSockets Básico" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "Ativar um túnel WebSockets em uma porta específica" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -"Ativar um túnel para o servidor HTTP local (na maioria dos casos, este site " -"de administração)" +"Ativar um túnel no servidor HTTP local (esta é a interface de administração " +"na maioria dos casos)" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "Ativar um túnel para o servidor SSH local" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "Nome Kite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" -msgstr "Kite Secret" +msgstr "Segredo Kite" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "Configuração estática" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" @@ -70,3 +82,26 @@ msgstr "" "Configuração estática, desativar falhas de FE e atualizações de DDNS, defina " "isso caso você esteja executando o seu próprio frontend sem uma conta " "pagekite.me" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>Note: você precisa de uma conta ativa na PageKite ou pelo menos a sua " +#~ "própria interface primária para que este formulário funcione. Visite <a " +#~ "href=\"https://pagekite.net/home/\">sua conta</a> para configurar um nome " +#~ "para o seu roteador e obter uma chave secreta para a conexão. <p/" +#~ "><em>>Note: este configurador web é compatível apenas com algumas funções " +#~ "muito básicas do pagekite.</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "" +#~ "Ativar um túnel para o servidor HTTP local (na maioria dos casos, este " +#~ "site de administração)" + +#~ msgid "Static Setup" +#~ msgstr "Configuração estática" diff --git a/applications/luci-app-pagekitec/po/ro/pagekitec.po b/applications/luci-app-pagekitec/po/ro/pagekitec.po index 99905deed0..e487794ca6 100644 --- a/applications/luci-app-pagekitec/po/ro/pagekitec.po +++ b/applications/luci-app-pagekitec/po/ro/pagekitec.po @@ -1,54 +1,73 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-29 21:22+0000\n" +"Last-Translator: Cristian Ionescu <joker_op@yahoo.com>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/ro/>\n" "Language: ro\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Configurare" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/ru/pagekitec.po b/applications/luci-app-pagekitec/po/ru/pagekitec.po index ce0634481e..813f95fbbd 100644 --- a/applications/luci-app-pagekitec/po/ru/pagekitec.po +++ b/applications/luci-app-pagekitec/po/ru/pagekitec.po @@ -1,54 +1,75 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-06-07 13:45+0000\n" +"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/ru/>\n" "Language: ru\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 4.1-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" -msgstr "" +msgstr "Базовый HTTP" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" -msgstr "" +msgstr "Базовый SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "Основные WebSockets" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Конфигурация" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "Включите туннель WebSockets на заданном локальном порту" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" +"Включите туннель на локальном HTTP-сервере (в большинстве случаев это " +"интерфейс администратора)" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" -msgstr "" +msgstr "Включите туннель на локальном сервере SSH" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" -msgstr "" +msgstr "Название Kite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" -msgstr "" +msgstr "PageKite" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "Статическая конфигурация" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/sk/pagekitec.po b/applications/luci-app-pagekitec/po/sk/pagekitec.po index f459dd7422..69b640015c 100644 --- a/applications/luci-app-pagekitec/po/sk/pagekitec.po +++ b/applications/luci-app-pagekitec/po/sk/pagekitec.po @@ -1,54 +1,72 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-04-04 17:35+0000\n" +"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/sk/>\n" "Language: sk\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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Konfigurácia" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/sv/pagekitec.po b/applications/luci-app-pagekitec/po/sv/pagekitec.po index b32040518c..2a508e6be1 100644 --- a/applications/luci-app-pagekitec/po/sv/pagekitec.po +++ b/applications/luci-app-pagekitec/po/sv/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/templates/pagekitec.pot b/applications/luci-app-pagekitec/po/templates/pagekitec.pot index d8b6594c51..4033d7c905 100644 --- a/applications/luci-app-pagekitec/po/templates/pagekitec.pot +++ b/applications/luci-app-pagekitec/po/templates/pagekitec.pot @@ -1,51 +1,63 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/tr/pagekitec.po b/applications/luci-app-pagekitec/po/tr/pagekitec.po index 8515f70033..f37eec3ec5 100644 --- a/applications/luci-app-pagekitec/po/tr/pagekitec.po +++ b/applications/luci-app-pagekitec/po/tr/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/uk/pagekitec.po b/applications/luci-app-pagekitec/po/uk/pagekitec.po index ec17f4ee1d..5d0cd55301 100644 --- a/applications/luci-app-pagekitec/po/uk/pagekitec.po +++ b/applications/luci-app-pagekitec/po/uk/pagekitec.po @@ -1,54 +1,73 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-03-11 01:51+0000\n" +"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationspagekitec/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 4.0-dev\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" -msgstr "" +msgstr "Базовий HTTP" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" +msgstr "Базовий SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "Конфігурація" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/vi/pagekitec.po b/applications/luci-app-pagekitec/po/vi/pagekitec.po index f8ad41c421..621f5bb432 100644 --- a/applications/luci-app-pagekitec/po/vi/pagekitec.po +++ b/applications/luci-app-pagekitec/po/vi/pagekitec.po @@ -4,51 +4,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 msgid "" "<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "Basic HTTP" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Basic SSH" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 msgid "Enable a tunnel to the local SSH server" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 msgid "Kite Name" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 msgid "Kite Secret" msgstr "" -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 msgid "PageKite" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" msgstr "" -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 msgid "" "Static setup, disable FE failover and DDNS updates, set this if you are " "running your own frontend without a pagekite.me account" diff --git a/applications/luci-app-pagekitec/po/zh-cn/pagekitec.po b/applications/luci-app-pagekitec/po/zh-cn/pagekitec.po deleted file mode 100644 index 701ff1a85a..0000000000 --- a/applications/luci-app-pagekitec/po/zh-cn/pagekitec.po +++ /dev/null @@ -1,68 +0,0 @@ -# -# Yangfl <mmyangfl@gmail.com>, 2018. -# -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" -"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-07 20:08+0800\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 -msgid "" -"<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" -msgstr "" -"<p/>注意:您需要一个有效的 PageKite 帐户,或者至少需要一个自己的运行前端才能" -"使用此表单。访问<a href=\"https://pagekite.net/home/\">您的帐户</a>,为路由器" -"设置名称,并获取连接的密钥。<p /><em>注意:此 Web 配置程序仅支持一些非常基本" -"的 pagekite 用途。</em>" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 -msgid "Basic HTTP" -msgstr "基本 HTTP" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 -msgid "Basic SSH" -msgstr "基本 SSH" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 -msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" -msgstr "启用到本地 HTTP 服务器的隧道(大多数情况下为此管理站点)" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 -msgid "Enable a tunnel to the local SSH server" -msgstr "启用到本地 SSH 服务器的隧道" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 -msgid "Kite Name" -msgstr "Kite 名称" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 -msgid "Kite Secret" -msgstr "Kite 密码" - -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 -msgid "PageKite" -msgstr "PageKite" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "静态设置" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 -msgid "" -"Static setup, disable FE failover and DDNS updates, set this if you are " -"running your own frontend without a pagekite.me account" -msgstr "" -"静态设置,禁用 FE 故障转移和 DDNS 更新,如果您没有 pagekite.me 帐户而运行自己" -"的前端,请设置此项" diff --git a/applications/luci-app-pagekitec/po/zh-tw/pagekitec.po b/applications/luci-app-pagekitec/po/zh-tw/pagekitec.po deleted file mode 100644 index 5fa0d6be17..0000000000 --- a/applications/luci-app-pagekitec/po/zh-tw/pagekitec.po +++ /dev/null @@ -1,68 +0,0 @@ -# -# Yangfl <mmyangfl@gmail.com>, 2018. -# -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" -"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-07 20:08+0800\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 -msgid "" -"<p/>Note: you need a working PageKite account, or at least, your own running " -"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" -"\">your account</a> to set up a name for your router and get a secret key " -"for the connection. <p/><em>Note: this web configurator only supports some " -"very very basic uses of pagekite.</em>" -msgstr "" -"<p/>注意:您需要一個有效的 PageKite 帳戶,或者至少需要一個自己的執行前端才能" -"使用此表單。訪問<a href=\"https://pagekite.net/home/\">您的帳戶</a>,為路由器" -"設定名稱,並獲取連線的金鑰。<p /><em>注意:此 Web 配置程式僅支援一些非常基本" -"的 pagekite 用途。</em>" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 -msgid "Basic HTTP" -msgstr "基本 HTTP" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 -msgid "Basic SSH" -msgstr "基本 SSH" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 -msgid "" -"Enable a tunnel to the local HTTP server (in most cases, this admin site)" -msgstr "啟用到本地 HTTP 伺服器的隧道(大多數情況下為此管理站點)" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 -msgid "Enable a tunnel to the local SSH server" -msgstr "啟用到本地 SSH 伺服器的隧道" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 -msgid "Kite Name" -msgstr "Kite 名稱" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 -msgid "Kite Secret" -msgstr "Kite 密碼" - -#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 -msgid "PageKite" -msgstr "PageKite" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 -msgid "Static Setup" -msgstr "靜態設定" - -#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 -msgid "" -"Static setup, disable FE failover and DDNS updates, set this if you are " -"running your own frontend without a pagekite.me account" -msgstr "" -"靜態設定,禁用 FE 故障轉移和 DDNS 更新,如果您沒有 pagekite.me 帳戶而執行自己" -"的前端,請設定此項" diff --git a/applications/luci-app-pagekitec/po/zh_Hans/pagekitec.po b/applications/luci-app-pagekitec/po/zh_Hans/pagekitec.po new file mode 100644 index 0000000000..3d15fe81cd --- /dev/null +++ b/applications/luci-app-pagekitec/po/zh_Hans/pagekitec.po @@ -0,0 +1,97 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2018. +# +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-10 12:47+0000\n" +"Last-Translator: gw826943555 <gw826943555@qq.com>\n" +"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationspagekitec/zh_Hans/>\n" +"Language: zh_Hans\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.1-dev\n" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 +msgid "" +"<p/>Note: you need a working PageKite account, or at least, your own running " +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "Basic HTTP" +msgstr "基本 HTTP" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Basic SSH" +msgstr "基本 SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "配置" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Enable a tunnel to the local SSH server" +msgstr "启用到本地 SSH 服务器的隧道" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 +msgid "Kite Name" +msgstr "Kite 名称" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 +msgid "Kite Secret" +msgstr "Kite 密码" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 +msgid "PageKite" +msgstr "PageKite" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 +msgid "" +"Static setup, disable FE failover and DDNS updates, set this if you are " +"running your own frontend without a pagekite.me account" +msgstr "" +"静态设置,禁用 FE 故障转移和 DDNS 更新,如果您没有 pagekite.me 帐户而运行自己" +"的前端,请设置此项" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>注意:您需要一个有效的 PageKite 帐户,或者至少需要一个自己的运行前端才" +#~ "能使用此表单。访问<a href=\"https://pagekite.net/home/\">您的帐户</a>,为" +#~ "路由器设置名称,并获取连接的密钥。<p /><em>注意:此 Web 配置程序仅支持一些" +#~ "非常基本的 pagekite 用途。</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "启用到本地 HTTP 服务器的隧道(大多数情况下为此管理站点)" + +#~ msgid "Static Setup" +#~ msgstr "静态设置" diff --git a/applications/luci-app-pagekitec/po/zh_Hant/pagekitec.po b/applications/luci-app-pagekitec/po/zh_Hant/pagekitec.po new file mode 100644 index 0000000000..4ae7768f1a --- /dev/null +++ b/applications/luci-app-pagekitec/po/zh_Hant/pagekitec.po @@ -0,0 +1,97 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2018. +# +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-28 19:19+0000\n" +"Last-Translator: Hulen <shift0106@gmail.com>\n" +"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationspagekitec/zh_Hant/>\n" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.2-dev\n" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:5 +msgid "" +"<p/>Note: you need a working PageKite account, or at least, your own running " +"front end for this form to work. Visit <a href='https://pagekite.net/" +"home/'>your account</a> to set up a name for your router and get a secret " +"key for the connection.<p/><em>Note: this web configurator only supports " +"some very very basic uses of pagekite.</em>" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "Basic HTTP" +msgstr "基本 HTTP" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Basic SSH" +msgstr "基本 SSH" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Basic WebSockets" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:19 +msgid "Configuration" +msgstr "設定" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:31 +msgid "Enable a WebSockets tunnel on a given local port" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:29 +msgid "" +"Enable a tunnel to the local HTTP server (in most cases, this admin " +"interface)" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:30 +msgid "Enable a tunnel to the local SSH server" +msgstr "啟用到本地 SSH 伺服器的隧道" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:22 +msgid "Kite Name" +msgstr "Kite 名稱" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:23 +msgid "Kite Secret" +msgstr "Kite 密碼" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:17 +#: applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json:3 +msgid "PageKite" +msgstr "PageKite" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:26 +msgid "Static setup" +msgstr "" + +#: applications/luci-app-pagekitec/htdocs/luci-static/resources/view/pagekitec.js:27 +msgid "" +"Static setup, disable FE failover and DDNS updates, set this if you are " +"running your own frontend without a pagekite.me account" +msgstr "" +"靜態設定,禁用 FE 故障轉移和 DDNS 更新,如果您沒有 pagekite.me 帳戶而執行自己" +"的前端,請設定此項" + +#~ msgid "" +#~ "<p/>Note: you need a working PageKite account, or at least, your own " +#~ "running front end for this form to work. Visit <a href=\"https://pagekite." +#~ "net/home/\">your account</a> to set up a name for your router and get a " +#~ "secret key for the connection. <p/><em>Note: this web configurator only " +#~ "supports some very very basic uses of pagekite.</em>" +#~ msgstr "" +#~ "<p/>注意:您需要一個有效的 PageKite 帳戶,或者至少需要一個自己的執行前端才" +#~ "能使用此表單。訪問<a href=\"https://pagekite.net/home/\">您的帳戶</a>,為" +#~ "路由器設定名稱,並獲取連線的金鑰。<p /><em>注意:此 Web 配置程式僅支援一些" +#~ "非常基本的 pagekite 用途。</em>" + +#~ msgid "" +#~ "Enable a tunnel to the local HTTP server (in most cases, this admin site)" +#~ msgstr "啟用到本地 HTTP 伺服器的隧道(大多數情況下為此管理站點)" + +#~ msgid "Static Setup" +#~ msgstr "靜態設定" diff --git a/applications/luci-app-pagekitec/root/etc/uci-defaults/40_luci-pagekitec b/applications/luci-app-pagekitec/root/etc/uci-defaults/40_luci-pagekitec deleted file mode 100755 index 95d7e9ec8f..0000000000 --- a/applications/luci-app-pagekitec/root/etc/uci-defaults/40_luci-pagekitec +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -uci -q batch <<-EOF >/dev/null - delete ucitrack.@pagekitec[-1] - add ucitrack pagekitec - set ucitrack.@pagekitec[-1].init=pagekitec - commit ucitrack -EOF - -rm -f /tmp/luci-indexcache -exit 0 diff --git a/applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json b/applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json new file mode 100644 index 0000000000..fbbda3a268 --- /dev/null +++ b/applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json @@ -0,0 +1,9 @@ +{ + "admin/services/pagekitec": { + "title": "PageKite", + "action": { + "type": "view", + "path": "pagekitec" + } + } +} |