modules/admin-{mini,full}: sort by keys in language selection
This commit is contained in:
parent
f8771c17dc
commit
632abafabf
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ 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
|
||||
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
|
||||
|
|
|
@ -28,7 +28,7 @@ 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
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue