diff options
author | Stan Grishin <stangri@melmac.ca> | 2023-02-13 22:17:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 22:17:53 -0700 |
commit | 067e180226d76b12ea7cefe1dcee61153a179354 (patch) | |
tree | 7366817b1fd899f5f95d7102b57c3064ecc630bb /applications/luci-app-https-dns-proxy/luasrc/model | |
parent | 7b810bea11866865ee667bf2c2939140914b1447 (diff) | |
parent | 6ee377fd4b388e7878ab9bcb7e9c47e994578be2 (diff) |
Merge pull request #6245 from stangri/master-luci-app-https-dns-proxy
luci-app-https-dns-proxy: update to 2022-10-15-11
Diffstat (limited to 'applications/luci-app-https-dns-proxy/luasrc/model')
-rw-r--r-- | applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua b/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua index 1d7bcb0e8d..8396f46698 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua @@ -120,7 +120,7 @@ if packageStatusCode ~= -1 then end c = m:section(NamedSection, "config", "https-dns-proxy", translate("Configuration")) -d1 = c:option(ListValue, "update_dnsmasq_config", translate("Update DNSMASQ Config on Start/Stop"), translatef("If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS%s will be automatically updated to use selected DoH providers (%smore information%s).", "<a href=\"" .. dispatcher.build_url("admin/network/dhcp") .. "\">", "</a>", "<a href=\"" .. readmeURL .. "#default-settings" .. "\" target=\"_blank\">", "</a>")) +d1 = c:option(ListValue, "dnsmasq_config_update", translate("Update DNSMASQ Config on Start/Stop"), translatef("If update option is selected, the 'DNS forwardings' section of %sDHCP and DNS%s will be automatically updated to use selected DoH providers (%smore information%s).", "<a href=\"" .. dispatcher.build_url("admin/network/dhcp") .. "\">", "</a>", "<a href=\"" .. readmeURL .. "#default-settings" .. "\" target=\"_blank\">", "</a>")) d1:value('*', translate("Update all configs")) local dnsmasq_num = 0 uci:foreach("dhcp", "dnsmasq", function(s) |