diff options
author | Stan Grishin <stangri@melmac.net> | 2021-03-09 20:35:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 20:35:28 -0800 |
commit | efecdae6524c669e2edfe8cb21cfd393904c3437 (patch) | |
tree | 5faed523116d429f1c418652fa9004c57381237a /applications/luci-app-simple-adblock/luasrc/model | |
parent | b79a41c4939ff78fc95a786f37272905b427173d (diff) | |
parent | 13c6ff1297acfd16508c25f21f773b7e0fd8654c (diff) |
Merge pull request #4885 from stangri/master-luci-app-simple-adblock
luci-app-simple-adblock: bugfix: template layout on theme-openwrt-2020
Diffstat (limited to 'applications/luci-app-simple-adblock/luasrc/model')
-rw-r--r-- | applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua b/applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua index dfe3b8a365..b60123e5d5 100644 --- a/applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua +++ b/applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua @@ -195,7 +195,7 @@ else ss = h:option(DummyValue, "_dummy", translate("Service Status")) ss.template = "simple-adblock/status" if tmpfsStatus == "statusSuccess" then - ss.value = translatef("%s is blocking %s domains (with %s).", packageVersion, getFileLines(outputFile), targetDNS) + ss.value = translatef("Blocking %s domains (with %s).", getFileLines(outputFile), targetDNS) else ss.value = statusTable[tmpfsStatus] end @@ -206,7 +206,7 @@ else end if tmpfsError then es = h:option(DummyValue, "_dummy", translate("Collected Errors")) - es.template = "simple-adblock/error" + es.template = "simple-adblock/status" es.value = "" local err, e, url for err in tmpfsError:gmatch("[%p%w]+") do @@ -220,7 +220,7 @@ else end end if packageVersion ~= "" then - buttons = h:option(DummyValue, "_dummy") + buttons = h:option(DummyValue, "_dummy", translate("Service Control")) buttons.template = packageName .. "/buttons" end end |