From 9961467d4a31bd1fbc7a54dcc500290809dbb41a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=A6=E9=82=A6=E9=82=A6=E9=82=A6?= <15622356989@163.com> Date: Mon, 28 Apr 2025 00:46:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=8B=B1=E6=96=87?= =?UTF-8?q?=E8=AF=8D=E6=9D=A1=E6=9C=AA=E5=AF=BC=E5=87=BA=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/opendesign/src/locale/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/opendesign/src/locale/index.ts b/packages/opendesign/src/locale/index.ts index 556bfe5a..8755e060 100644 --- a/packages/opendesign/src/locale/index.ts +++ b/packages/opendesign/src/locale/index.ts @@ -4,11 +4,14 @@ import { isString } from '../_utils/is'; import { configProviderInjectKey } from '../config-provider'; import { computed, inject, ref } from 'vue'; import zhCN from './lang/zh-cn'; +import enUS from './lang/en-us'; + import { LanguageT, i18nLanguages } from './types'; const currentLocal = ref('zh-CN'); const i18nLanguage = ref>({ 'zh-CN': zhCN, + 'en-US': enUS, }); /** -- Gitee