mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 17:17:45 +00:00

# 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>
24 lines
345 B
TypeScript
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';
|