Merge pull request #1083 from dibdot/luci-app-adblock
authorHannu Nyman <hannu.nyman@iki.fi>
Mon, 27 Mar 2017 11:25:49 +0000 (14:25 +0300)
committerGitHub <noreply@github.com>
Mon, 27 Mar 2017 11:25:49 +0000 (14:25 +0300)
luci-app-adblock: small fixes in overview tab

applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua
applications/luci-app-adblock/luasrc/model/cbi/adblock/whitelist_tab.lua
applications/luci-app-adblock/luasrc/view/adblock/logread.htm
applications/luci-app-adblock/luasrc/view/adblock/query.htm

index de24d77..fc6b812 100644 (file)
@@ -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 .. ").<br />")
+       translatef("This form allows you to modify the content of the adblock blacklist (%s).<br />", 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")
index 52db9a6..955969e 100644 (file)
@@ -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 .. ").<br />")
+       translatef("This form allows you to modify the content of the adblock whitelist (%s).<br />", 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")
index 4a5585f..ce842a8 100644 (file)
@@ -8,7 +8,7 @@ This is free software, licensed under the Apache License, Version 2.0
 
 <div class="cbi-map">
        <fieldset class="cbi-section">
-               <div class="cbi-section-descr">This form shows the syslog output, pre-filtered for adblock related messages only.</div>
+               <div class="cbi-section-descr"><%:This form shows the syslog output, pre-filtered for adblock related messages only.%></div>
                <textarea id="logread_id" style="width: 100%; height: 450px; border: 1px solid #cccccc; padding: 5px; font-size: 12px; font-family: monospace; resize: none;" readonly="readonly" wrap="off" rows="<%=content:cmatch("\n")+2%>"><%=content:pcdata()%></textarea>
        </fieldset>
 </div>
index 841a16b..be60630 100644 (file)
@@ -48,7 +48,7 @@ This is free software, licensed under the Apache License, Version 2.0
 <form method="post" action="<%=REQUEST_URI%>">
        <div class="cbi-map">
                <fieldset class="cbi-section">
-                       <div class="cbi-section-descr">This form allows you to query active block lists for certain domains, e.g. for whitelisting.</div>
+                       <div class="cbi-section-descr"><%:This form allows you to query active block lists for certain domains, e.g. for whitelisting.%></div>
                        <div style="width:33%; float:left;">
                                <input style="margin: 5px 0" type="text" value="www.lede-project.org" name="input" />
                                <input type="button" value="<%:Query%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.input)" />