mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-04-03 20:41:36 +02:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
|
import { i18n } from '@lingui/core';
|
||
|
import {
|
||
|
detect,
|
||
|
fromNavigator,
|
||
|
fromStorage,
|
||
|
fromUrl,
|
||
|
} from '@lingui/detect-locale';
|
||
|
import Locale from 'intl-locale-textinfo-polyfill';
|
||
|
|
||
|
import { messages } from '../locales/en.po';
|
||
|
import localeMatch from '../utils/locale-match';
|
||
|
|
||
|
const { PHANPY_DEFAULT_LANG } = import.meta.env;
|
||
|
|
||
|
export const DEFAULT_LANG = 'en';
|
||
|
export const LOCALES = [DEFAULT_LANG];
|
||
|
if (import.meta.env.DEV) {
|
||
|
LOCALES.push('pseudo-LOCALE');
|
||
|
}
|
||
|
|
||
|
export async function activateLang(lang) {
|
||
|
if (!lang || lang === DEFAULT_LANG) {
|
||
|
i18n.loadAndActivate({ locale: DEFAULT_LANG, messages });
|
||
|
console.log('💬 ACTIVATE LANG', lang);
|
||
|
} else {
|
||
|
const { messages } = await import(`../locales/${lang}.po`);
|
||
|
i18n.loadAndActivate({ locale: lang, messages });
|
||
|
console.log('💬 ACTIVATE LANG', lang);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
i18n.on('change', () => {
|
||
|
const lang = i18n.locale;
|
||
|
if (lang) {
|
||
|
// LTR or RTL
|
||
|
const { direction } = new Locale(lang).textInfo;
|
||
|
document.documentElement.dir = direction;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export function initActivateLang() {
|
||
|
const lang = detect(
|
||
|
fromUrl('lang'),
|
||
|
fromStorage('lang'),
|
||
|
fromNavigator(),
|
||
|
PHANPY_DEFAULT_LANG,
|
||
|
DEFAULT_LANG,
|
||
|
);
|
||
|
const matchedLang = localeMatch(lang, LOCALES);
|
||
|
activateLang(matchedLang);
|
||
|
|
||
|
// const yes = confirm(t`Reload to apply language setting?`);
|
||
|
// if (yes) {
|
||
|
// window.location.reload();
|
||
|
// }
|
||
|
}
|