Skip to content

Commit 9e311db

Browse files
committed
fix: Internationalization
1 parent b085062 commit 9e311db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/layout/Person.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ const dialogVisible = ref(false)
3535
const aboutRef = ref()
3636
const languageList = computed(() => [
3737
{
38-
name: t('common.english'),
38+
name: 'English',
3939
value: 'en',
4040
},
4141
{
42-
name: t('common.simplified_chinese'),
42+
name: '简体中文',
4343
value: 'zh-CN',
4444
},
4545
{
46-
name: t('common.korean'),
46+
name: '한국인',
4747
value: 'ko-KR',
4848
},
4949
])

0 commit comments

Comments
 (0)