If `navigator.languages` returns `['da', 'en-US', 'en']`, and the Danish language is not available, the user interface should be in English. Currently it is shown in Norwegian, because only `'da'` is taken into account when deciding on the preferred language (and `match` selects `nb-NO` using the default `'best fit'` algorithm). While the Norwegian and Danish languages are similar, I would argue that this is a bug, as `navigator.languages` cleary states that the fallback language should be English. Another potential solution would be to pass `{ algorithm: 'lookup' }` to the `match` function. However, this might break some cases when a `'best fit'` approach would be appropriate (e.g. Swiss German falling back to German). See https://helvede.net/@jwcph/113497955274343365.
73 lines
1.8 KiB
JavaScript
73 lines
1.8 KiB
JavaScript
import { i18n } from '@lingui/core';
|
|
import {
|
|
fromNavigator,
|
|
fromStorage,
|
|
fromUrl,
|
|
multipleDetect,
|
|
} from '@lingui/detect-locale';
|
|
import Locale from 'intl-locale-textinfo-polyfill';
|
|
|
|
import { ALL_LOCALES, DEFAULT_LANG } from '../locales';
|
|
import { messages } from '../locales/en.po';
|
|
import localeMatch from '../utils/locale-match';
|
|
|
|
const { PHANPY_DEFAULT_LANG } = import.meta.env;
|
|
|
|
const langFileMaps = {
|
|
// kab: 'kab-KAB',
|
|
};
|
|
|
|
i18n.load(DEFAULT_LANG, messages);
|
|
i18n.on('change', () => {
|
|
const lang = i18n.locale;
|
|
if (lang) {
|
|
// lang
|
|
document.documentElement.lang = lang;
|
|
// LTR or RTL
|
|
try {
|
|
const { direction } = new Locale(lang).textInfo;
|
|
document.documentElement.dir = direction;
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
}
|
|
});
|
|
|
|
export async function activateLang(lang) {
|
|
if (!lang || lang === DEFAULT_LANG) {
|
|
i18n.activate(DEFAULT_LANG);
|
|
console.log('💬 ACTIVATE LANG', DEFAULT_LANG, lang);
|
|
} else {
|
|
try {
|
|
const { messages } = await import(
|
|
`../locales/${langFileMaps[lang] || lang}.po`
|
|
);
|
|
i18n.loadAndActivate({ locale: lang, messages });
|
|
console.log('💬 ACTIVATE LANG', lang, messages);
|
|
} catch (e) {
|
|
console.error(e);
|
|
// Fallback to default language
|
|
i18n.activate(DEFAULT_LANG);
|
|
console.log('💬 ACTIVATE LANG', DEFAULT_LANG, lang);
|
|
}
|
|
}
|
|
}
|
|
|
|
export function initActivateLang() {
|
|
const languages = multipleDetect(
|
|
fromUrl('lang'),
|
|
fromStorage('lang'),
|
|
fromNavigator(),
|
|
PHANPY_DEFAULT_LANG,
|
|
DEFAULT_LANG,
|
|
);
|
|
const matchedLang =
|
|
languages.find((l) => ALL_LOCALES.includes(l)) ||
|
|
localeMatch(languages, ALL_LOCALES);
|
|
activateLang(matchedLang);
|
|
|
|
// const yes = confirm(t`Reload to apply language setting?`);
|
|
// if (yes) {
|
|
// window.location.reload();
|
|
// }
|
|
}
|