update 2025-05-17 00:27:47
This commit is contained in:
parent
34e1949617
commit
37b7cf03e7
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"luci-app-easytier": {
|
"luci-app-easytier": {
|
||||||
"description": "Grant UCI access for luci-app-easytier",
|
"description": "Grant UCI access for luci-app-easytier",
|
||||||
"read": {
|
"read": {
|
||||||
"uci": [ "easytier" ]
|
"uci": [ "easytier" ]
|
||||||
},
|
},
|
||||||
"write": {
|
"write": {
|
||||||
"uci": [ "easytier" ]
|
"uci": [ "easytier" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -312,7 +312,10 @@ o.default = "0"
|
||||||
o:depends({ _tcp_node_bool = "1" })
|
o:depends({ _tcp_node_bool = "1" })
|
||||||
|
|
||||||
---- DNS Forward Mode
|
---- DNS Forward Mode
|
||||||
o = s:option(ListValue, "dns_mode", translate("Filter Mode"))
|
o = s:option(ListValue, "dns_mode", translate("Filter Mode"),
|
||||||
|
"<font color='red'>" .. translate(
|
||||||
|
"If the node uses Xray/Sing-Box shunt, select the matching filter mode (Xray/Sing-Box).") ..
|
||||||
|
"</font>")
|
||||||
o:depends({ _tcp_node_bool = "1" })
|
o:depends({ _tcp_node_bool = "1" })
|
||||||
if api.is_finded("dns2socks") then
|
if api.is_finded("dns2socks") then
|
||||||
o:value("dns2socks", "dns2socks")
|
o:value("dns2socks", "dns2socks")
|
||||||
|
|
|
@ -381,7 +381,10 @@ o = s:taboption("DNS", Flag, "filter_proxy_ipv6", translate("Filter Proxy Host I
|
||||||
o.default = "0"
|
o.default = "0"
|
||||||
|
|
||||||
---- DNS Forward Mode
|
---- DNS Forward Mode
|
||||||
o = s:taboption("DNS", ListValue, "dns_mode", translate("Filter Mode"))
|
o = s:taboption("DNS", ListValue, "dns_mode", translate("Filter Mode"),
|
||||||
|
"<font color='red'>" .. translate(
|
||||||
|
"If the node uses Xray/Sing-Box shunt, select the matching filter mode (Xray/Sing-Box).") ..
|
||||||
|
"</font>")
|
||||||
o:value("udp", translatef("Requery DNS By %s", "UDP"))
|
o:value("udp", translatef("Requery DNS By %s", "UDP"))
|
||||||
o:value("tcp", translatef("Requery DNS By %s", "TCP"))
|
o:value("tcp", translatef("Requery DNS By %s", "TCP"))
|
||||||
if chinadns_tls == 0 then
|
if chinadns_tls == 0 then
|
||||||
|
@ -402,7 +405,10 @@ end
|
||||||
|
|
||||||
---- SmartDNS Forward Mode
|
---- SmartDNS Forward Mode
|
||||||
if api.is_finded("smartdns") then
|
if api.is_finded("smartdns") then
|
||||||
o = s:taboption("DNS", ListValue, "smartdns_dns_mode", translate("Filter Mode"))
|
o = s:taboption("DNS", ListValue, "smartdns_dns_mode", translate("Filter Mode"),
|
||||||
|
"<font color='red'>" .. translate(
|
||||||
|
"If the node uses Xray/Sing-Box shunt, select the matching filter mode (Xray/Sing-Box).") ..
|
||||||
|
"</font>")
|
||||||
o:value("socks", "Socks")
|
o:value("socks", "Socks")
|
||||||
if has_singbox then
|
if has_singbox then
|
||||||
o:value("sing-box", "Sing-Box")
|
o:value("sing-box", "Sing-Box")
|
||||||
|
|
|
@ -124,6 +124,9 @@ msgstr "不允许使用私有 IP 地址:%s"
|
||||||
msgid "Filter Mode"
|
msgid "Filter Mode"
|
||||||
msgstr "过滤模式"
|
msgstr "过滤模式"
|
||||||
|
|
||||||
|
msgid "If the node uses Xray/Sing-Box shunt, select the matching filter mode (Xray/Sing-Box)."
|
||||||
|
msgstr "当节点使用 Xray/Sing-Box 分流时,过滤模式需对应选择 Xray/Sing-Box 。"
|
||||||
|
|
||||||
msgid "A/AAAA type"
|
msgid "A/AAAA type"
|
||||||
msgstr "A/AAAA 类型"
|
msgstr "A/AAAA 类型"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue