luci-app-adblock: Fix duplicated text
authorINAGAKI Hiroshi <musashino.open@gmail.com>
Tue, 9 May 2017 10:10:21 +0000 (19:10 +0900)
committerINAGAKI Hiroshi <musashino.open@gmail.com>
Tue, 9 May 2017 10:14:24 +0000 (19:14 +0900)
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>
applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua

index 722b23f..59cd1e8 100644 (file)
@@ -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