mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-20 04:39:00 +08:00
feat: Support Traditional Chinese (#336)
### What problem does this PR solve? Support Traditional Chinese Issue link: #335 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -38,3 +38,11 @@ export const fileIconMap = {
|
||||
xlsx: 'xlsx.svg',
|
||||
xml: 'xml.svg',
|
||||
};
|
||||
|
||||
export const LanguageList = ['English', 'Chinese', 'Traditional Chinese'];
|
||||
|
||||
export const LanguageTranslationMap = {
|
||||
English: 'en',
|
||||
Chinese: 'zh',
|
||||
'Traditional Chinese': 'zh-TRADITIONAL',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user