diff --git a/luci-app-v2raya/Makefile b/luci-app-v2raya/Makefile index 7b75273..d9d6f70 100644 --- a/luci-app-v2raya/Makefile +++ b/luci-app-v2raya/Makefile @@ -1,16 +1,17 @@ -# SPDX-License-Identifier: GPL-3.0-only +# SPDX-License-Identifier: Apache-2.0 # -# Copyright (C) 2022 ImmortalWrt.org +# Copyright (C) 2024 ImmortalWrt.org include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI support for v2rayA LUCI_DEPENDS:=+v2raya -LUCI_PKGARCH:=all -PKG_VERSION:=10 +PKG_VERSION:=11 PKG_PO_VERSION:=$(PKG_VERSION) +PKG_MAINTAINER:=Tianling Shen + include $(TOPDIR)/feeds/luci/luci.mk # call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js b/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js index 9cd682f..577d0ee 100644 --- a/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js +++ b/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js @@ -1,8 +1,3 @@ -/* SPDX-License-Identifier: GPL-3.0-only - * - * Copyright (C) 2022 ImmortalWrt.org - */ - 'use strict'; 'require form'; 'require poll'; @@ -66,41 +61,32 @@ return view.extend({ }); return E('div', { class: 'cbi-section', id: 'status_bar' }, [ - E('p', { id: 'service_status' }, _('Collecting data...')) + E('p', { id: 'service_status' }, _('Collecting data…')) ]); } s = m.section(form.NamedSection, 'config', 'v2raya'); o = s.option(form.Flag, 'enabled', _('Enable')); - o.default = o.disabled; o.rmempty = false; o = s.option(form.Value, 'address', _('Listening address')); o.datatype = 'ipaddrport(1)'; - o.default = '0.0.0.0:2017'; - o.rmempty = false; - - o = s.option(form.Value, 'config', _('Configuration directory')); - o.datatype = 'path'; - o.default = '/etc/v2raya'; - o.rmempty = false; + o.placeholder = '0.0.0.0:2017'; o = s.option(form.ListValue, 'ipv6_support', _('IPv6 support'), - _('Make sure your IPv6 network works fine before you turn it on.')); + _('Requires working IPv6 connectivity.')); o.value('auto', _('Auto')); o.value('on', _('On')); o.value('off', _('Off')); o.default = 'auto'; - o.rmempty = false; o = s.option(form.ListValue, 'nftables_support', _('Nftables support'), - _('Make sure you have installed nftables before you turn it on.')); + _('Requires nftables.')); o.value('auto', _('Auto')); o.value('on', _('On')); o.value('off', _('Off')); o.default = 'auto'; - o.rmempty = false; o = s.option(form.ListValue, 'log_level', _('Log level')); o.value('trace', _('Trace')); @@ -109,33 +95,15 @@ return view.extend({ o.value('warn', _('Warn')); o.value('error', _('Error')); o.default = 'info'; - o.rmempty = false; - - o = s.option(form.Value, 'log_file', _('Log file path')); - o.datatype = 'path'; - o.default = '/var/log/v2raya/v2raya.log'; - o.rmempty = false; - /* Due to ACL rule, this value must retain default otherwise log page will be broken */ - o.readonly = true; o = s.option(form.Value, 'log_max_days', _('Max log retention period'), - _('Maximum number of days to keep log files.')); + _('Unit: days.')); o.datatype = 'uinteger'; - o.default = '3'; + o.placeholder = '3'; o = s.option(form.Flag, 'log_disable_color', _('Disable log color output')); - o.default = o.disabled; o = s.option(form.Flag, 'log_disable_timestamp', _('Disable log timestamp')); - o.default = o.disabled; - - o = s.option(form.Value, 'v2ray_bin', _('v2ray binary path'), - _('Executable v2ray binary path. Auto-detect if put it empty (recommended).')); - o.datatype = 'path'; - - o = s.option(form.Value, 'v2ray_confdir', _('Extra config directory'), - _('Additional v2ray config directory, files in it will be combined with config generated by v2rayA.')); - o.datatype = 'path'; return m.render(); } diff --git a/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js b/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js index ceaab04..b614f3c 100644 --- a/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js +++ b/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js @@ -1,8 +1,3 @@ -/* SPDX-License-Identifier: GPL-3.0-only - * - * Copyright (C) 2022 ImmortalWrt.org - */ - 'use strict'; 'require dom'; 'require fs'; @@ -30,12 +25,12 @@ return view.extend({ var log_textarea = E('div', { 'id': 'log_textarea' }, E('img', { 'src': L.resource(['icons/loading.gif']), - 'alt': _('Loading...'), + 'alt': _('Loading…'), 'style': 'vertical-align:middle' - }, _('Collecting data...')) + }, _('Collecting data…')) ); - var log_path = uci.get('v2raya', 'config', 'log_file') || '/var/log/v2raya/v2raya.log'; + var log_path = '/var/log/v2raya/v2raya.log'; poll.add(L.bind(function() { return fs.read_direct(log_path, 'text') @@ -67,7 +62,7 @@ return view.extend({ E('div', {'class': 'cbi-section'}, [ log_textarea, E('div', {'style': 'text-align:right'}, - E('small', {}, _('Refresh every %s seconds.').format(L.env.pollinterval)) + E('small', {}, _('Refresh every %d seconds.').format(L.env.pollinterval)) ) ]) ]) diff --git a/luci-app-v2raya/po/ar/v2raya.po b/luci-app-v2raya/po/ar/v2raya.po new file mode 100644 index 0000000..9386374 --- /dev/null +++ b/luci-app-v2raya/po/ar/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/bg/v2raya.po b/luci-app-v2raya/po/bg/v2raya.po new file mode 100644 index 0000000..c9d4a61 --- /dev/null +++ b/luci-app-v2raya/po/bg/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/bn_BD/v2raya.po b/luci-app-v2raya/po/bn_BD/v2raya.po new file mode 100644 index 0000000..2f23257 --- /dev/null +++ b/luci-app-v2raya/po/bn_BD/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn_BD\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/ca/v2raya.po b/luci-app-v2raya/po/ca/v2raya.po new file mode 100644 index 0000000..92649f9 --- /dev/null +++ b/luci-app-v2raya/po/ca/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/cs/v2raya.po b/luci-app-v2raya/po/cs/v2raya.po new file mode 100644 index 0000000..2840cae --- /dev/null +++ b/luci-app-v2raya/po/cs/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/da/v2raya.po b/luci-app-v2raya/po/da/v2raya.po new file mode 100644 index 0000000..a4a4bf2 --- /dev/null +++ b/luci-app-v2raya/po/da/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/de/v2raya.po b/luci-app-v2raya/po/de/v2raya.po new file mode 100644 index 0000000..33fd497 --- /dev/null +++ b/luci-app-v2raya/po/de/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/el/v2raya.po b/luci-app-v2raya/po/el/v2raya.po new file mode 100644 index 0000000..933236b --- /dev/null +++ b/luci-app-v2raya/po/el/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/es/v2raya.po b/luci-app-v2raya/po/es/v2raya.po new file mode 100644 index 0000000..f5d4340 --- /dev/null +++ b/luci-app-v2raya/po/es/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/fi/v2raya.po b/luci-app-v2raya/po/fi/v2raya.po new file mode 100644 index 0000000..493b3eb --- /dev/null +++ b/luci-app-v2raya/po/fi/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/fr/v2raya.po b/luci-app-v2raya/po/fr/v2raya.po new file mode 100644 index 0000000..98cff15 --- /dev/null +++ b/luci-app-v2raya/po/fr/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/he/v2raya.po b/luci-app-v2raya/po/he/v2raya.po new file mode 100644 index 0000000..823d622 --- /dev/null +++ b/luci-app-v2raya/po/he/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/hi/v2raya.po b/luci-app-v2raya/po/hi/v2raya.po new file mode 100644 index 0000000..efbb674 --- /dev/null +++ b/luci-app-v2raya/po/hi/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/hu/v2raya.po b/luci-app-v2raya/po/hu/v2raya.po new file mode 100644 index 0000000..1ac4787 --- /dev/null +++ b/luci-app-v2raya/po/hu/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/it/v2raya.po b/luci-app-v2raya/po/it/v2raya.po new file mode 100644 index 0000000..6d9dd8d --- /dev/null +++ b/luci-app-v2raya/po/it/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/ja/v2raya.po b/luci-app-v2raya/po/ja/v2raya.po new file mode 100644 index 0000000..09f2cb5 --- /dev/null +++ b/luci-app-v2raya/po/ja/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/ko/v2raya.po b/luci-app-v2raya/po/ko/v2raya.po new file mode 100644 index 0000000..e0c9de0 --- /dev/null +++ b/luci-app-v2raya/po/ko/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/lt/v2raya.po b/luci-app-v2raya/po/lt/v2raya.po new file mode 100644 index 0000000..63fa3a1 --- /dev/null +++ b/luci-app-v2raya/po/lt/v2raya.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/mr/v2raya.po b/luci-app-v2raya/po/mr/v2raya.po new file mode 100644 index 0000000..26606fa --- /dev/null +++ b/luci-app-v2raya/po/mr/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/ms/v2raya.po b/luci-app-v2raya/po/ms/v2raya.po new file mode 100644 index 0000000..2c23d46 --- /dev/null +++ b/luci-app-v2raya/po/ms/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/nb_NO/v2raya.po b/luci-app-v2raya/po/nb_NO/v2raya.po new file mode 100644 index 0000000..3112232 --- /dev/null +++ b/luci-app-v2raya/po/nb_NO/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/nl/v2raya.po b/luci-app-v2raya/po/nl/v2raya.po new file mode 100644 index 0000000..e1dd40e --- /dev/null +++ b/luci-app-v2raya/po/nl/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/pl/v2raya.po b/luci-app-v2raya/po/pl/v2raya.po new file mode 100644 index 0000000..61e0dc9 --- /dev/null +++ b/luci-app-v2raya/po/pl/v2raya.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/pt/v2raya.po b/luci-app-v2raya/po/pt/v2raya.po new file mode 100644 index 0000000..9614c0b --- /dev/null +++ b/luci-app-v2raya/po/pt/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/pt_BR/v2raya.po b/luci-app-v2raya/po/pt_BR/v2raya.po new file mode 100644 index 0000000..d9dabfc --- /dev/null +++ b/luci-app-v2raya/po/pt_BR/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/ro/v2raya.po b/luci-app-v2raya/po/ro/v2raya.po new file mode 100644 index 0000000..4791b93 --- /dev/null +++ b/luci-app-v2raya/po/ro/v2raya.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\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" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/ru/v2raya.po b/luci-app-v2raya/po/ru/v2raya.po new file mode 100644 index 0000000..55253c5 --- /dev/null +++ b/luci-app-v2raya/po/ru/v2raya.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ru\n" +"MIME-Version: 1.0\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" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/sk/v2raya.po b/luci-app-v2raya/po/sk/v2raya.po new file mode 100644 index 0000000..d12b44f --- /dev/null +++ b/luci-app-v2raya/po/sk/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/sv/v2raya.po b/luci-app-v2raya/po/sv/v2raya.po new file mode 100644 index 0000000..d14f45b --- /dev/null +++ b/luci-app-v2raya/po/sv/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/templates/v2raya.pot b/luci-app-v2raya/po/templates/v2raya.pot index 8a4e77c..8e224db 100644 --- a/luci-app-v2raya/po/templates/v2raya.pot +++ b/luci-app-v2raya/po/templates/v2raya.pot @@ -1,169 +1,142 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:137 -msgid "" -"Additional v2ray config directory, files in it will be combined with config " -"generated by v2rayA." -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 msgid "Auto" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:69 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:35 -msgid "Collecting data..." +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" msgstr "" -#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:14 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 msgid "Configuration" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 -msgid "Configuration directory" -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:107 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 msgid "Debug" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:126 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 msgid "Disable log color output" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:129 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 msgid "Disable log timestamp" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:75 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 msgid "Enable" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:110 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 msgid "Error" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:133 -msgid "" -"Executable v2ray binary path. Auto-detect if put it empty (recommended)." -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:136 -msgid "Extra config directory" -msgstr "" - #: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 msgid "Grant access to v2rayA configuration" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:89 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 msgid "IPv6 support" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:108 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 msgid "Info" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 msgid "Listening address" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:33 -msgid "Loading..." +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" msgstr "" -#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:22 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 msgid "Log" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:53 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 msgid "Log file does not exist." msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:114 -msgid "Log file path" -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:44 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 msgid "Log is clean." msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:105 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 msgid "Log level" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:98 -msgid "Make sure you have installed nftables before you turn it on." -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:90 -msgid "Make sure your IPv6 network works fine before you turn it on." -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:121 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 msgid "Max log retention period" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:122 -msgid "Maximum number of days to keep log files." -msgstr "" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:38 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:97 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 msgid "Nftables support" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:101 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 msgid "Off" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 msgid "On" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:35 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 msgid "Open Web Interface" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:36 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 msgid "RUNNING" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:70 -msgid "Refresh every %s seconds." +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 msgid "Trace" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:57 -msgid "Unknown error: %s" +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:109 -msgid "Warn" +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:132 -msgid "v2ray binary path" +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:36 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:38 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:55 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 #: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 msgid "v2rayA" msgstr "" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:56 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 msgid "" "v2rayA is a V2Ray Linux client supporting global transparent proxy, " "compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." diff --git a/luci-app-v2raya/po/tr/v2raya.po b/luci-app-v2raya/po/tr/v2raya.po new file mode 100644 index 0000000..20222f9 --- /dev/null +++ b/luci-app-v2raya/po/tr/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/uk/v2raya.po b/luci-app-v2raya/po/uk/v2raya.po new file mode 100644 index 0000000..d07f9cc --- /dev/null +++ b/luci-app-v2raya/po/uk/v2raya.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\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" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/vi/v2raya.po b/luci-app-v2raya/po/vi/v2raya.po new file mode 100644 index 0000000..cb3029f --- /dev/null +++ b/luci-app-v2raya/po/vi/v2raya.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/po/zh_Hans/v2raya.po b/luci-app-v2raya/po/zh_Hans/v2raya.po index c7398d0..1825461 100644 --- a/luci-app-v2raya/po/zh_Hans/v2raya.po +++ b/luci-app-v2raya/po/zh_Hans/v2raya.po @@ -1,180 +1,152 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: luci-app-v 2raya\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" -"Language: zh-Hans\n" +"Language: zh_Hans\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:137 -msgid "" -"Additional v2ray config directory, files in it will be combined with config " -"generated by v2rayA." -msgstr "" -"附加 v2ray 配置目录,包含在其中的文件将被合并至 v2rayA 生成的配置文件中。" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 msgid "Auto" msgstr "自动" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:69 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:35 -msgid "Collecting data..." -msgstr "收集数据中..." +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "收集数据中…" -#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:14 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 msgid "Configuration" msgstr "配置" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 -msgid "Configuration directory" -msgstr "配置文件目录" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:107 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 msgid "Debug" msgstr "调试" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:126 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 msgid "Disable log color output" msgstr "禁用日志彩色输出" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:129 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 msgid "Disable log timestamp" msgstr "禁用日志时间戳" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:75 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 msgid "Enable" msgstr "启用" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:110 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 msgid "Error" msgstr "错误" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:133 -msgid "" -"Executable v2ray binary path. Auto-detect if put it empty (recommended)." -msgstr "v2ray 可执行二进制文件目录。留空以自动检测(推荐)。" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:136 -msgid "Extra config directory" -msgstr "附加配置目录" - #: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 msgid "Grant access to v2rayA configuration" msgstr "授予访问 v2rayA 配置的权限" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:89 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 msgid "IPv6 support" msgstr "IPv6 支持" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:108 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 msgid "Info" msgstr "信息" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 msgid "Listening address" msgstr "监听地址" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:33 -msgid "Loading..." -msgstr "加载中..." +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "加载中…" -#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:22 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 msgid "Log" msgstr "日志" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:53 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 msgid "Log file does not exist." msgstr "日志文件不存在。" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:114 -msgid "Log file path" -msgstr "日志文件路径" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:44 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 msgid "Log is clean." msgstr "日志为空。" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:105 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 msgid "Log level" msgstr "日志等级" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:98 -msgid "Make sure you have installed nftables before you turn it on." -msgstr "开启前,请确保您已安装 nftables." - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:90 -msgid "Make sure your IPv6 network works fine before you turn it on." -msgstr "开启前,请确保您的 IPv6 网络工作正常。" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:121 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 msgid "Max log retention period" msgstr "最长日志保留时间" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:122 -msgid "Maximum number of days to keep log files." -msgstr "保留日志文件的最长天数。" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:38 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 msgid "NOT RUNNING" -msgstr "未运行" +msgstr "未在运行" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:97 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 msgid "Nftables support" msgstr "Nftables 支持" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:101 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 msgid "Off" msgstr "关" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 msgid "On" msgstr "开" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:35 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 msgid "Open Web Interface" msgstr "打开 Web 界面" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:36 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 msgid "RUNNING" msgstr "运行中" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:70 -msgid "Refresh every %s seconds." -msgstr "每 %s 秒刷新。" +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "每 %d 秒刷新。" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "需要 nftables。" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "需要工作的 IPv6 连接。" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 msgid "Trace" msgstr "跟踪" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:57 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "单位:天。" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 msgid "Unknown error: %s" msgstr "未知错误:%s" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:109 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 msgid "Warn" msgstr "警告" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:132 -msgid "v2ray binary path" -msgstr "v2ray 二进制路径" - -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:36 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:38 -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:55 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 #: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 msgid "v2rayA" msgstr "v2rayA" -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:56 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 msgid "" "v2rayA is a V2Ray Linux client supporting global transparent proxy, " "compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." msgstr "" -"v2rayA 是一个易用而强大的,跨平台的 V2Ray 客户端,支持 SS、SSR、" -"Trojan(trojan-go)、PingTunnel 协议。" +"v2rayA 是一个易用而强大的,跨平台的 V2Ray 客户端,支持 SS、SSR、Trojan" +"(trojan-go)、PingTunnel 协议。" diff --git a/luci-app-v2raya/po/zh_Hant/v2raya.po b/luci-app-v2raya/po/zh_Hant/v2raya.po new file mode 100644 index 0000000..e7ccb95 --- /dev/null +++ b/luci-app-v2raya/po/zh_Hant/v2raya.po @@ -0,0 +1,150 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-v 2raya\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hant\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86 +msgid "Auto" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30 +msgid "Collecting data…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 +msgid "Debug" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 +msgid "Disable log color output" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106 +msgid "Disable log timestamp" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70 +msgid "Enable" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 +msgid "Error" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3 +msgid "Grant access to v2rayA configuration" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77 +msgid "IPv6 support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 +msgid "Info" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73 +msgid "Listening address" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28 +msgid "Loading…" +msgstr "" + +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39 +msgid "Log is clean." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91 +msgid "Log level" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99 +msgid "Max log retention period" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84 +msgid "Nftables support" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88 +msgid "Off" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 +msgid "On" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 +msgid "Refresh every %d seconds." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 +msgid "Requires nftables." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 +msgid "Requires working IPv6 connectivity." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 +msgid "Trace" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 +msgid "Unit: days." +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 +msgid "Warn" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33 +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50 +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 +msgid "v2rayA" +msgstr "" + +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51 +msgid "" +"v2rayA is a V2Ray Linux client supporting global transparent proxy, " +"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." +msgstr "" diff --git a/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json b/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json index c19548f..564bcef 100644 --- a/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json +++ b/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json @@ -1,7 +1,6 @@ { "admin/services/v2raya": { "title": "v2rayA", - "order": 90, "action": { "type": "firstchild" }, diff --git a/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json b/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json index cfb1410..173296e 100644 --- a/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json +++ b/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json @@ -3,7 +3,6 @@ "description": "Grant access to v2rayA configuration", "read": { "file": { - "/bin/mkdir -p /etc/v2raya/": [ "exec" ], "/var/log/v2raya/v2raya.log": [ "read" ] }, "ubus": { @@ -12,10 +11,6 @@ "uci": [ "v2raya" ] }, "write": { - "file": { - "/etc/v2raya/grpc_certificate.crt": [ "write" ], - "/etc/v2raya/grpc_private.key": [ "write" ] - }, "uci": [ "v2raya" ] } }