feat: install and configure i18n features (#177)
Co-authored-by: Shinigami <chrissi92@hotmail.de> Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe> Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
parent
443bd65c05
commit
871076f2d9
9 changed files with 170 additions and 16 deletions
25
plugins/i18n.ts
Normal file
25
plugins/i18n.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { createI18n } from 'vue-i18n'
|
||||
import enUS from '../locales/en-US.json'
|
||||
import zhCn from '../locales/zh-CN.json'
|
||||
|
||||
/** Default language environment */
|
||||
export const defaultLocale = 'en-US'
|
||||
|
||||
export const messages = {
|
||||
'en-US': enUS,
|
||||
'zh-CN': zhCn,
|
||||
}
|
||||
|
||||
/** Language Environment List */
|
||||
export const localeList = Object.keys(messages)
|
||||
|
||||
export default defineNuxtPlugin(({ vueApp }) => {
|
||||
const i18n = createI18n({
|
||||
legacy: false,
|
||||
globalInjection: true,
|
||||
locale: defaultLocale,
|
||||
messages,
|
||||
})
|
||||
|
||||
vueApp.use(i18n)
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue