Automatic language detection
[project/luci.git] / modules / admin-mini / luasrc / model / cbi / mini / luci.lua
index 8d4e705..9eea871 100644 (file)
@@ -25,10 +25,11 @@ end
 c = m:section(NamedSection, "main", "core", translate("general"))
 
 l = c:option(ListValue, "lang", translate("language"))
+l:value("auto")
 
 local i18ndir = luci.i18n.i18ndir .. "default."
 for k, v in pairs(luci.config.languages) do
-       if k:sub(1, 1) ~= "." and luci.fs.isfile(i18ndir .. k .. ".lua") then
+       if k:sub(1, 1) ~= "." and luci.fs.access(i18ndir .. k:gsub("_", "-") .. ".lua") then
                l:value(k, v)
        end
 end