diff options
Diffstat (limited to 'applications/luci-app-vpnbypass')
43 files changed, 0 insertions, 4751 deletions
diff --git a/applications/luci-app-vpnbypass/Makefile b/applications/luci-app-vpnbypass/Makefile deleted file mode 100644 index 230963623c..0000000000 --- a/applications/luci-app-vpnbypass/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2017-2019 Stan Grishin (stangri@melmac.net) -# This is free software, licensed under the GNU General Public License v3. - -include $(TOPDIR)/rules.mk - -PKG_LICENSE:=GPL-3.0-or-later -PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net> - -LUCI_TITLE:=VPN Bypass Web UI -LUCI_DESCRIPTION:=Provides Web UI for VPNBypass service. -LUCI_DEPENDS:=+luci-compat +luci-mod-admin-full +vpnbypass -LUCI_PKGARCH:=all -PKG_RELEASE:=20 - -include ../../luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua b/applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua deleted file mode 100644 index 057aee787f..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua +++ /dev/null @@ -1,34 +0,0 @@ -module("luci.controller.vpnbypass", package.seeall) -function index() - if nixio.fs.access("/etc/config/vpnbypass") then - local e = entry({"admin", "vpn"}, firstchild(), _("VPN"), 60) - e.dependent = false - e.acl_depends = { "luci-app-vpnbypass" } - entry({"admin", "vpn", "vpnbypass"}, cbi("vpnbypass"), _("VPN Bypass")) - entry({"admin", "vpn", "vpnbypass", "action"}, call("vpnbypass_action"), nil).leaf = true - end -end - -function vpnbypass_action(name) - local packageName = "vpnbypass" - local http = require "luci.http" - local sys = require "luci.sys" - local uci = require "luci.model.uci".cursor() - local util = require "luci.util" - if name == "start" then - sys.init.start(packageName) - elseif name == "action" then - util.exec("/etc/init.d/" .. packageName .. " restart >/dev/null 2>&1") - util.exec("/etc/init.d/dnsmasq restart >/dev/null 2>&1") - elseif name == "stop" then - sys.init.stop(packageName) - elseif name == "enable" then - uci:set(packageName, "config", "enabled", "1") - uci:commit(packageName) - elseif name == "disable" then - uci:set(packageName, "config", "enabled", "0") - uci:commit(packageName) - end - http.prepare_content("text/plain") - http.write("0") -end diff --git a/applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua b/applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua deleted file mode 100644 index ed9599c90e..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua +++ /dev/null @@ -1,95 +0,0 @@ -local readmeURL = "https://github.com/openwrt/packages/blob/master/net/vpnbypass/files/README.md" -local uci = require "luci.model.uci".cursor() -local sys = require "luci.sys" -local util = require "luci.util" -local packageName = "vpnbypass" - -function getPackageVersion() - local opkgFile = "/usr/lib/opkg/status" - local line - local flag = false - for line in io.lines(opkgFile) do - if flag then - return line:match('[%d%.$-]+') or "" - elseif line:find("Package: " .. packageName:gsub("%-", "%%%-")) then - flag = true - end - end - return "" -end - -local packageVersion = getPackageVersion() -local statusText = nil -if packageVersion == "" then - statusText = translatef("%s is not installed or not found", packageName) -end - -local serviceRunning, serviceEnabled = false, false -if uci:get(packageName, "config", "enabled") == "1" then - serviceEnabled = true -end -if sys.call("iptables -t mangle -L | grep -q " .. packageName:upper()) == 0 then - serviceRunning = true -end - -if serviceRunning then - statusText = translate("Running") -else - statusText = translate("Stopped") - if not serviceEnabled then - statusText = translatef("%s (disabled)", statusText) - end -end - -m = Map("vpnbypass", translate("VPN Bypass Settings")) - -h = m:section(NamedSection, "config", packageName, translatef("Service Status [%s %s]", packageName, packageVersion)) -ss = h:option(DummyValue, "_dummy", translate("Service Status")) -ss.template = packageName .. "/status" -ss.value = statusText -if packageVersion ~= "" then - buttons = h:option(DummyValue, "_dummy") - buttons.template = packageName .. "/buttons" -end - -s = m:section(NamedSection, "config", "vpnbypass", translate("VPN Bypass Rules")) --- Local Ports -p1 = s:option(DynamicList, "localport", translate("Local Ports to Bypass"), translate("Local ports to trigger VPN Bypass")) -p1.datatype = "portrange" --- p1.placeholder = "0-65535" -p1.addremove = false -p1.optional = false - --- Remote Ports -p2 = s:option(DynamicList, "remoteport", translate("Remote Ports to Bypass"), translate("Remote ports to trigger VPN Bypass")) -p2.datatype = "portrange" --- p2.placeholder = "0-65535" -p2.addremove = false -p2.optional = false - --- Local Subnets -r1 = s:option(DynamicList, "localsubnet", translate("Local IP Addresses to Bypass"), translate("Local IP addresses or subnets with direct internet access (outside of the VPN tunnel)")) -r1.datatype = "ip4addr" --- r1.placeholder = ip.new(m.uci:get("network", "lan", "ipaddr"), m.uci:get("network", "lan", "netmask")) -r1.addremove = false -r1.optional = false - --- Remote Subnets -r2 = s:option(DynamicList, "remotesubnet", translate("Remote IP Addresses to Bypass"), translate("Remote IP addresses or subnets which will be accessed directly (outside of the VPN tunnel)")) -r2.datatype = "ip4addr" --- r2.placeholder = "0.0.0.0/0" -r2.addremove = false -r2.optional = false - --- Domains -d = Map("dhcp") -s4 = d:section(TypedSection, "dnsmasq") -s4.anonymous = true -di = s4:option(DynamicList, "ipset", translate("Domains to Bypass"), - translatef("Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s for syntax", - "<a href=\"" .. readmeURL .. "#bypass-domains-formatsyntax" .. "\" target=\"_blank\">", "</a>")) -function d.on_after_commit(map) - util.exec("/etc/init.d/dnsmasq restart >/dev/null 2>&1") -end - -return m, d diff --git a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm b/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm deleted file mode 100644 index c1f4d8279e..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm +++ /dev/null @@ -1,77 +0,0 @@ -<%# Copyright 2020 Stan Grishin <stangri@melmac.net> -%> - -<%+vpnbypass/css%> -<%+vpnbypass/js%> - -<%- - local packageName = "vpnbypass" - local serviceRunning, serviceEnabled = false, false; - if luci.sys.call("iptables -t mangle -L | grep -q " .. packageName:upper()) == 0 then - serviceRunning = true - end - if luci.model.uci.cursor():get(packageName, "config", "enabled") == "1" then - serviceEnabled = true - end - - if serviceEnabled then - btn_start_status = true - btn_action_status = true - btn_stop_status = true - btn_enable_status = false - btn_disable_status = true - else - btn_start_status = false - btn_action_status = false - btn_stop_status = false - btn_enable_status = true - btn_disable_status = false - end - if serviceRunning then - btn_start_status = false - btn_action_status = true - btn_stop_status = true - else - btn_action_status = false - btn_stop_status = false - end --%> - -<div class="cbi-value"><label class="cbi-value-title">Service Control</label> - <div class="cbi-value-field"> - <input type="button" class="cbi-button cbi-button-apply" id="btn_start" name="start" value="<%:Start%>" - onclick="button_action(this)" /> - <span id="btn_start_spinner" class="btn_spinner"></span> - <input type="button" class="cbi-button cbi-button-apply" id="btn_action" name="action" value="<%:Restart%>" - onclick="button_action(this)" /> - <span id="btn_action_spinner" class="btn_spinner"></span> - <input type="button" class="cbi-button cbi-button-reset" id="btn_stop" name="stop" value="<%:Stop%>" - onclick="button_action(this)" /> - <span id="btn_stop_spinner" class="btn_spinner"></span> - - - - - <input type="button" class="cbi-button cbi-button-apply" id="btn_enable" name="enable" value="<%:Enable%>" - onclick="button_action(this)" /> - <span id="btn_enable_spinner" class="btn_spinner"></span> - <input type="button" class="cbi-button cbi-button-reset" id="btn_disable" name="disable" value="<%:Disable%>" - onclick="button_action(this)" /> - <span id="btn_disable_spinner" class="btn_spinner"></span> - </div> -</div> - -<%-if not btn_start_status then%> -<script type="text/javascript">document.getElementById("btn_start").disabled = true;</script> -<%-end%> -<%-if not btn_action_status then%> -<script type="text/javascript">document.getElementById("btn_action").disabled = true;</script> -<%-end%> -<%-if not btn_stop_status then%> -<script type="text/javascript">document.getElementById("btn_stop").disabled = true;</script> -<%-end%> -<%-if not btn_enable_status then%> -<script type="text/javascript">document.getElementById("btn_enable").disabled = true;</script> -<%-end%> -<%-if not btn_disable_status then%> -<script type="text/javascript">document.getElementById("btn_disable").disabled = true;</script> -<%-end%>
\ No newline at end of file diff --git a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/css.htm b/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/css.htm deleted file mode 100644 index 6fb3d51d3b..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/css.htm +++ /dev/null @@ -1,9 +0,0 @@ -<style type="text/css"> - .btn_spinner - { - display: inline-block; - width: 0px; - height: 16px; - margin: 0 0px; - } -</style> diff --git a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm b/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm deleted file mode 100644 index e8c076f50e..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm +++ /dev/null @@ -1,59 +0,0 @@ -<script type="text/javascript"> -//<![CDATA[ - function button_action(action) { - var xhr = new XHR(false); - var btn_start = document.getElementById("btn_start"); - var btn_action = document.getElementById("btn_action"); - var btn_stop = document.getElementById("btn_stop"); - var btn_enable = document.getElementById("btn_enable"); - var btn_disable = document.getElementById("btn_disable"); - var btn_spinner; - switch (action.name) { - case "start": - btn_spinner = document.getElementById("btn_start_spinner"); - break; - case "action": - btn_spinner = document.getElementById("btn_action_spinner"); - break; - case "stop": - btn_spinner = document.getElementById("btn_stop_spinner"); - break; - case "enable": - btn_spinner = document.getElementById("btn_enable_spinner"); - break; - case "disable": - btn_spinner = document.getElementById("btn_disable_spinner"); - break; - } - btn_start.disabled = true; - btn_action.disabled = true; - btn_stop.disabled = true; - btn_enable.disabled = true; - btn_disable.disabled = true; - spinner(btn_spinner, 1); - xhr.get('<%=luci.dispatcher.build_url("admin", "vpn", "vpnbypass", "action")%>/' + action.name, null, - function (x) { - if (!x) { - return; - } - btn_start.disabled = false; - btn_action.disabled = false; - btn_stop.disabled = false; - btn_enable.disabled = false; - btn_disable.disabled = false; - spinner(btn_spinner, 0); - location.reload(); - }); -} -function spinner(element, state) { - if (state === 1) { - element.style.width = "16px"; - element.innerHTML = '<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" width="16" height="16" style="vertical-align:middle" />'; - } - else { - element.style.width = "0px"; - element.innerHTML = ''; - } -} -//]]> -</script> diff --git a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/status-textarea.htm b/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/status-textarea.htm deleted file mode 100644 index 4ab2e11291..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/status-textarea.htm +++ /dev/null @@ -1,13 +0,0 @@ -<%# -Copyright 2017-2019 Stan Grishin (stangri@melmac.net) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+cbi/valueheader%> - -<textarea rows="<%=select(2, self:cfgvalue(section):gsub('\n', '\n'))%>" - style="border:none;box-shadow:none;background:transparent;font-weight:bold;line-height:20px;width:50em;padding:none;margin:6px;resize:none;overflow:hidden;" - disabled="disabled"><%=self:cfgvalue(section):gsub('\n', '\n')%> -</textarea> - -<%+cbi/valuefooter%> diff --git a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/status.htm b/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/status.htm deleted file mode 100644 index c453428405..0000000000 --- a/applications/luci-app-vpnbypass/luasrc/view/vpnbypass/status.htm +++ /dev/null @@ -1,10 +0,0 @@ -<%# -Copyright 2017-2018 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+cbi/valueheader%> - -<input name="status" id="status" type="text" class="cbi-input-text" style="outline:none;border:none;box-shadow:none;background:transparent;font-weight:bold;line-height:30px;height:30px;width:50em;" value="<%=self:cfgvalue(section)%>" disabled="disabled" /> - -<%+cbi/valuefooter%> diff --git a/applications/luci-app-vpnbypass/po/ar/vpnbypass.po b/applications/luci-app-vpnbypass/po/ar/vpnbypass.po deleted file mode 100644 index 8db5716ff8..0000000000 --- a/applications/luci-app-vpnbypass/po/ar/vpnbypass.po +++ /dev/null @@ -1,126 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 06:17+0000\n" -"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n" -"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/ar/>\n" -"Language: ar\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "ممكن" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "جار التحميل" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/bg/vpnbypass.po b/applications/luci-app-vpnbypass/po/bg/vpnbypass.po deleted file mode 100644 index 4055cab06a..0000000000 --- a/applications/luci-app-vpnbypass/po/bg/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: bg\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/bn_BD/vpnbypass.po b/applications/luci-app-vpnbypass/po/bn_BD/vpnbypass.po deleted file mode 100644 index 7ca1c8b844..0000000000 --- a/applications/luci-app-vpnbypass/po/bn_BD/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: bn_BD\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/ca/vpnbypass.po b/applications/luci-app-vpnbypass/po/ca/vpnbypass.po deleted file mode 100644 index 7b3391ae6b..0000000000 --- a/applications/luci-app-vpnbypass/po/ca/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: ca\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/cs/vpnbypass.po b/applications/luci-app-vpnbypass/po/cs/vpnbypass.po deleted file mode 100644 index d22f22e8c5..0000000000 --- a/applications/luci-app-vpnbypass/po/cs/vpnbypass.po +++ /dev/null @@ -1,144 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2019-12-16 23:26+0000\n" -"Last-Translator: Jiri Tersel <jiri.tersel@seznam.cz>\n" -"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/cs/>\n" -"Language: cs\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.10-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Zakázat" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Domény k přemostění" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Povolit" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Načítání" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Lokální IP adresy pro přemostění" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Lokální IP adresy nebo podsítě s přímým přístupem na internet (mimo VPN " -"tunel)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Lokální porty k přemostění" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Lokální porty pro aktivaci VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Vzdálené IP adresy k přemostění" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Vzdálené IP adresy nebo podsítě, ke kterým bude přistupováno přímo (mimo VPN " -"tunel)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Vzdálené porty k přemostění" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Vzdálené porty pro aktivaci VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Stav služby" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Start" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Zastavit" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "Pravidla VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "Nastavení VPN Bypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "Domény, ke kterým chcete přistupovat přímo (mimo VPN tunel), vizte" - -#~ msgid "README" -#~ msgstr "README" - -#~ msgid "for syntax" -#~ msgstr "pro syntaxi" - -#~ msgid "is not installed or not found" -#~ msgstr "není nainstalován nebo nenalezen" - -#~ msgid "Reload" -#~ msgstr "Znovu načíst" diff --git a/applications/luci-app-vpnbypass/po/de/vpnbypass.po b/applications/luci-app-vpnbypass/po/de/vpnbypass.po deleted file mode 100644 index d09c7169e1..0000000000 --- a/applications/luci-app-vpnbypass/po/de/vpnbypass.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-10 13:26+0000\n" -"Last-Translator: Sandro Volery <sandro@volery.com>\n" -"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/de/>\n" -"Language: de\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (deaktiviert)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Deaktivieren" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Zu umgehende Domains" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Aktivieren" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Lade" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Zu umgehende lokale IP Adressen" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Lokale IP Adressen, oder Subnetze mit direktem Internet-Zugriff (außerhalb " -"des VPN Tunnel)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Zu umgehende Lokale Ports" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Lokale Ports um VPN Bypass anzustoßen" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Zu umgehende entfernte IP Adressen" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Entfernte IP Adressen, oder Subnetze mit direktem Internet-Zugriff " -"(außerhalb des VPN Tunnel)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Zu umgehende entfernte Ports" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Enfernte Ports um VPN Bypass anzustßen" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Neustart" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "Laufend" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Dienststatus" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Servicestatus [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Start" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Stopp" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Angehalten" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "VPN Bypass Regeln" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "VPN Bypass Einstellungen" - -#~ msgid "Grant UCI access for luci-app-vpnbypass" -#~ msgstr "Gewähre UCI Zugriff auf luci-app-vpnbypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "" -#~ "Domains die direkt erreicht werden sollen (außerhalb des VPN Tunnel), " -#~ "siehe" - -#~ msgid "README" -#~ msgstr "README" - -#~ msgid "disabled" -#~ msgstr "deaktiviert" - -#~ msgid "for syntax" -#~ msgstr "für Syntax" - -#~ msgid "is not installed or not found" -#~ msgstr "ist nicht installiert oder nicht gefunden" - -#~ msgid "Reload" -#~ msgstr "Neu laden" - -#~ msgid "Start VPNBypass service" -#~ msgstr "Starte VPNBypass service" diff --git a/applications/luci-app-vpnbypass/po/el/vpnbypass.po b/applications/luci-app-vpnbypass/po/el/vpnbypass.po deleted file mode 100644 index 9951e8e0d0..0000000000 --- a/applications/luci-app-vpnbypass/po/el/vpnbypass.po +++ /dev/null @@ -1,125 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2019-12-03 08:27+0000\n" -"Last-Translator: Tavaninja <metalcorpe@gmail.com>\n" -"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/el/>\n" -"Language: el\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Φόρτωση" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/en/vpnbypass.po b/applications/luci-app-vpnbypass/po/en/vpnbypass.po deleted file mode 100644 index 8838b4f898..0000000000 --- a/applications/luci-app-vpnbypass/po/en/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: en\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/es/vpnbypass.po b/applications/luci-app-vpnbypass/po/es/vpnbypass.po deleted file mode 100644 index 83f5e544b4..0000000000 --- a/applications/luci-app-vpnbypass/po/es/vpnbypass.po +++ /dev/null @@ -1,172 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2020-09-30 03:06+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" -"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/es/>\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (desactivado)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s no está instalado o no se encuentra" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Desactivar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Dominios a omitir" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" -"Dominios a los que se debe acceder directamente (fuera del túnel VPN), " -"consulte %sREADME%s para conocer la sintaxis" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Activar" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "Otorgar acceso a archivos y UCI para luci-app-vpnbypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Cargando" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Direcciones IP locales para omitir" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Direcciones IP o subredes locales con acceso directo a Internet (fuera del " -"túnel VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Puertos locales para evitar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Puertos locales para activar VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Direcciones IP remotas para omitir" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Direcciones IP remotas o subredes a las que se accederá directamente (fuera " -"del túnel VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Puertos remotos para omitir" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Puertos remotos para activar VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Reiniciar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "Corriendo" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Estado del servicio" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Estado del servicio [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Iniciar" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Detener" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Detenido" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "Reglas de VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "Configuración de VPN Bypass" - -#~ msgid "Grant UCI access for luci-app-vpnbypass" -#~ msgstr "Conceder acceso UCI para luci-app-vpnbypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "" -#~ "Dominios a los que se puede acceder directamente (fuera del túnel VPN), " -#~ "consulte" - -#~ msgid "README" -#~ msgstr "LÉEME" - -#~ msgid "disabled" -#~ msgstr "desactivado" - -#~ msgid "for syntax" -#~ msgstr "para la sintaxis" - -#~ msgid "is not installed or not found" -#~ msgstr "no está instalado o no se encuentra" - -#~ msgid "Reload" -#~ msgstr "Recargar" - -#~ msgid "Enable/Start" -#~ msgstr "Activar/Iniciar" - -#~ msgid "Service is disabled/stopped" -#~ msgstr "El servicio está desactivado/detenido" - -#~ msgid "Service is enabled/started" -#~ msgstr "El servicio está activado/iniciado" - -#~ msgid "Stop/Disable" -#~ msgstr "Detener/Desactivar" - -#~ msgid "Start VPNBypass service" -#~ msgstr "Iniciar el servicio VPNBypass" diff --git a/applications/luci-app-vpnbypass/po/fi/vpnbypass.po b/applications/luci-app-vpnbypass/po/fi/vpnbypass.po deleted file mode 100644 index a4db4ef34a..0000000000 --- a/applications/luci-app-vpnbypass/po/fi/vpnbypass.po +++ /dev/null @@ -1,125 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-23 07:41+0000\n" -"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" -"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/fi/>\n" -"Language: fi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Poista käytöstä" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Ota käyttöön" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Ladataan" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Käynnistä uudelleen" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Aloita" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Pysäytä" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/fr/vpnbypass.po b/applications/luci-app-vpnbypass/po/fr/vpnbypass.po deleted file mode 100644 index 9e46e2aba2..0000000000 --- a/applications/luci-app-vpnbypass/po/fr/vpnbypass.po +++ /dev/null @@ -1,137 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-14 12:48+0000\n" -"Last-Translator: David Elie-Dit-Cosaque <david.elieditcosaque@gmail.com>\n" -"Language-Team: French <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/fr/>\n" -"Language: fr\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.4-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (désactivé)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s n'est pas installé ou introuvable" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Désactiver" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Activer" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Chargement" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Redémarrer" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "En cours d'exécution" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Statut du service" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Démarrer" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Arrêter" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Arrêté" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" - -#~ msgid "README" -#~ msgstr "README" - -#~ msgid "disabled" -#~ msgstr "désactivé" - -#~ msgid "is not installed or not found" -#~ msgstr "n'est pas installé ou introuvable" - -#~ msgid "Reload" -#~ msgstr "Recharger" diff --git a/applications/luci-app-vpnbypass/po/he/vpnbypass.po b/applications/luci-app-vpnbypass/po/he/vpnbypass.po deleted file mode 100644 index ad9a6fdd7b..0000000000 --- a/applications/luci-app-vpnbypass/po/he/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: he\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/hi/vpnbypass.po b/applications/luci-app-vpnbypass/po/hi/vpnbypass.po deleted file mode 100644 index ae8d3107d7..0000000000 --- a/applications/luci-app-vpnbypass/po/hi/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: hi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/hu/vpnbypass.po b/applications/luci-app-vpnbypass/po/hu/vpnbypass.po deleted file mode 100644 index 0016794a89..0000000000 --- a/applications/luci-app-vpnbypass/po/hu/vpnbypass.po +++ /dev/null @@ -1,134 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-15 02:10+0000\n" -"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" -"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/hu/>\n" -"Language: hu\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Letiltás" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Engedélyezés" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Betöltés" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Szolgáltatás állapota" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Indítás" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Leállítás" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" - -#~ msgid "README" -#~ msgstr "README" - -#~ msgid "is not installed or not found" -#~ msgstr "nincs telepítve vagy nem található" - -#~ msgid "Reload" -#~ msgstr "Újratöltés" diff --git a/applications/luci-app-vpnbypass/po/it/vpnbypass.po b/applications/luci-app-vpnbypass/po/it/vpnbypass.po deleted file mode 100644 index c2f3a4bdc3..0000000000 --- a/applications/luci-app-vpnbypass/po/it/vpnbypass.po +++ /dev/null @@ -1,128 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-07 12:33+0000\n" -"Last-Translator: Giuseppe Valitutto <valituttogiuseppe@gmail.com>\n" -"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/it/>\n" -"Language: it\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Disabilita" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Abilita" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Caricamento" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Arresta" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" - -#~ msgid "Reload" -#~ msgstr "Aggiorna" diff --git a/applications/luci-app-vpnbypass/po/ja/vpnbypass.po b/applications/luci-app-vpnbypass/po/ja/vpnbypass.po deleted file mode 100644 index 8888d994e4..0000000000 --- a/applications/luci-app-vpnbypass/po/ja/vpnbypass.po +++ /dev/null @@ -1,125 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-22 08:29+0000\n" -"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" -"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/ja/>\n" -"Language: ja\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s は未インストールかまたは見つかりません" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "無効" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "有効" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "読み込み中" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "再起動" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "実行中" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "サービス ステータス" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "サービス・ステータス [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "開始" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "停止" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "停止済" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/ko/vpnbypass.po b/applications/luci-app-vpnbypass/po/ko/vpnbypass.po deleted file mode 100644 index 5138e6b257..0000000000 --- a/applications/luci-app-vpnbypass/po/ko/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: ko\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/mr/vpnbypass.po b/applications/luci-app-vpnbypass/po/mr/vpnbypass.po deleted file mode 100644 index c5446ef314..0000000000 --- a/applications/luci-app-vpnbypass/po/mr/vpnbypass.po +++ /dev/null @@ -1,131 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 09:19+0000\n" -"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" -"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/mr/>\n" -"Language: mr\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.11-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "अक्षम करा" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "सक्षम करा" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "लोड करीत आहे" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "सेवा स्थिती" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "प्रारंभ करा" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "थांबा" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" - -#~ msgid "is not installed or not found" -#~ msgstr "स्थापित केलेले नाही किंवा सापडले नाही" - -#~ msgid "Reload" -#~ msgstr "रीलोड करा" diff --git a/applications/luci-app-vpnbypass/po/ms/vpnbypass.po b/applications/luci-app-vpnbypass/po/ms/vpnbypass.po deleted file mode 100644 index 20861c4f45..0000000000 --- a/applications/luci-app-vpnbypass/po/ms/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: ms\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/nb_NO/vpnbypass.po b/applications/luci-app-vpnbypass/po/nb_NO/vpnbypass.po deleted file mode 100644 index c4dd3698fc..0000000000 --- a/applications/luci-app-vpnbypass/po/nb_NO/vpnbypass.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Language: nb_NO\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/pl/vpnbypass.po b/applications/luci-app-vpnbypass/po/pl/vpnbypass.po deleted file mode 100644 index 83cabe703d..0000000000 --- a/applications/luci-app-vpnbypass/po/pl/vpnbypass.po +++ /dev/null @@ -1,153 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-07 18:12+0000\n" -"Last-Translator: ZbeeGin <zbeegin@op.pl>\n" -"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/pl/>\n" -"Language: pl\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.2\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (wyłączone)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s nie jest zainstalowany lub nie znaleziono" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Wyłącz" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Domeny do obejścia" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" -"Domeny dostępne bezpośrednio (na zewnątrz tunelu VPN), zobacz %sREADME%s by " -"poznać składnię" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Włącz" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "Udziel dostępu dla luci-app-vpnbypass do UCI oraz plików" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Ładowanie" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Lokalne adresy IP do obejścia" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Lokalne adresy IP lub podsieci z bezpośrednim dostępem do Internetu (poza " -"tunelem VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Lokalne porty do obejścia" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Lokalne porty wyzwalające obejście VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Zdalne adresy IP do obejścia" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Zdalne adresy IP lub podsieci, do których będzie można uzyskać bezpośredni " -"dostęp (poza tunelem VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Zdalne porty do obejścia" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Porty zdalne wyzwalające obejście sieci VPN" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Restart" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "Działa" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Status usługi" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Stan usługi [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Uruchom" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Zatrzymaj" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Zatrzymany" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "Obejście VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "Zasady obejścia VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "Ustawienia obejścia VPN" - -#~ msgid "Grant UCI access for luci-app-vpnbypass" -#~ msgstr "Udziel dostępu UCI do luci-app-vpnbypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "Domeny dostępne bezpośrednio (na zewnątrz tunelu VPN), zobacz" - -#~ msgid "README" -#~ msgstr "Plik readme" - -#~ msgid "disabled" -#~ msgstr "wyłączony" - -#~ msgid "for syntax" -#~ msgstr "dla składni" - -#~ msgid "is not installed or not found" -#~ msgstr "nie jest zainstalowany lub nie znaleziono" - -#~ msgid "Reload" -#~ msgstr "Przeładuj" diff --git a/applications/luci-app-vpnbypass/po/pt/vpnbypass.po b/applications/luci-app-vpnbypass/po/pt/vpnbypass.po deleted file mode 100644 index 891397ac3b..0000000000 --- a/applications/luci-app-vpnbypass/po/pt/vpnbypass.po +++ /dev/null @@ -1,152 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-09-29 14:41+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" -"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/pt/>\n" -"Language: pt\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (desativado)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s não está instalado ou não foi encontrado" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Desativar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Domínios a Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" -"Domínios a serem acessados diretamente (fora do túnel VPN), veja %sREADME%s " -"para sintaxes" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Ativar" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "Conceder acesso a UCI e a ficheiros para luci-app-vpnbypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "A carregar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Endereços IP Locais a Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Endereços IP locais ou sub-redes com acesso direto à Internet (fora do túnel " -"VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Portos Locais a Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Portas locais para acionar o Bypass VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Endereços IP Remotos a Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Endereços IP remotos ou sub-redes que serão acessados diretamente (fora do " -"túnel VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Portas Remotas a Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Portas remotas para acionar o Bypass VPN" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Reiniciar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "Executando" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Estado do Serviço" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Estado do Serviço [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Iniciar" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Parar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Parado" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "Desvio de VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "Regras de Bypass VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "Configurações de Bypass VPN" - -#~ msgid "Grant UCI access for luci-app-vpnbypass" -#~ msgstr "Conceder acesso UCI ao luci-app-vpnbypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "Domínios a serem acessados diretamente (fora do túnel VPN), veja" - -#~ msgid "README" -#~ msgstr "LEIAME" - -#~ msgid "disabled" -#~ msgstr "desativado" - -#~ msgid "for syntax" -#~ msgstr "para sintaxe" - -#~ msgid "is not installed or not found" -#~ msgstr "não está instalado ou não foi encontrado" - -#~ msgid "Reload" -#~ msgstr "Recarregar" diff --git a/applications/luci-app-vpnbypass/po/pt_BR/vpnbypass.po b/applications/luci-app-vpnbypass/po/pt_BR/vpnbypass.po deleted file mode 100644 index d17023d43e..0000000000 --- a/applications/luci-app-vpnbypass/po/pt_BR/vpnbypass.po +++ /dev/null @@ -1,185 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2020-09-29 14:41+0000\n" -"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" -"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationsvpnbypass/pt_BR/>\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (desativado)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s não está instalado ou não foi encontrado" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Desativar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Domínios para evitar a VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" -"Os domínios a serem acessados diretamente (fora do túnel VPN), consulte o " -"%sREADME%s para a sintaxe" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Ativar" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "Conceda acesso ao arquivo e ao UCI para o luci-app-vpnbypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Carregando" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Endereço IP Local para Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Endereço IP Local ou subrede com acesso direto à internet (fora do túnel VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Portas locais para evitar a VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Portas locais para disparar o VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Endereço IP Remoto para Contornar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Endereço IP Remoto ou subrede que serão acessados diretamente (fora do túnel " -"VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Portas remotas para evitar a VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Portas remotas para disparar o VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Reiniciar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "Em execução" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Condição do Serviço" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Condição Geral do Serviço [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Início" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Parar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Parado" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "VPN Bypass" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "Regras de Bypass da VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "Configurações do VPN Bypass" - -#~ msgid "Grant UCI access for luci-app-vpnbypass" -#~ msgstr "Conceda acesso UCI ao luci-app-vpnbypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "Domínios para serem acessados diretamente (fora do túnel VPN), veja" - -#~ msgid "README" -#~ msgstr "LEIA-ME" - -#~ msgid "disabled" -#~ msgstr "desabilitado" - -#~ msgid "for syntax" -#~ msgstr "para sintaxe" - -#~ msgid "is not installed or not found" -#~ msgstr "não está instalado ou não foi encontrado" - -#~ msgid "Reload" -#~ msgstr "Recarregar" - -#~ msgid "Start VPNBypass service" -#~ msgstr "Inicie o serviço VPNBypass" - -#~ msgid "Enable VPN Bypass" -#~ msgstr "Habilitar o VPN Bypass" - -#~ msgid "Configuration of VPN Bypass Settings" -#~ msgstr "Configurações do VPN Bypass" - -#~ msgid "Domains which will be accessed directly (outside of the VPN tunnel)" -#~ msgstr "Domínios que serão acessados diretamente (fora do túnel VPN)" - -#~ msgid "Local IP Subnets to Bypass" -#~ msgstr "Subredes IP locais para evitar a VPN" - -#~ msgid "" -#~ "Local IP ranges with direct internet access (outside of the VPN tunnel)" -#~ msgstr "" -#~ "Faixa de endereços IP locais que terão acesso internet direto (fora do " -#~ "túnel VPN)" - -#~ msgid "Remote IP Subnets to Bypass" -#~ msgstr "Subredes IP remotas para evitar a VPN" - -#~ msgid "" -#~ "Remote IP ranges which will be accessed directly (outside of the VPN " -#~ "tunnel)" -#~ msgstr "" -#~ "Faixa de endereços IP remotos que serão acessados diretamente (fora do " -#~ "túnel VPN)" diff --git a/applications/luci-app-vpnbypass/po/ro/vpnbypass.po b/applications/luci-app-vpnbypass/po/ro/vpnbypass.po deleted file mode 100644 index 4b1aea718c..0000000000 --- a/applications/luci-app-vpnbypass/po/ro/vpnbypass.po +++ /dev/null @@ -1,126 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-10 12:23+0000\n" -"Last-Translator: Alexandru Stan <alex9457sn@gmail.com>\n" -"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/ro/>\n" -"Language: ro\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.10.1\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Dezactivează" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Activează" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Încărcare" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Pornește" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/ru/vpnbypass.po b/applications/luci-app-vpnbypass/po/ru/vpnbypass.po deleted file mode 100644 index 9f56d08c61..0000000000 --- a/applications/luci-app-vpnbypass/po/ru/vpnbypass.po +++ /dev/null @@ -1,161 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: LuCI: vpnbypass\n" -"POT-Creation-Date: 2018-01-01 21:00+0300\n" -"PO-Revision-Date: 2020-10-09 00:10+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" -"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/ru/>\n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3-dev\n" -"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " -"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (отключено)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s не установлен или не найден" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Отключить" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "Домены, для<br />обхода блокировки" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" -"Домены для доступа напрямую (за пределами VPN-туннеля), синтаксис см. в " -"%sREADME%s" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Включить" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "Предоставить доступ к UCI и файлам для luci-app-vpnbypass" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Загрузка" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "Локальный IP-адрес<br />обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" -"Локальные IP-адреса или подсети с доступом в интернет напрямую (вне VPN-" -"туннеля)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "Локальные порты для запуска обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "Локальные порты<br />для обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "Удаленные IP-адреса<br />обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" -"Удаленные IP-адреса или подсети, которые будут доступны напрямую (вне " -"туннеля VPN)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "Удаленные порты<br />для обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "Удаленные порты для запуска обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Перезапустить" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "Запущенные" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Статус сервиса" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Статус службы [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Запустить" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Остановить" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Остановлено" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "Обход VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "Правила обхода VPN" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "Настройка обхода VPN" - -#~ msgid "Grant UCI access for luci-app-vpnbypass" -#~ msgstr "Предоставить UCI доступ для luci-app-vpnbypass" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "Домены должны быть доступны напрямую (вне VPN-туннеля), см." - -#~ msgid "README" -#~ msgstr "Описание" - -#~ msgid "disabled" -#~ msgstr "отключено" - -#~ msgid "for syntax" -#~ msgstr "для синтаксиса" - -#~ msgid "is not installed or not found" -#~ msgstr "не установлен или не найден" - -#~ msgid "Reload" -#~ msgstr "Перезапустить" - -#~ msgid "Enable/start service" -#~ msgstr "Включение / Запуск сервиса" diff --git a/applications/luci-app-vpnbypass/po/sk/vpnbypass.po b/applications/luci-app-vpnbypass/po/sk/vpnbypass.po deleted file mode 100644 index a42abdd5dc..0000000000 --- a/applications/luci-app-vpnbypass/po/sk/vpnbypass.po +++ /dev/null @@ -1,125 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-04 17:35+0000\n" -"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" -"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/sk/>\n" -"Language: sk\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Zakázať" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Spustiť" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Zastaviť" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/sv/vpnbypass.po b/applications/luci-app-vpnbypass/po/sv/vpnbypass.po deleted file mode 100644 index 97a7130ebf..0000000000 --- a/applications/luci-app-vpnbypass/po/sv/vpnbypass.po +++ /dev/null @@ -1,128 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-09-23 14:41+0000\n" -"Last-Translator: Kristoffer Grundström <dsmusicever@gmail.com>\n" -"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/sv/>\n" -"Language: sv\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s är inte installerat eller kunde inte hittas" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Inaktivera" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Aktivera" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Laddar" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Status för tjänsten" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Status för tjänsten [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Starta" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Stopp" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Stoppad" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" - -#~ msgid "Reload" -#~ msgstr "Ladda om" diff --git a/applications/luci-app-vpnbypass/po/templates/vpnbypass.pot b/applications/luci-app-vpnbypass/po/templates/vpnbypass.pot deleted file mode 100644 index abbe198229..0000000000 --- a/applications/luci-app-vpnbypass/po/templates/vpnbypass.pot +++ /dev/null @@ -1,116 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/tr/vpnbypass.po b/applications/luci-app-vpnbypass/po/tr/vpnbypass.po deleted file mode 100644 index 13184470d0..0000000000 --- a/applications/luci-app-vpnbypass/po/tr/vpnbypass.po +++ /dev/null @@ -1,125 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-09-25 07:41+0000\n" -"Last-Translator: Mehmet Çetin <excom_zkko@hotmail.com>\n" -"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/tr/>\n" -"Language: tr\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "%s yüklenmemiş ya da bulunamadı" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Devre dışı bırak" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Çalıştır" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Yükleniyor" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Hizmet Durumu" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "Hizmet Durumu [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Başlat" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Durdur" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Durduruldu" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/uk/vpnbypass.po b/applications/luci-app-vpnbypass/po/uk/vpnbypass.po deleted file mode 100644 index fe79cce794..0000000000 --- a/applications/luci-app-vpnbypass/po/uk/vpnbypass.po +++ /dev/null @@ -1,132 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-09-04 13:36+0000\n" -"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" -"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/uk/>\n" -"Language: uk\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "Вимкнути" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Увімкнути" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Завантаження" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "Перезавантажити" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "Стан сервісу" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "Запустити" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "Зупинити" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "Зупинено" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" - -#~ msgid "for syntax" -#~ msgstr "для синтаксису" - -#~ msgid "is not installed or not found" -#~ msgstr "не встановлено, або не знайдено" diff --git a/applications/luci-app-vpnbypass/po/vi/vpnbypass.po b/applications/luci-app-vpnbypass/po/vi/vpnbypass.po deleted file mode 100644 index e3a1f9f279..0000000000 --- a/applications/luci-app-vpnbypass/po/vi/vpnbypass.po +++ /dev/null @@ -1,125 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2019-11-13 13:08+0000\n" -"Last-Translator: Le Van Uoc <kunkun3012@gmail.com>\n" -"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" -"luciapplicationsvpnbypass/vi/>\n" -"Language: vi\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.10-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "Kích hoạt" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "Đang tải" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "" diff --git a/applications/luci-app-vpnbypass/po/zh_Hans/vpnbypass.po b/applications/luci-app-vpnbypass/po/zh_Hans/vpnbypass.po deleted file mode 100644 index 8de6307729..0000000000 --- a/applications/luci-app-vpnbypass/po/zh_Hans/vpnbypass.po +++ /dev/null @@ -1,149 +0,0 @@ -# -# Yangfl <mmyangfl@gmail.com>, 2017, 2018. -# -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-31 18:41+0000\n" -"Last-Translator: Zkdc <Zkdc2345@qq.com>\n" -"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationsvpnbypass/zh_Hans/>\n" -"Language: zh_Hans\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "%s (已禁用)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "禁用" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "要绕过的域" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "启用" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "加载中" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "要绕过的本地 IP 地址" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "直接访问的本地 IP 地址或子网(不使用 VPN 隧道)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "要绕过的本地端口" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "触发 VPN 绕过的本地端口" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "要绕过的远程 IP 地址" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "将直接访问的远程 IP 地址或子网(不使用 VPN 隧道)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "要绕过的远程端口" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "触发 VPN 绕过的远程端口" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "重启" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "运行中" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "服务状态" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "启动" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "停止" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "已停止" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "VPN" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "VPN 绕过" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "VPN 绕过规则" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "VPN 绕过设置" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "要直接访问的域(不使用 VPN 隧道),请参见" - -#~ msgid "README" -#~ msgstr "README" - -#~ msgid "for syntax" -#~ msgstr "对于语法" - -#~ msgid "is not installed or not found" -#~ msgstr "未安装或未找到" - -#~ msgid "Reload" -#~ msgstr "重新载入" - -#~ msgid "Start VPNBypass service" -#~ msgstr "启动 VPNBypass 服务" - -#~ msgid "Enable/start service" -#~ msgstr "启用/启动服务" diff --git a/applications/luci-app-vpnbypass/po/zh_Hant/vpnbypass.po b/applications/luci-app-vpnbypass/po/zh_Hant/vpnbypass.po deleted file mode 100644 index 0fd8d0ef9e..0000000000 --- a/applications/luci-app-vpnbypass/po/zh_Hant/vpnbypass.po +++ /dev/null @@ -1,143 +0,0 @@ -# -# Yangfl <mmyangfl@gmail.com>, 2017. -# -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-29 05:51+0000\n" -"Last-Translator: Hulen <shift0106@gmail.com>\n" -"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationsvpnbypass/zh_Hant/>\n" -"Language: zh_Hant\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:40 -msgid "%s (disabled)" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 -msgid "%s is not installed or not found" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:57 -msgid "Disable" -msgstr "停用" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:88 -msgid "Domains to Bypass" -msgstr "要繞過的域" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:89 -msgid "" -"Domains to be accessed directly (outside of the VPN tunnel), see %sREADME%s " -"for syntax" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:54 -msgid "Enable" -msgstr "啟用" - -#: applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json:3 -msgid "Grant UCI and file access for luci-app-vpnbypass" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm:51 -msgid "Loading" -msgstr "載入中" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "Local IP Addresses to Bypass" -msgstr "要繞過的本地 IP 位址" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:71 -msgid "" -"Local IP addresses or subnets with direct internet access (outside of the " -"VPN tunnel)" -msgstr "直接訪問的本地 IP 位址或子網(不使用 VPN 隧道)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local Ports to Bypass" -msgstr "要繞過的本地埠" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:57 -msgid "Local ports to trigger VPN Bypass" -msgstr "觸發 VPN 繞過的本地埠" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "Remote IP Addresses to Bypass" -msgstr "要繞過的遠端 IP 位址" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:78 -msgid "" -"Remote IP addresses or subnets which will be accessed directly (outside of " -"the VPN tunnel)" -msgstr "將直接訪問的遠端 IP 位址或子網(不使用 VPN 隧道)" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote Ports to Bypass" -msgstr "要繞過的遠端埠" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:64 -msgid "Remote ports to trigger VPN Bypass" -msgstr "觸發 VPN 繞過的遠端埠" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:44 -msgid "Restart" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:36 -msgid "Running" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:47 -msgid "Service Status" -msgstr "服務狀態" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:46 -msgid "Service Status [%s %s]" -msgstr "服務狀態 [%s %s]" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:41 -msgid "Start" -msgstr "啟動" - -#: applications/luci-app-vpnbypass/luasrc/view/vpnbypass/buttons.htm:47 -msgid "Stop" -msgstr "停止" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 -msgid "Stopped" -msgstr "已停止" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:4 -msgid "VPN" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:7 -msgid "VPN Bypass" -msgstr "VPN 繞過" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:55 -msgid "VPN Bypass Rules" -msgstr "" - -#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:44 -msgid "VPN Bypass Settings" -msgstr "VPN 繞過設定" - -#~ msgid "Domains to be accessed directly (outside of the VPN tunnel), see" -#~ msgstr "要直接訪問的域(不使用 VPN 隧道),請參見" - -#~ msgid "README" -#~ msgstr "README" - -#~ msgid "for syntax" -#~ msgstr "對於語法" - -#~ msgid "Reload" -#~ msgstr "重新載入" - -#~ msgid "Enable/start service" -#~ msgstr "啟用/啟動服務" diff --git a/applications/luci-app-vpnbypass/root/etc/uci-defaults/40_luci-vpnbypass b/applications/luci-app-vpnbypass/root/etc/uci-defaults/40_luci-vpnbypass deleted file mode 100644 index 6df7810334..0000000000 --- a/applications/luci-app-vpnbypass/root/etc/uci-defaults/40_luci-vpnbypass +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -rm -rf /var/luci-modulecache/; rm -f /var/luci-indexcache; -exit 0 - diff --git a/applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json b/applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json deleted file mode 100644 index 6dc1cb6a3f..0000000000 --- a/applications/luci-app-vpnbypass/root/usr/share/rpcd/acl.d/luci-app-vpnbypass.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "luci-app-vpnbypass": { - "description": "Grant UCI and file access for luci-app-vpnbypass", - "read": { - "cgi-io": [ - "exec" - ], - "file": { - "/usr/lib/opkg/status": [ - "read" - ], - "/etc/init.d/vpnbypass *": [ - "exec" - ], - "/etc/init.d/dnsmasq restart *": [ - "exec" - ], - "/usr/bin/grep *": [ - "exec" - ], - "/usr/sbin/grep *": [ - "exec" - ], - "/usr/sbin/iptables *": [ - "exec" - ] - }, - "uci": [ - "dhcp", - "vpnbypass" - ] - }, - "write": { - "uci": [ - "dhcp", - "vpnbypass" - ] - } - } -}
\ No newline at end of file |