diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2017-05-09 19:10:21 +0900 |
---|---|---|
committer | INAGAKI Hiroshi <musashino.open@gmail.com> | 2017-05-09 19:14:24 +0900 |
commit | bc6e0c217f2cad375a4222c617f7005d43aac5a4 (patch) | |
tree | 6c8c9bd28b6f375cc298d4a70c907aaf3a0cb5c5 /applications/luci-app-adblock | |
parent | 0145e9f30720fca60624a6bc6cce952560bebe26 (diff) |
luci-app-adblock: Fix duplicated text
Added text "Input file not found. Please check your configuration." by
commit 9b4b1df is duplicated. so I replaced the text with previously
existed.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'applications/luci-app-adblock')
-rw-r--r-- | applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua | 2 |
1 files changed, 1 insertions, 1 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 722b23f20..59cd1e80f 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 @@ -8,7 +8,7 @@ local adbinput = uci.get("adblock", "blacklist", "adb_src" or "/etc/adblock/adbl if not nixio.fs.access(adbinput) then m = SimpleForm("error", nil, - translate("Input file not found. Please check your configuration.")) + translate("Input file not found, please check your configuration.")) m.reset = false m.submit = false return m |