1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Merge pull request #266 from Ysurac/develop

sync
This commit is contained in:
suyuan 2022-08-18 17:01:29 +08:00 committed by GitHub
commit abe7648771
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 453 additions and 75 deletions

View file

@ -357,7 +357,6 @@ msgstr "SQM aktiv"
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:952
#, fuzzy
#| msgid "Enable SQM"
msgid "Enable SQM autorate"
msgstr "SQM aktiv"
@ -1418,3 +1417,7 @@ msgstr ""
#~ msgid "Redundant"
#~ msgstr "redundant"
#, fuzzy
#~ msgid "Disable HTTP test on Server API in status page"
#~ msgstr "Server-Ping Status-Prüfung aus"

View file

@ -1560,3 +1560,6 @@ msgstr "whois :"
#~ msgid "MLVPN can replace Glorytun with connection with same latency"
#~ msgstr ""
#~ "MLVPN peut remplacer Glorytun pour les connexions avec la même latence"
#~ msgid "Disable HTTP test on Server API in status page"
#~ msgstr "Désactiver le test HTTP sur l'API du serveur dans la page d'état"

File diff suppressed because it is too large Load diff

View file

@ -269,7 +269,6 @@ msgstr ""
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:347
#, fuzzy
#| msgid "Disabled"
msgid "Disable nDPI"
msgstr "Desactivat"
@ -364,7 +363,6 @@ msgstr "Active SQM"
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:952
#, fuzzy
#| msgid "Enable SQM"
msgid "Enable SQM autorate"
msgstr "Active SQM"
@ -1432,3 +1430,7 @@ msgstr ""
#~ msgid "Redundant"
#~ msgstr "Redondant"
#, fuzzy
#~ msgid "Disable HTTP test on Server API in status page"
#~ msgstr "Desactivar la pròva ping cap al servidor"

View file

@ -211,7 +211,6 @@ msgstr "设备"
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:259
#, fuzzy
#| msgid "Disable HTTP test on Server API in status page"
msgid "Disable HTTP test on Server API"
msgstr "在状态页面中禁用服务器API上的HTTP测试"
@ -343,7 +342,6 @@ msgstr "开启 SQM"
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/wizard.htm:952
#, fuzzy
#| msgid "Enable SQM"
msgid "Enable SQM autorate"
msgstr "开启 SQM"
@ -1195,7 +1193,6 @@ msgstr "启用后将在外部站点上进行检查以获取每个WAN IP和
#: luci-app-openmptcprouter/luasrc/view/openmptcprouter/settings.htm:301
#, fuzzy
#| msgid "When proxy shadowsocks is used, use it for UDP if VPN down"
msgid "When proxy V2Ray is used, use it for UDP"
msgstr "当使用代理shadowsocks时如果VPN关闭将其用于UDP"
@ -1490,3 +1487,6 @@ msgstr "whois查询 :"
#~ msgid "MLVPN can replace Glorytun with connection with same latency"
#~ msgstr ""
#~ "MLVPN peut remplacer Glorytun pour les connexions avec la même latence"
#~ msgid "Disable HTTP test on Server API in status page"
#~ msgstr "在状态页面中禁用服务器API上的HTTP测试"

View file

@ -1037,7 +1037,8 @@ function interfaces_status()
mArray.openmptcprouter["shadowsocks_enabled"] = true
local ss_server = "1"
ucic:foreach("shadowsocks-libev", "server", function(s)
if uci:get("shadowsocks-libev",s[".name"],"disabled") == "0" then
local ss_server_disabled = uci:get("shadowsocks-libev",s[".name"],"disabled") or "0"
if ss_server_disabled == "0" then
ss_server = "0"
end
end)