Feature: 添加更多语言支持

This commit is contained in:
2025-07-18 11:36:08 +08:00
parent 1733d2ae5b
commit c85afc9bde
3 changed files with 305 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import { createI18n } from 'vue-i18n'
import en from '@/locale/en.json'
import ru from '@/locale/ru.json'
import zh from '@/locale/zh.json'
export default createI18n({
@ -9,5 +10,6 @@ export default createI18n({
messages: {
zh,
en,
ru,
},
})