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/timeLocaleMap.ts

40 lines
1.3 KiB
TypeScript

import * as supportedByDateFns from 'date-fns/locale';
import { Locale } from 'date-fns';
import { CrowdinLocale, crowdinLocales } from '../../localization/constants';
type MappedToEnType = { [K in CrowdinLocale]: Locale };
/**
* Map every locales supported by Crowdin to english first.
* Then we overwrite those values with what we have support for from date-fns and what we need to overwrite
*/
const mappedToEn: MappedToEnType = crowdinLocales.reduce((acc, key) => {
acc[key] = supportedByDateFns.enUS;
return acc;
}, {} as MappedToEnType);
// Note: to find new mapping you can use:
// https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes
export const timeLocaleMap: Record<CrowdinLocale, Locale> = {
...mappedToEn,
...supportedByDateFns,
en: supportedByDateFns.enUS,
// then overwrite anything that we don't agree with or need to support specifically.
'es-419': supportedByDateFns.es,
fa: supportedByDateFns.faIR,
fil: supportedByDateFns.fi,
'hy-AM': supportedByDateFns.hy,
kmr: supportedByDateFns.km, // Central khmer
'pt-BR': supportedByDateFns.ptBR,
'pt-PT': supportedByDateFns.pt,
'zh-CN': supportedByDateFns.zhCN,
'zh-TW': supportedByDateFns.zhTW,
};
export function getForcedEnglishTimeLocale() {
return timeLocaleMap.en;
}