diff options
author | Stan Grishin <stangri@melmac.net> | 2020-05-02 15:31:38 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.net> | 2020-05-02 15:31:38 +0000 |
commit | 06deeb3c654959c50f5f252750d96b79bf0fb29c (patch) | |
tree | 96ea3899d128d70d842162c8ea5149a6e5f297be /applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua | |
parent | 59953d3a7db07729aceac77fd91b012c579439a1 (diff) |
luci-app-https-dns-proxy: bugfix: remove escaped double-quotes from translateable resources
Signed-off-by: Stan Grishin <stangri@melmac.net>
Diffstat (limited to 'applications/luci-app-https-dns-proxy/luasrc/model/cbi/https-dns-proxy.lua')
-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 4b3314e91a..c57de38724 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 @@ -110,7 +110,7 @@ end create_helper_text() s3 = m:section(TypedSection, "https-dns-proxy", translate("Instances"), - translatef("When you add/remove any instances below, they will be used to override the 'DNS forwardings' section of <a href=\"%s\">DHCP and DNS</a>.", dispatcher.build_url("admin/network/dhcp")) .. helperText) + translatef("When you add/remove any instances below, they will be used to override the 'DNS forwardings' section of %sDHCP and DNS%s.", "<a href=\"" .. dispatcher.build_url("admin/network/dhcp") .. "\">", "</a>") .. helperText) s3.template = "cbi/tblsection" s3.sortable = false s3.anonymous = true |