fix: do not change language to the current one

This commit is contained in:
Dominik Pschenitschni 2022-10-24 18:59:04 +02:00
parent 5ec106eafe
commit 3114e030b2
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 8 additions and 9 deletions

View File

@ -50,18 +50,17 @@ export async function loadLanguageAsync(lang: SupportedLocale) {
throw new Error()
}
if (
// If the same language
i18n.global.locale === lang ||
// If the language was already loaded
i18n.global.availableLocales.includes(lang)
) {
return setI18nLanguage(lang)
// do not change language to the current one
if (i18n.global.locale === lang) {
return
}
// If the language hasn't been loaded yet
const messages = await import(`./lang/${lang}.json`)
i18n.global.setLocaleMessage(lang, messages.default)
if (!i18n.global.availableLocales.includes(lang)) {
const messages = await import(`./lang/${lang}.json`)
i18n.global.setLocaleMessage(lang, messages.default)
}
return setI18nLanguage(lang)
}