From 20f64b54d55603a63bbae959dbf3112de8a96c5f Mon Sep 17 00:00:00 2001 From: LiuHao <liuhaoai545@gmail> Date: 星期三, 19 四月 2023 11:05:30 +0800 Subject: [PATCH] fix 修改国际化文件名称不规范问题,增加reqeust 国际化配置 --- src/lang/index.ts | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lang/index.ts b/src/lang/index.ts index 8fdf19e..f8c0801 100644 --- a/src/lang/index.ts +++ b/src/lang/index.ts @@ -2,16 +2,16 @@ import { createI18n } from 'vue-i18n'; // 鏈湴璇█鍖� -import enLocale from './en'; -import zhCnLocale from './zh-cn'; +import enUSLocale from './en_US'; +import zhCNLocale from './zh_CN'; import Cookies from 'js-cookie'; const messages = { - 'zh-cn': { - ...zhCnLocale + zh_CN: { + ...zhCNLocale }, - en: { - ...enLocale + en_US: { + ...enUSLocale } }; @@ -33,7 +33,7 @@ return locale; } } - return 'zh-cn'; + return 'zh_CN'; }; const i18n = createI18n({ -- Gitblit v1.9.3