From a91d0e7736910610f164e567fb3956480f27b718 Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Thu, 9 Nov 2023 14:10:38 +0800 Subject: [PATCH 1/2] fix: ... --- src/i18n/locales/en-US.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts index 6e16af8a..f6d4fa27 100644 --- a/src/i18n/locales/en-US.ts +++ b/src/i18n/locales/en-US.ts @@ -397,7 +397,7 @@ export default { alarmCode: 'Alarm Code', origLevel: 'Severity', eventTime: 'Event Time', - pvFlag: 'Physical/Virtual Flag', + pvFlag: 'PV Flag', alarmType: 'Alarm Type', confirm: 'Confirm', updateConfirm: 'Cancel Confirm', From abec41af581e7e33884bcfc6ed207e90b6261271 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Thu, 9 Nov 2023 14:37:46 +0800 Subject: [PATCH 2/2] =?UTF-8?q?style:=20=E9=BB=98=E8=AE=A4=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=AD=E6=96=87zh=5FCN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index f7acccc8..aa344943 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -6,7 +6,7 @@ import enUS from './locales/en-US'; const i18n = createI18n({ legacy: false, // 使用 Composition API 的方式创建 i18n 实例 - locale: localGet(CACHE_LOCAL_I18N) || 'en_US', // 默认显示语言 + locale: localGet(CACHE_LOCAL_I18N) || 'zh_CN', // 默认显示语言 messages: { zh_CN: zhCN, en_US: enUS,