Files
zitadel/console/src/app/utils/language.ts
Mateusz Wolanowski 007c96d54a feat: add Romanian language support (#9388)
# Which Problems Are Solved

- Lack of support for the Romanian language in the application.

# How the Problems Are Solved

- Added translations for the Romanian language

---------

Co-authored-by: Silvan <27845747+adlerhurst@users.noreply.github.com>
2025-03-04 17:09:21 +00:00

24 lines
345 B
TypeScript

export const supportedLanguages = [
'de',
'en',
'es',
'fr',
'id',
'it',
'ja',
'pl',
'zh',
'bg',
'pt',
'mk',
'cs',
'ru',
'nl',
'sv',
'hu',
'ko',
'ro',
];
export const supportedLanguagesRegexp: RegExp = /de|en|es|fr|id|it|ja|pl|zh|bg|pt|mk|cs|ru|nl|sv|hu|ko|ro/;
export const fallbackLanguage: string = 'en';