ソースを参照

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)
tags/v0.20.0
Tuan Le 3ヶ月前
コミット
c08ed28f09
コミッターのメールアドレスに関連付けられたアカウントが存在しません
2個のファイルの変更2行の追加0行の削除
  1. 1
    0
      web/src/components/cross-language-item-ui.tsx
  2. 1
    0
      web/src/components/cross-language-item.tsx

+ 1
- 0
web/src/components/cross-language-item-ui.tsx ファイルの表示

@@ -10,6 +10,7 @@ const Languages = [
'German',
'Japanese',
'Korean',
'Vietnamese',
];

const options = Languages.map((x) => ({ label: x, value: x }));

+ 1
- 0
web/src/components/cross-language-item.tsx ファイルの表示

@@ -9,6 +9,7 @@ const Languages = [
'German',
'Japanese',
'Korean',
'Vietnamese',
];

const options = Languages.map((x) => ({ label: x, value: x }));

読み込み中…
キャンセル
保存