From 33e8de874e18a7927912be8764918c88bedbbd7a Mon Sep 17 00:00:00 2001 From: Bard Date: Wed, 17 May 2023 00:34:52 +0800 Subject: [PATCH] luci-app-mosdns: fix translation --- luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua b/luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua index 2db4b25..cb5f08a 100644 --- a/luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua +++ b/luci-app-mosdns/luasrc/model/cbi/mosdns/basic.lua @@ -118,7 +118,7 @@ o.rmempty = false o.default = false o:depends("configfile", "/etc/mosdns/config.yaml") -o = s:taboption("advanced", Flag, "enable_ecs_remote", translate("Enable EDNS client subnet"), translate("Add the EDNS Client Subnet option (ECS) to Remote DNS") .. '
' .. translate("MosDNS will auto identify the IP address subnet segment of your remote connection (.0/24)") .. '
' .. translate("If your remote access network changes, May need restart MosDNS to update the ECS request address")) +o = s:taboption("advanced", Flag, "enable_ecs_remote", translate("Enable EDNS client subnet"), translate("Add the EDNS Client Subnet option (ECS) to Remote DNS") .. '
' .. translate("MosDNS will auto identify the IP address subnet segment of your remote connection (0/24)") .. '
' .. translate("If your remote access network changes, May need restart MosDNS to update the ECS request address")) o.rmempty = false o.default = false o:depends("configfile", "/etc/mosdns/config.yaml")