diff options
Diffstat (limited to 'script')
-rw-r--r-- | script/language.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/script/language.lua b/script/language.lua index 771dc948..22546fb8 100644 --- a/script/language.lua +++ b/script/language.lua @@ -6,7 +6,9 @@ local function supportLanguage() local list = {} for path in fs.pairs(ROOT / 'locale') do if fs.is_directory(path) then - list[#list+1] = path:filename():string():lower() + local id = path:filename():string():lower() + list[#list+1] = id + list[id] = true end end return list |