From 9e865d1ee0e584188923a990d3dce62417f9d295 Mon Sep 17 00:00:00 2001 From: MT-Mint <798521692@qq.com> Date: Thu, 16 Apr 2026 10:14:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(language):=20=E9=BB=98=E8=AE=A4=E4=B8=AD?= =?UTF-8?q?=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/core/i18n/locale.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/core/i18n/locale.ts b/frontend/src/core/i18n/locale.ts index 7fbde14d..07ccba3b 100644 --- a/frontend/src/core/i18n/locale.ts +++ b/frontend/src/core/i18n/locale.ts @@ -1,6 +1,6 @@ export const SUPPORTED_LOCALES = ["en-US", "zh-CN"] as const; export type Locale = (typeof SUPPORTED_LOCALES)[number]; -export const DEFAULT_LOCALE: Locale = "en-US"; +export const DEFAULT_LOCALE: Locale = "zh-CN"; export function isLocale(value: string): value is Locale { return (SUPPORTED_LOCALES as readonly string[]).includes(value);