mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix missing localization for unknown locale
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { registerDebugFunction } from './power-user.js';
|
||||
import { updateSecretDisplay } from './secrets.js'
|
||||
import { updateSecretDisplay } from './secrets.js';
|
||||
|
||||
const storageKey = 'language';
|
||||
const overrideLanguage = localStorage.getItem(storageKey);
|
||||
@ -42,7 +42,8 @@ async function getMissingTranslations() {
|
||||
const missingData = [];
|
||||
|
||||
// Determine locales to search for untranslated strings
|
||||
const langsToProcess = localeFile == 'en' ? langs : [findLang(localeFile)];
|
||||
const isNotSupported = !findLang(localeFile);
|
||||
const langsToProcess = (isNotSupported || localeFile == 'en') ? langs : [findLang(localeFile)];
|
||||
|
||||
for (const language of langsToProcess) {
|
||||
const localeData = await getLocaleData(language.lang);
|
||||
|
Reference in New Issue
Block a user