Optimize for Simplified Chinese translation (#48)

* feat: Optimize for Simplified Chinese translation

* fix: fix language pack index for zhcn
This commit is contained in:
MisakaNo の 小破站
2024-03-02 01:42:27 +08:00
committed by GitHub
parent cfa5f38177
commit d39df72896
2 changed files with 23 additions and 23 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
import { createI18n } from 'vue-i18n'
import en from './en'
import fa from './fa'
import ch from './ch'
import zhcn from './zhcn'
export const i18n = createI18n({
@@ -11,12 +11,12 @@ export const i18n = createI18n({
messages: {
en,
fa,
ch
zhcn
},
})
export const languages = [
{ title: 'English', value: 'en' },
{ title: '简体中文', value: 'ch' },
{ title: 'فارسی', value: 'fa' },
{ title: '简体中文', value: 'zhcn' },
]