mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-07 05:16:47 +00:00

* feat(i18n): Dutch language support * Fixed formatting issues * add missing error lines --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
4 lines
259 B
TypeScript
4 lines
259 B
TypeScript
export const supportedLanguages = ['de', 'en', 'es', 'fr', 'it', 'ja', 'pl', 'zh', 'bg', 'pt', 'mk', 'cs', 'ru', 'nl'];
|
|
export const supportedLanguagesRegexp: RegExp = /de|en|es|fr|it|ja|pl|zh|bg|pt|mk|cs|ru|nl/;
|
|
export const fallbackLanguage: string = 'en';
|