You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/util/i18n/emojiPanelI18n.ts

43 lines
1.3 KiB
TypeScript

import { getCrowdinLocale } from './shared';
let langNotSupportedMessageShown = false;
export const loadEmojiPanelI18n = async () => {
if (!window) {
return undefined;
}
const triedLocales: Array<string> = [];
const lang = getCrowdinLocale();
if (lang !== 'en') {
try {
triedLocales.push(lang);
// TODO we should replace this with a locale -> emojimart locale map. like with datefns
const langData = await import(`@emoji-mart/data/i18n/${lang}.json`);
return langData;
} catch (err) {
const firstDashIndex = lang.indexOf('-');
if (firstDashIndex > 0) {
try {
const shortenLang = lang.slice(0, firstDashIndex);
triedLocales.push(shortenLang);
// TODO we should replace this with a locale -> emojimart locale map. like with datefns
const langData = await import(`@emoji-mart/data/i18n/${shortenLang}.json`);
return langData;
} catch (e) {
// don't rethrow, we want the log below to be shown
}
}
if (!langNotSupportedMessageShown) {
window?.log?.warn(
`Tried locales "${triedLocales}" is not supported by emoji-mart package. See https://github.com/missive/emoji-mart/tree/main/packages/emoji-mart-data/i18n`
);
langNotSupportedMessageShown = true;
}
}
}
return undefined;
};