mirror of
https://github.com/documenso/documenso.git
synced 2026-07-13 06:25:01 +10:00
22 lines
363 B
TypeScript
22 lines
363 B
TypeScript
export const SUPPORTED_LANGUAGE_CODES = [
|
|
'de',
|
|
'en',
|
|
'fr',
|
|
'es',
|
|
'it',
|
|
'nl',
|
|
'pl',
|
|
'pt-BR',
|
|
'ja',
|
|
'ko',
|
|
'zh',
|
|
] as const;
|
|
|
|
export type SupportedLanguageCodes = (typeof SUPPORTED_LANGUAGE_CODES)[number];
|
|
|
|
export const APP_I18N_OPTIONS = {
|
|
supportedLangs: SUPPORTED_LANGUAGE_CODES,
|
|
sourceLang: 'en',
|
|
defaultLocale: 'en-US',
|
|
} as const;
|