mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-02-06 17:35:12 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import type {I18n, I18nOptions} from 'vue-i18n';
|
||
import {createI18n} from 'vue-i18n';
|
||
import type {App} from 'vue';
|
||
import {localeSetting} from '/@/settings/localSetting';
|
||
import {useAppStore} from '/@/store/modules/app';
|
||
import messages from '@intlify/unplugin-vue-i18n/messages';
|
||
import {unref} from 'vue';
|
||
|
||
export let i18n: ReturnType<typeof createI18n<any>>;
|
||
|
||
const {fallback, availableLocales} = localeSetting;
|
||
|
||
async function createI18nOptions(): Promise<I18nOptions> {
|
||
const appStore = useAppStore();
|
||
const locale = unref(appStore.getLanguage) || 'en-US';
|
||
// setHtmlPageLang(locale);
|
||
// setLoadLocalePool(loadLocalePool => {
|
||
// loadLocalePool.push(locale);
|
||
// });
|
||
|
||
return {
|
||
legacy: false,
|
||
locale,
|
||
fallbackLocale: fallback,
|
||
messages: {
|
||
[locale]: messages[locale],
|
||
},
|
||
availableLocales: availableLocales,
|
||
sync: false, //If you don’t want to inherit locale from global scope, you need to set sync of i18n component option to false.
|
||
silentTranslationWarn: true, // true - warning off
|
||
missingWarn: false,
|
||
silentFallbackWarn: true,
|
||
};
|
||
}
|
||
|
||
// setup i18n instance with glob
|
||
export async function setupI18n(app: App) {
|
||
const options = await createI18nOptions();
|
||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||
// @ts-ignore
|
||
i18n = createI18n(options) as I18n;
|
||
app.use(i18n);
|
||
}
|