diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-08 18:29:30 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-08 18:29:30 +0000 |
commit | 091857d3a8daf894948987b591010a05f74ef70d (patch) | |
tree | bcc00be8dd73fe97b3c3ff964369a90ccd8cd37e /modules | |
parent | b6d80f297b448416f692bd7a95357a4a31a9391b (diff) |
modules/admin-full: fix missing translation call in previous commit
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_index/luci.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_index/luci.lua b/modules/admin-full/luasrc/model/cbi/admin_index/luci.lua index 463966437..6ecf298eb 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_index/luci.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_index/luci.lua @@ -87,7 +87,7 @@ d.cfgvalue = function(s) return table.concat(files, "") end - return "<em>No files found</em>" + return "<em>" .. translate("No files found") .. "</em>" end c = f:taboption("custom", TextValue, "_custom", translate("Custom files")) |