mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
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:
@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user