fix: removed add-intl-directory API

It doesn't make sense for uosc to be the internationalization provider for other scripts.
This commit is contained in:
tomasklaen
2023-05-15 09:51:16 +02:00
parent fb1268f0e4
commit 9c544bf565
3 changed files with 16 additions and 41 deletions

View File

@@ -1,11 +1,11 @@
local intl_directories = {'~~/scripts/uosc_shared/intl/'}
local intl_dir = '~~/scripts/uosc_shared/intl/'
local locale = {}
local cache = {}
local reload_timer = nil
-- 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')
@@ -42,38 +42,10 @@ end
function make_locale()
local translations = {}
local languages = get_languages()
for i = #languages, 1, -1 do
lang = languages[i]
if (lang:match('.json$')) then
table_assign(translations, get_locale_from_json(lang))
elseif (lang == 'en') then
translations = {}
else
for _, path in ipairs(intl_directories) do
table_assign(translations, get_locale_from_json(path .. lang:lower() .. '.json'))
end
end
end
return translations
end
function reload()
reload_timer, cache = nil, {}
locale = make_locale()
end
---@param path string
function add_directory(path)
path = trim_end(trim_end(path, '\\'), '/') .. '/'
if itable_index_of(intl_directories, path) then return end
intl_directories[#intl_directories + 1] = path
if not reload_timer then
reload_timer = mp.add_timeout(0.1, reload)
end
end
---@param text string
function t(text, a)
if not text then return '' end
@@ -84,6 +56,18 @@ function t(text, a)
return cache[key]
end
reload()
-- Load locales
local languages = get_languages()
return {t = t, add_directory = add_directory}
for i = #languages, 1, -1 do
lang = languages[i]
if (lang:match('.json$')) then
table_assign(locale, get_locale_from_json(lang))
elseif (lang == 'en') then
locale = {}
else
table_assign(locale, get_locale_from_json(intl_dir .. lang:lower() .. '.json'))
end
end
return {t = t}