diff options
Diffstat (limited to 'modules/admin-full')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_index/luci.lua | 5 |
1 files changed, 1 insertions, 4 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 30e8ddcc1..dc9eb1e9e 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_index/luci.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_index/luci.lua @@ -32,10 +32,7 @@ l:value("auto") local i18ndir = luci.i18n.i18ndir .. "default." for k, v in luci.util.kspairs(luci.config.languages) do local file = i18ndir .. k:gsub("_", "-") - if k:sub(1, 1) ~= "." and ( - fs.access(file .. ".lua") or - fs.access(file .. ".lua.gz") - ) then + if k:sub(1, 1) ~= "." and fs.access(file .. ".lmo") then l:value(k, v) end end |