modules/admin-{mini,full}: sort by keys in language selection
[project/luci.git] / modules / admin-full / luasrc / model / cbi / admin_index / luci.lua
index 20d50cc..caf7c97 100644 (file)
@@ -28,8 +28,12 @@ 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.access(i18ndir .. k:gsub("_", "-") .. ".lua") then
+for k, v in luci.util.kspairs(luci.config.languages) do
+       local file = i18ndir .. k:gsub("_", "-")
+       if k:sub(1, 1) ~= "." and (
+               luci.fs.access(file .. ".lua") or
+               luci.fs.access(file .. ".lua.gz")
+       ) then
                l:value(k, v)
        end
 end