mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-14 19:41:51 +00:00
Add a checkbox to use DNS64/NAT64
This commit is contained in:
parent
2b77b200f4
commit
ad907829de
3 changed files with 198 additions and 156 deletions
|
@ -508,6 +508,18 @@ function wizard_add()
|
||||||
ucic:set("openmptcprouter","settings","country",country)
|
ucic:set("openmptcprouter","settings","country",country)
|
||||||
ucic:save("openmptcprouter")
|
ucic:save("openmptcprouter")
|
||||||
|
|
||||||
|
-- Get DNS64
|
||||||
|
local dns64 = luci.http.formvalue("dns64") or "0"
|
||||||
|
ucic:set("openmptcprouter","settings","dns64",dns64)
|
||||||
|
ucic:save("openmptcprouter")
|
||||||
|
if dns64 == "1" then
|
||||||
|
ucic:set("unbound","ub_main","dns64","1")
|
||||||
|
ucic:set("unbound","ub_main","validator","0")
|
||||||
|
else
|
||||||
|
ucic:set("unbound","ub_main","dns64","0")
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- Get Proxy set by default
|
-- Get Proxy set by default
|
||||||
local default_proxy = luci.http.formvalue("default_proxy") or "shadowsocks"
|
local default_proxy = luci.http.formvalue("default_proxy") or "shadowsocks"
|
||||||
if default_proxy == "shadowsocks" and serversnb > 0 and serversnb > disablednb then
|
if default_proxy == "shadowsocks" and serversnb > 0 and serversnb > disablednb then
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
<div class="cbi-value" data-index="4">
|
<div class="cbi-value" data-index="4">
|
||||||
<label class="cbi-value-title"><%:Set server as master%></label>
|
<label class="cbi-value-title"><%:Set server as master%></label>
|
||||||
<div class="cbi-value-field">
|
<div class="cbi-value-field">
|
||||||
<input class="cbi-input-radio" type="radio" name="master" value="<%=servername%>" <% if uci:get("openmptcprouter",servername,"master") == "1" then %>checked<% end %>/>
|
<input class="cbi-input-radio" type="radio" name="master" value="<%=servername%>" <% if uci:get("openmptcprouter",servername,"master") == "1" then %>checked <% end %>/>
|
||||||
<br />
|
<br />
|
||||||
<div class="cbi-value-description">
|
<div class="cbi-value-description">
|
||||||
<%:Only one server can be master, else all servers are set as backup.%>
|
<%:Only one server can be master, else all servers are set as backup.%>
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
<div class="cbi-value" data-index="5">
|
<div class="cbi-value" data-index="5">
|
||||||
<label class="cbi-value-title"><%:Disable server%></label>
|
<label class="cbi-value-title"><%:Disable server%></label>
|
||||||
<div class="cbi-value-field">
|
<div class="cbi-value-field">
|
||||||
<input class="cbi-input-radio" type="checkbox" name="<%=servername%>.openmptcprouter_vps_disabled" value="1" <% if uci:get("openmptcprouter",servername,"disabled") == "1" then %>checked<% end %>/>
|
<input class="cbi-input-radio" type="checkbox" name="<%=servername%>.openmptcprouter_vps_disabled" value="1" <% if uci:get("openmptcprouter",servername,"disabled") == "1" then %>checked <% end %>/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<%
|
<%
|
||||||
|
@ -194,6 +194,16 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="cbi-value">
|
||||||
|
<label class="cbi-value-title"><%:Enable DNS64%></label>
|
||||||
|
<div class="cbi-value-field">
|
||||||
|
<input class="cbi-input-checkbox" type="checkbox" name="dns64" value="1" <% if uci:get("openmptcprouter","settings","dns64") == "1" then %>checked <% end %>/>
|
||||||
|
<br />
|
||||||
|
<div class="cbi-value-description">
|
||||||
|
<%:If host support NAT64, you can enable DNS64 support.%>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset class="cbi-section" id="proxy">
|
<fieldset class="cbi-section" id="proxy">
|
||||||
<legend><%:Proxy settings%></legend>
|
<legend><%:Proxy settings%></legend>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:286
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:296
|
||||||
msgid "A Dead Simple VPN is a TCP VPN that can replace Glorytun TCP"
|
msgid "A Dead Simple VPN is a TCP VPN that can replace Glorytun TCP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:281
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:291
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:283
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:293
|
||||||
msgid "A Dead Simple VPN key"
|
msgid "A Dead Simple VPN key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -19,11 +19,11 @@ msgstr ""
|
||||||
msgid "API username to retrieve personnalized settings from the server."
|
msgid "API username to retrieve personnalized settings from the server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:794
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:804
|
||||||
msgid "APN"
|
msgid "APN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:713
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:723
|
||||||
msgid "Accept IPv6 RA"
|
msgid "Accept IPv6 RA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ msgstr ""
|
||||||
msgid "Add a new server"
|
msgid "Add a new server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:974
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:984
|
||||||
msgid "Add an interface"
|
msgid "Add an interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ msgstr ""
|
||||||
msgid "Advanced settings"
|
msgid "Advanced settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:363
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:373
|
||||||
msgid ""
|
msgid ""
|
||||||
"All VPN available here can do aggregation over MPTCP or using own internal "
|
"All VPN available here can do aggregation over MPTCP or using own internal "
|
||||||
"method."
|
"method."
|
||||||
|
@ -54,18 +54,18 @@ msgstr ""
|
||||||
msgid "All router settings"
|
msgid "All router settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:255
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:265
|
||||||
msgid ""
|
msgid ""
|
||||||
"An Advanced Encryption Standard (AES) instruction set is integrated in the "
|
"An Advanced Encryption Standard (AES) instruction set is integrated in the "
|
||||||
"processor."
|
"processor."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:820
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:830
|
||||||
msgid "Authentication Type"
|
msgid "Authentication Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:858
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:868
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:874
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:884
|
||||||
msgid "Backup"
|
msgid "Backup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ msgstr ""
|
||||||
msgid "Big time difference between the server and the router"
|
msgid "Big time difference between the server and the router"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:543
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:553
|
||||||
msgid "Bridge"
|
msgid "Bridge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -94,16 +94,16 @@ msgstr ""
|
||||||
msgid "Bridge can't have multipath enabled"
|
msgid "Bridge can't have multipath enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:266
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:276
|
||||||
msgid "By default VPN is used for any traffic that is not TCP."
|
msgid "By default VPN is used for any traffic that is not TCP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:200
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:210
|
||||||
msgid ""
|
msgid ""
|
||||||
"By default proxy is used for any traffic that is TCP (and UDP for V2Ray)."
|
"By default proxy is used for any traffic that is TCP (and UDP for V2Ray)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:825
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:835
|
||||||
msgid "CHAP"
|
msgid "CHAP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -127,19 +127,19 @@ msgstr ""
|
||||||
msgid "Can\\'t ping server"
|
msgid "Can\\'t ping server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:394
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:404
|
||||||
msgid "China"
|
msgid "China"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:547
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:557
|
||||||
msgid ""
|
msgid ""
|
||||||
"Choose MacVLAN if you want to create a virtual interface based on a physical "
|
"Choose MacVLAN if you want to create a virtual interface based on a physical "
|
||||||
"interface."
|
"interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:481
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:491
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:567
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:577
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:626
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:636
|
||||||
msgid "Choose physical interface."
|
msgid "Choose physical interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -147,20 +147,20 @@ msgstr ""
|
||||||
msgid "Core temp:"
|
msgid "Core temp:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:389
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:399
|
||||||
msgid "Country"
|
msgid "Country"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:386
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:396
|
||||||
msgid "Country settings"
|
msgid "Country settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:433
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:443
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:578
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:588
|
||||||
msgid "DHCP"
|
msgid "DHCP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:579
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:589
|
||||||
msgid "DHCPv6"
|
msgid "DHCPv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -172,22 +172,22 @@ msgstr ""
|
||||||
msgid "Debug"
|
msgid "Debug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:202
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:212
|
||||||
msgid "Default Proxy"
|
msgid "Default Proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:316
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:326
|
||||||
msgid "Default VPN"
|
msgid "Default VPN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:66
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:66
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:522
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:532
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:720
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:730
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:747
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:757
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:768
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:778
|
||||||
msgid "Device"
|
msgid "Device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -261,12 +261,12 @@ msgid "Disable tracebox test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:178
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:178
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:856
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:866
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:872
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:882
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:918
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:928
|
||||||
msgid "Download speed (Kb/s)"
|
msgid "Download speed (Kb/s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -274,12 +274,24 @@ msgstr ""
|
||||||
msgid "Dynamic change"
|
msgid "Dynamic change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:339
|
||||||
|
msgid "Enable Bridge Acceleration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:198
|
||||||
|
msgid "Enable DNS64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:333
|
||||||
|
msgid "Enable Fast Patch offloading for connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:187
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:187
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:175
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:175
|
||||||
msgid "Enable IPv6"
|
msgid "Enable IPv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:908
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:918
|
||||||
msgid "Enable SQM"
|
msgid "Enable SQM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -296,16 +308,16 @@ msgid "Enable debug logs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:179
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:179
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:855
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:865
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:871
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:881
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:238
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:248
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:259
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:269
|
||||||
msgid "Encryption method is used for Shadowsocks, V2Ray, Glorytun and OpenVPN."
|
msgid "Encryption method is used for Shadowsocks, V2Ray, Glorytun and OpenVPN."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -313,7 +325,7 @@ msgstr ""
|
||||||
msgid "Filesystem is readonly"
|
msgid "Filesystem is readonly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:398
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:408
|
||||||
msgid "For China, set an accessible DNS and disable DNSSEC."
|
msgid "For China, set an accessible DNS and disable DNSSEC."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -325,7 +337,7 @@ msgstr ""
|
||||||
msgid "Force retrieve settings"
|
msgid "Force retrieve settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:814
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:824
|
||||||
msgid "GPRS only"
|
msgid "GPRS only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,12 +350,12 @@ msgstr ""
|
||||||
msgid "Gateway IPv6 DOWN"
|
msgid "Gateway IPv6 DOWN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:274
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:284
|
||||||
msgid "Glorytun TCP is used by default for UDP and ICMP"
|
msgid "Glorytun TCP is used by default for UDP and ICMP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:269
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:279
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:271
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:281
|
||||||
msgid "Glorytun key"
|
msgid "Glorytun key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -383,17 +395,17 @@ msgstr ""
|
||||||
msgid "IPv4 TCP SYN retries2"
|
msgid "IPv4 TCP SYN retries2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:489
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:499
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:632
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:642
|
||||||
msgid "IPv4 address"
|
msgid "IPv4 address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:648
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:658
|
||||||
msgid "IPv4 gateway"
|
msgid "IPv4 gateway"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:495
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:505
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:642
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:652
|
||||||
msgid "IPv4 netmask"
|
msgid "IPv4 netmask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -401,13 +413,13 @@ msgstr ""
|
||||||
msgid "IPv6 Prefix"
|
msgid "IPv6 Prefix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:662
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:672
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:689
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:699
|
||||||
msgid "IPv6 address"
|
msgid "IPv6 address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:676
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:686
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:699
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:709
|
||||||
msgid "IPv6 gateway"
|
msgid "IPv6 gateway"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -428,16 +440,20 @@ msgstr ""
|
||||||
msgid "IPv6:"
|
msgid "IPv6:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:508
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:203
|
||||||
|
msgid "If host support NAT64, you can enable DNS64 support."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:518
|
||||||
msgid "Interfaces settings"
|
msgid "Interfaces settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:223
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:233
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:233
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:274
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:243
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:286
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:284
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:298
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:296
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:310
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:308
|
||||||
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:320
|
||||||
msgid "Key is retrieved from server API by default."
|
msgid "Key is retrieved from server API by default."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -447,21 +463,21 @@ msgid ""
|
||||||
"settings from OpenMPTCProuter."
|
"settings from OpenMPTCProuter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:406
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:416
|
||||||
msgid "LAN interfaces settings"
|
msgid "LAN interfaces settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:812
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:822
|
||||||
msgid "LTE"
|
msgid "LTE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:417
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:427
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:528
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:538
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:423
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:433
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:533
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:543
|
||||||
msgid "Label for the interface"
|
msgid "Label for the interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -479,12 +495,12 @@ msgstr ""
|
||||||
msgid "Load:"
|
msgid "Load:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:298
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:308
|
||||||
msgid "MLVPN can replace Glorytun with connections with same latency"
|
msgid "MLVPN can replace Glorytun with connections with same latency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:293
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:303
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:295
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:305
|
||||||
msgid "MLVPN password"
|
msgid "MLVPN password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -496,27 +512,27 @@ msgstr ""
|
||||||
msgid "MPTCP may not be enabled on the server"
|
msgid "MPTCP may not be enabled on the server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:372
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:382
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:898
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:908
|
||||||
msgid "MPTCP over VPN"
|
msgid "MPTCP over VPN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:369
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:379
|
||||||
msgid "MPTCP over VPN settings"
|
msgid "MPTCP over VPN settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:370
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:380
|
||||||
msgid ""
|
msgid ""
|
||||||
"MPTCP over VPN should be used only when Multipath TCP is blocked on a "
|
"MPTCP over VPN should be used only when Multipath TCP is blocked on a "
|
||||||
"connection."
|
"connection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:542
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:552
|
||||||
msgid "MacVLAN"
|
msgid "MacVLAN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:857
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:867
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:873
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:883
|
||||||
msgid "Master"
|
msgid "Master"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -524,23 +540,23 @@ msgstr ""
|
||||||
msgid "Master interface selection"
|
msgid "Master interface selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:336
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:358
|
||||||
msgid "Maximum scaling CPU frequency"
|
msgid "Maximum scaling CPU frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:330
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:352
|
||||||
msgid "Minimum scaling CPU frequency"
|
msgid "Minimum scaling CPU frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:809
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:819
|
||||||
msgid "Modem default"
|
msgid "Modem default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:843
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:853
|
||||||
msgid "Modem init timeout"
|
msgid "Modem init timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:580
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:590
|
||||||
msgid "ModemManager"
|
msgid "ModemManager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -548,8 +564,8 @@ msgstr ""
|
||||||
msgid "More than one default VPN is enabled"
|
msgid "More than one default VPN is enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:852
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:862
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:868
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:878
|
||||||
msgid "Multipath TCP"
|
msgid "Multipath TCP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,11 +586,11 @@ msgstr ""
|
||||||
msgid "Multipath seems to be blocked on the connection"
|
msgid "Multipath seems to be blocked on the connection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:581
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:591
|
||||||
msgid "NCM"
|
msgid "NCM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:823
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:833
|
||||||
msgid "NONE"
|
msgid "NONE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -656,12 +672,12 @@ msgstr ""
|
||||||
msgid "No server defined"
|
msgid "No server defined"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:244
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:254
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:392
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:402
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:541
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:551
|
||||||
msgid "Normal"
|
msgid "Normal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -687,11 +703,11 @@ msgstr ""
|
||||||
msgid "On wizard change"
|
msgid "On wizard change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:212
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:222
|
||||||
msgid "Only ShadowSocks is supported with server multiple IPs for now."
|
msgid "Only ShadowSocks is supported with server multiple IPs for now."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:862
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:872
|
||||||
msgid ""
|
msgid ""
|
||||||
"Only one interface must be set as \"Master\", this should be the most stable "
|
"Only one interface must be set as \"Master\", this should be the most stable "
|
||||||
"interface."
|
"interface."
|
||||||
|
@ -705,7 +721,7 @@ msgstr ""
|
||||||
msgid "OpenMPTCProuter"
|
msgid "OpenMPTCProuter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:363
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:373
|
||||||
msgid "OpenVPN can't be used in multi VPS configuration."
|
msgid "OpenVPN can't be used in multi VPS configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -713,8 +729,8 @@ msgstr ""
|
||||||
msgid "Optimize for latency instead of bandwidth"
|
msgid "Optimize for latency instead of bandwidth"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:434
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:444
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:584
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:594
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -722,41 +738,41 @@ msgstr ""
|
||||||
msgid "Other settings"
|
msgid "Other settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:824
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:834
|
||||||
msgid "PAP"
|
msgid "PAP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:826
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:836
|
||||||
msgid "PAP/CHAP"
|
msgid "PAP/CHAP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:837
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:847
|
||||||
msgid "PAP/CHAP password"
|
msgid "PAP/CHAP password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:831
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:841
|
||||||
msgid "PAP/CHAP username"
|
msgid "PAP/CHAP username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:800
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:810
|
||||||
msgid "PIN code"
|
msgid "PIN code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:582
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:592
|
||||||
msgid "PPPoE"
|
msgid "PPPoE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:446
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:456
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:552
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:562
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:593
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:603
|
||||||
msgid "Physical interface"
|
msgid "Physical interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:810
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:820
|
||||||
msgid "Prefer LTE"
|
msgid "Prefer LTE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:811
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:821
|
||||||
msgid "Prefer UMTS"
|
msgid "Prefer UMTS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -764,8 +780,8 @@ msgstr ""
|
||||||
msgid "Primary server IP"
|
msgid "Primary server IP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:428
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:438
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:573
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:583
|
||||||
msgid "Protocol"
|
msgid "Protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -773,7 +789,7 @@ msgstr ""
|
||||||
msgid "Proxy is DISABLED"
|
msgid "Proxy is DISABLED"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:199
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:209
|
||||||
msgid "Proxy settings"
|
msgid "Proxy settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -781,15 +797,19 @@ msgstr ""
|
||||||
msgid "Proxy traffic:"
|
msgid "Proxy traffic:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:583
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:593
|
||||||
msgid "QMI"
|
msgid "QMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:330
|
||||||
|
msgid "Qualcomm Shortcut FE driver"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:52
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:52
|
||||||
msgid "Redirects all ports from server to this router"
|
msgid "Redirects all ports from server to this router"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:984
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:994
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -801,8 +821,8 @@ msgstr ""
|
||||||
msgid "Retrieve settings from server"
|
msgid "Retrieve settings from server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:362
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:384
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:983
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:993
|
||||||
msgid "Save & Apply"
|
msgid "Save & Apply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -814,7 +834,7 @@ msgstr ""
|
||||||
msgid "Save vnstats stats"
|
msgid "Save vnstats stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:342
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:364
|
||||||
msgid "Scaling governor"
|
msgid "Scaling governor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -822,7 +842,7 @@ msgstr ""
|
||||||
msgid "Secondary server IP"
|
msgid "Secondary server IP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:977
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:987
|
||||||
msgid "Select the device you want to base the interface on."
|
msgid "Select the device you want to base the interface on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -856,27 +876,27 @@ msgstr ""
|
||||||
msgid "Server username"
|
msgid "Server username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:806
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:816
|
||||||
msgid "Service Type"
|
msgid "Service Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:380
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:390
|
||||||
msgid "Set VPN to use for MPTCP over VPN."
|
msgid "Set VPN to use for MPTCP over VPN."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:637
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:647
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:667
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:677
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:694
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:704
|
||||||
msgid "Set an IP in the same network as the modem"
|
msgid "Set an IP in the same network as the modem"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:387
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:397
|
||||||
msgid "Set configuration for countries with some specificities."
|
msgid "Set configuration for countries with some specificities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:653
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:663
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:681
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:691
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:704
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:714
|
||||||
msgid "Set here IP of the modem"
|
msgid "Set here IP of the modem"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -884,24 +904,24 @@ msgstr ""
|
||||||
msgid "Set server as master"
|
msgid "Set server as master"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:211
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:221
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set the default Proxy used for TCP when ShadowSocks is enabled, for TCP and "
|
"Set the default Proxy used for TCP when ShadowSocks is enabled, for TCP and "
|
||||||
"UDP when V2Ray is enabled."
|
"UDP when V2Ray is enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:363
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:373
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set the default VPN used for ICMP (and UDP if proxy used is shadowsocks), "
|
"Set the default VPN used for ICMP (and UDP if proxy used is shadowsocks), "
|
||||||
"for all traffic if proxy is disabled."
|
"for all traffic if proxy is disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:928
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:938
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set value between 80-95% of max download speed link. 0 to disable SQM/QoS."
|
"Set value between 80-95% of max download speed link. 0 to disable SQM/QoS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:944
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:954
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set value between 80-95% of max upload speed link. 0 to disable SQM/QoS."
|
"Set value between 80-95% of max upload speed link. 0 to disable SQM/QoS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -914,12 +934,12 @@ msgstr ""
|
||||||
msgid "ShadowSocks is not running"
|
msgid "ShadowSocks is not running"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:223
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:233
|
||||||
msgid "ShadowSocks is used for TCP."
|
msgid "ShadowSocks is used for TCP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:218
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:228
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:220
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:230
|
||||||
msgid "ShadowSocks key"
|
msgid "ShadowSocks key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -931,8 +951,8 @@ msgstr ""
|
||||||
msgid "Show all settings"
|
msgid "Show all settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:432
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:442
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:577
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:587
|
||||||
msgid "Static address"
|
msgid "Static address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -940,7 +960,7 @@ msgstr ""
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:327
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:349
|
||||||
msgid "Systems settings"
|
msgid "Systems settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -951,7 +971,7 @@ msgid ""
|
||||||
"local end."
|
"local end."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:257
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is no Advanced Encryption Standard (AES) instruction set integrated in "
|
"There is no Advanced Encryption Standard (AES) instruction set integrated in "
|
||||||
"the processor, you should use chacha20."
|
"the processor, you should use chacha20."
|
||||||
|
@ -974,20 +994,20 @@ msgstr ""
|
||||||
msgid "Total traffic:"
|
msgid "Total traffic:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:538
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:548
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:310
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:320
|
||||||
msgid "UBOND can replace Glorytun with connections with same latency"
|
msgid "UBOND can replace Glorytun with connections with same latency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:305
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:315
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:307
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:317
|
||||||
msgid "UBOND password"
|
msgid "UBOND password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:813
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:823
|
||||||
msgid "UMTS/GPRS"
|
msgid "UMTS/GPRS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1004,7 +1024,7 @@ msgstr ""
|
||||||
msgid "Update server"
|
msgid "Update server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:934
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:944
|
||||||
msgid "Upload speed (Kb/s)"
|
msgid "Upload speed (Kb/s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1013,8 +1033,8 @@ msgstr ""
|
||||||
msgid "Uptime:"
|
msgid "Uptime:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:923
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:933
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:939
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:949
|
||||||
msgid "Used by Glorytun UDP and SQM/QoS if enabled. 0 to use default value."
|
msgid "Used by Glorytun UDP and SQM/QoS if enabled. 0 to use default value."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1022,20 +1042,20 @@ msgstr ""
|
||||||
msgid "V2Ray is not running"
|
msgid "V2Ray is not running"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:233
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:243
|
||||||
msgid "V2Ray is used for TCP and UDP."
|
msgid "V2Ray is used for TCP and UDP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:230
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:240
|
||||||
msgid "V2Ray user"
|
msgid "V2Ray user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:228
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:238
|
||||||
msgid "V2Ray user id"
|
msgid "V2Ray user id"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:622
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:632
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:623
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:633
|
||||||
msgid "VLAN"
|
msgid "VLAN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1043,7 +1063,7 @@ msgstr ""
|
||||||
msgid "VPN is not running"
|
msgid "VPN is not running"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:265
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:275
|
||||||
msgid "VPN settings"
|
msgid "VPN settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1079,7 +1099,7 @@ msgstr ""
|
||||||
msgid "Wizard"
|
msgid "Wizard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:393
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:403
|
||||||
msgid "World"
|
msgid "World"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1088,15 +1108,15 @@ msgstr ""
|
||||||
msgid "You"
|
msgid "You"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:903
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:913
|
||||||
msgid "You can enable MPTCP over VPN if your provider filter Multipath TCP."
|
msgid "You can enable MPTCP over VPN if your provider filter Multipath TCP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:438
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:448
|
||||||
msgid "You can use DHCP if you have multiple real ethernet ports."
|
msgid "You can use DHCP if you have multiple real ethernet ports."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:588
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:598
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can use DHCP if you have multiple real ethernet ports. Select other if "
|
"You can use DHCP if you have multiple real ethernet ports. Select other if "
|
||||||
"you want to use another protocol available in Network Interfaces page."
|
"you want to use another protocol available in Network Interfaces page."
|
||||||
|
@ -1106,7 +1126,7 @@ msgstr ""
|
||||||
msgid "You can use a public IPv6 prefix only if you set only one server."
|
msgid "You can use a public IPv6 prefix only if you set only one server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:509
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:519
|
||||||
msgid "You must disable DHCP on your modems and set IP in different networks."
|
msgid "You must disable DHCP on your modems and set IP in different networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1114,7 +1134,7 @@ msgstr ""
|
||||||
msgid "You should disable IPv6 here if server doesn't provide IPv6."
|
msgid "You should disable IPv6 here if server doesn't provide IPv6."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:913
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:923
|
||||||
msgid "You should disable SQM for LTE or any interfaces with variable speed."
|
msgid "You should disable SQM for LTE or any interfaces with variable speed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1130,7 +1150,7 @@ msgstr ""
|
||||||
msgid "address:"
|
msgid "address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:815
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:825
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1170,7 +1190,7 @@ msgstr ""
|
||||||
msgid "operator:"
|
msgid "operator:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:248
|
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:258
|
||||||
msgid "other"
|
msgid "other"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue