From d3fecae59ebbf4e95e7ca824f0600f801164d03c Mon Sep 17 00:00:00 2001 From: INAGAKI Hiroshi Date: Mon, 27 Mar 2017 14:38:52 +0900 Subject: [PATCH] luci-app-adblock: Fix display issues with translation Fixed display issues when applying translation. Signed-off-by: INAGAKI Hiroshi --- .../luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua | 2 +- .../luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua | 2 +- applications/luci-app-adblock/luasrc/view/adblock/logread.htm | 2 +- applications/luci-app-adblock/luasrc/view/adblock/query.htm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua index de24d77fb..fc6b812d1 100644 --- a/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua @@ -16,7 +16,7 @@ m = SimpleForm("input", nil) m:append(Template("adblock/config_css")) s = m:section(SimpleSection, nil, - translate("This form allows you to modify the content of the adblock blacklist (" .. adbinput .. ").
") + translatef("This form allows you to modify the content of the adblock blacklist (%s).
", adbinput) .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards & regex are not.")) f = s:option(TextValue, "data") diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua index 52db9a694..955969e1f 100644 --- a/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua @@ -16,7 +16,7 @@ m = SimpleForm("input", nil) m:append(Template("adblock/config_css")) s = m:section(SimpleSection, nil, - translate("This form allows you to modify the content of the adblock whitelist (" .. adbinput .. ").
") + translatef("This form allows you to modify the content of the adblock whitelist (%s).
", adbinput) .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards & regex are not.")) f = s:option(TextValue, "data") diff --git a/applications/luci-app-adblock/luasrc/view/adblock/logread.htm b/applications/luci-app-adblock/luasrc/view/adblock/logread.htm index 4a5585fd2..ce842a88e 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/logread.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/logread.htm @@ -8,7 +8,7 @@ This is free software, licensed under the Apache License, Version 2.0
-
This form shows the syslog output, pre-filtered for adblock related messages only.
+
<%:This form shows the syslog output, pre-filtered for adblock related messages only.%>
diff --git a/applications/luci-app-adblock/luasrc/view/adblock/query.htm b/applications/luci-app-adblock/luasrc/view/adblock/query.htm index 841a16b49..be606301e 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/query.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/query.htm @@ -48,7 +48,7 @@ This is free software, licensed under the Apache License, Version 2.0
-
This form allows you to query active block lists for certain domains, e.g. for whitelisting.
+
<%:This form allows you to query active block lists for certain domains, e.g. for whitelisting.%>
-- 2.11.0