Files
uosc/scripts/uosc_shared/lib/intl.lua
natural-harmonia-gropius 3c70ffd927 feat: internationalization (#518)
Adds `languages` option to specify localization language priority.
Built in languages can be found in `scripts/uosc_shared/intl`.
2023-04-24 11:37:58 +02:00

62 lines
1.3 KiB
Lua

local locale = {}
-- https://learn.microsoft.com/en-us/windows/apps/publish/publish-your-app/supported-languages?pivots=store-installer-msix#list-of-supported-languages
function get_languages()
local languages = {}
for _, lang in ipairs(split(options.languages, ',')) do
if (lang == 'slang') then
local slang = mp.get_property_native('slang')
if slang then
itable_append(languages, slang)
end
else
itable_append(languages, { lang })
end
end
return languages
end
---@param path string
function get_locale_from_json(path)
local expand_path = mp.command_native({ 'expand-path', path })
local meta, meta_error = utils.file_info(expand_path)
if not meta or not meta.is_file then
return {}
end
local json_file = io.open(expand_path, 'r')
if not json_file then
return {}
end
local json = json_file:read('*all')
json_file:close()
return utils.parse_json(json)
end
function make_locale()
local translations = {}
for _, lang in ipairs(get_languages()) do
if (lang:match('.json$')) then
table_assign(translations, get_locale_from_json(lang))
else
table_assign(translations, get_locale_from_json('~~/scripts/uosc_shared/intl/' .. lang:lower() .. '.json'))
end
end
return translations
end
---@param text string
function t(text)
return locale[text] or text
end
locale = make_locale()
return t