mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Adds 'Vietnamese' to the list of available languages in the cross-language item components (#8843)
### What problem does this PR solve? This change adds 'Vietnamese' to the list of supported languages in two components related to cross-language functionality. The addition expands language support by including Vietnamese as a selectable option ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -10,6 +10,7 @@ const Languages = [
|
|||||||
'German',
|
'German',
|
||||||
'Japanese',
|
'Japanese',
|
||||||
'Korean',
|
'Korean',
|
||||||
|
'Vietnamese',
|
||||||
];
|
];
|
||||||
|
|
||||||
const options = Languages.map((x) => ({ label: x, value: x }));
|
const options = Languages.map((x) => ({ label: x, value: x }));
|
||||||
|
|||||||
@ -9,6 +9,7 @@ const Languages = [
|
|||||||
'German',
|
'German',
|
||||||
'Japanese',
|
'Japanese',
|
||||||
'Korean',
|
'Korean',
|
||||||
|
'Vietnamese',
|
||||||
];
|
];
|
||||||
|
|
||||||
const options = Languages.map((x) => ({ label: x, value: x }));
|
const options = Languages.map((x) => ({ label: x, value: x }));
|
||||||
|
|||||||
Reference in New Issue
Block a user