mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-07 07:16:54 +00:00
21 lines
312 B
TypeScript
21 lines
312 B
TypeScript
export const supportedLanguages = [
|
|
'de',
|
|
'en',
|
|
'es',
|
|
'fr',
|
|
'id',
|
|
'it',
|
|
'ja',
|
|
'pl',
|
|
'zh',
|
|
'bg',
|
|
'pt',
|
|
'mk',
|
|
'cs',
|
|
'ru',
|
|
'nl',
|
|
'sv',
|
|
];
|
|
export const supportedLanguagesRegexp: RegExp = /de|en|es|fr|id|it|ja|pl|zh|bg|pt|mk|cs|ru|nl|sv/;
|
|
export const fallbackLanguage: string = 'en';
|