feat: add indonesia translation (#8459)

Co-authored-by: Livio Spring <livio.a@gmail.com>
This commit is contained in:
Eko Eryanto
2024-09-03 23:05:47 +07:00
committed by GitHub
parent 9ec9ad4314
commit 889201568d
38 changed files with 4385 additions and 50 deletions

View File

@@ -1,3 +1,20 @@
export const supportedLanguages = ['de', 'en', 'es', 'fr', 'it', 'ja', 'pl', 'zh', 'bg', 'pt', 'mk', 'cs', 'ru', 'nl', 'sv'];
export const supportedLanguagesRegexp: RegExp = /de|en|es|fr|it|ja|pl|zh|bg|pt|mk|cs|ru|nl|sv/;
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';