CloudSphere/i18n.config.ts

22 lines
468 B
TypeScript
Raw Normal View History

2025-09-11 13:36:35 +08:00
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
fallbackLocale: 'en',
messages: {
en: {
blog: { description: 'Latest insights and guides on cloud services' }
},
'zh-hans': {
blog: { description: '云服务最新洞察和指南' }
},
'zh-hant': {
blog: { description: '雲端服務最新洞察和指南' }
},
zh: {
blog: { description: '云服务最新洞察和指南' }
}
}
}))