| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // 导入通用模块
- import commonZhCN from './common/zh_CN'
- import commonEnUS from './common/en_US'
- // 导入页面模块
- import homeZhCN from './pages/home/zh_CN'
- import homeEnUS from './pages/home/en_US'
- // 导入组件模块
- import languageSwitcherZhCN from './components/languageSwitcher/zh_CN'
- import languageSwitcherEnUS from './components/languageSwitcher/en_US'
- // 按语言组织翻译数据
- export const messages = {
- 'zh-CN': {
- common: commonZhCN,
- home: homeZhCN,
- components: {
- languageSwitcher: languageSwitcherZhCN
- }
- },
- 'en-US': {
- common: commonEnUS,
- home: homeEnUS,
- components: {
- languageSwitcher: languageSwitcherEnUS
- }
- }
- }
- export const localeList = [
- {
- label: '简体中文',
- value: 'zh-CN'
- },
- {
- label: 'English',
- value: 'en-US'
- }
- ]
- // 默认语言
- export const defaultLocale = 'zh-CN'
|