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:
Tuan Le 2025-07-15 12:02:12 +07:00 committed by GitHub
parent dbc2a8689a
commit c08ed28f09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ const Languages = [
'German',
'Japanese',
'Korean',
'Vietnamese',
];
const options = Languages.map((x) => ({ label: x, value: x }));

View File

@ -9,6 +9,7 @@ const Languages = [
'German',
'Japanese',
'Korean',
'Vietnamese',
];
const options = Languages.map((x) => ({ label: x, value: x }));