New locale for Bahasa Indonesia support (#3255)

### What problem does this PR solve?
Add native translation in locales for Bahasa Indonesia to support new
local language

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
haddad9
2024-11-07 16:53:19 +07:00
committed by GitHub
parent cdcbe6c2b3
commit f45c29360c
3 changed files with 1022 additions and 3 deletions

View File

@ -39,18 +39,25 @@ export const fileIconMap = {
xml: 'xml.svg',
};
export const LanguageList = ['English', 'Chinese', 'Traditional Chinese'];
export const LanguageList = [
'English',
'Chinese',
'Traditional Chinese',
'Indonesia',
];
export const LanguageMap = {
English: 'English',
Chinese: '简体中文',
'Traditional Chinese': '繁體中文',
Indonesia: 'Indonesia',
};
export const LanguageTranslationMap = {
English: 'en',
Chinese: 'zh',
'Traditional Chinese': 'zh-TRADITIONAL',
Indonesia: 'id',
};
export const FileMimeTypeMap = {