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/localization/constants.ts

95 lines
1006 B
TypeScript

export enum LOCALE_DEFAULTS {
app_name = 'Session',
session_download_url = 'https://getsession.org/download',
gif = 'GIF',
oxen_foundation = 'Oxen Foundation',
}
export const rtlLocales = ['ar', 'fa', 'he', 'ps', 'ur'];
export const crowdinLocales = [
'en',
'af',
'ar',
'az',
'bal',
'be',
'bg',
'bn',
'ca',
'cs',
'cy',
'da',
'de',
'el',
'eo',
'es-419',
'es',
'et',
'eu',
'fa',
'fi',
'fil',
'fr',
'gl',
'ha',
'he',
'hi',
'hr',
'hu',
'hy-AM',
'id',
'it',
'ja',
'ka',
'km',
'kmr',
'kn',
'ko',
'ku',
'lg',
'lo',
'lt',
'lv',
'mk',
'mn',
'ms',
'my',
'nb',
'ne',
'nl',
'nn',
'no',
'ny',
'pa',
'pl',
'ps',
'pt-BR',
'pt-PT',
'ro',
'ru',
'sh',
'si',
'sk',
'sl',
'sq',
'sr',
'sr',
'sv',
'sw',
'ta',
'te',
'th',
'tl',
'tr',
'uk',
'ur',
'uz',
'vi',
'xh',
'zh-CN',
'zh-TW',
] as const;
export type CrowdinLocale = (typeof crowdinLocales)[number];