mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-04-03 13:41:07 +02:00
Merge pull request #2503 from SillyTavern/fix-locale-init
Move locale file load awaits into its init function
This commit is contained in:
commit
2f7a60ef36
@ -4,10 +4,10 @@ import { updateSecretDisplay } from './secrets.js';
|
|||||||
const storageKey = 'language';
|
const storageKey = 'language';
|
||||||
const overrideLanguage = localStorage.getItem(storageKey);
|
const overrideLanguage = localStorage.getItem(storageKey);
|
||||||
const localeFile = String(overrideLanguage || navigator.language || navigator.userLanguage || 'en').toLowerCase();
|
const localeFile = String(overrideLanguage || navigator.language || navigator.userLanguage || 'en').toLowerCase();
|
||||||
const langs = await fetch('/locales/lang.json').then(response => response.json());
|
var langs;
|
||||||
// Don't change to let/const! It will break module loading.
|
// Don't change to let/const! It will break module loading.
|
||||||
// eslint-disable-next-line prefer-const
|
// eslint-disable-next-line prefer-const
|
||||||
var localeData = await getLocaleData(localeFile);
|
var localeData;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An observer that will check if any new i18n elements are added to the document
|
* An observer that will check if any new i18n elements are added to the document
|
||||||
@ -214,7 +214,9 @@ function addLanguagesToDropdown() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function initLocales() {
|
export async function initLocales() {
|
||||||
|
langs = await fetch('/locales/lang.json').then(response => response.json());
|
||||||
|
localeData = await getLocaleData(localeFile);
|
||||||
applyLocale();
|
applyLocale();
|
||||||
addLanguagesToDropdown();
|
addLanguagesToDropdown();
|
||||||
updateSecretDisplay();
|
updateSecretDisplay();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user