fix(client): クライアント起動時にも言語ファイルのチェックを行うように

Fix #9005
This commit is contained in:
syuilo 2023-01-21 20:24:15 +09:00
parent dc4fd3e505
commit bd469420fa
2 changed files with 14 additions and 0 deletions

View File

@ -80,6 +80,19 @@ import { claimAchievement, claimedAchievements } from './scripts/achievements';
});
}
//#region Detect language & fetch translations
const localeVersion = miLocalStorage.getItem('localeVersion');
const localeOutdated = (localeVersion == null || localeVersion !== version);
if (localeOutdated) {
const res = await window.fetch(`/assets/locales/${lang}.${version}.json`);
if (res.status === 200) {
miLocalStorage.setItem('locale', await res.text());
miLocalStorage.setItem('localeVersion', version);
location.reload();
}
}
//#endregion
// タッチデバイスでCSSの:hoverを機能させる
document.addEventListener('touchend', () => {}, { passive: true });

View File

@ -19,6 +19,7 @@ type Keys =
'fontSize' |
'ui' |
'locale' |
'localeVersion' |
'theme' |
'customCss' |
'message_drafts' |