From 48a197555ba36e915e5450a5f2afba7157b6db76 Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Tue, 24 Mar 2026 09:55:39 +0800 Subject: [PATCH] fix(frontend): fix the build error of i18n (#1274) --- frontend/src/core/i18n/locales/en-US.ts | 2 ++ frontend/src/core/i18n/locales/types.ts | 2 ++ frontend/src/core/i18n/locales/zh-CN.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/frontend/src/core/i18n/locales/en-US.ts b/frontend/src/core/i18n/locales/en-US.ts index 3617c98..83e88c3 100644 --- a/frontend/src/core/i18n/locales/en-US.ts +++ b/frontend/src/core/i18n/locales/en-US.ts @@ -280,6 +280,8 @@ export const enUS: Translations = { input: "Input", output: "Output", total: "Total", + }, + // Shortcuts shortcuts: { searchActions: "Search actions...", diff --git a/frontend/src/core/i18n/locales/types.ts b/frontend/src/core/i18n/locales/types.ts index cfdb21a..0d220ed 100644 --- a/frontend/src/core/i18n/locales/types.ts +++ b/frontend/src/core/i18n/locales/types.ts @@ -217,6 +217,8 @@ export interface Translations { input: string; output: string; total: string; + }; + // Shortcuts shortcuts: { searchActions: string; diff --git a/frontend/src/core/i18n/locales/zh-CN.ts b/frontend/src/core/i18n/locales/zh-CN.ts index 8d2e88e..d77a546 100644 --- a/frontend/src/core/i18n/locales/zh-CN.ts +++ b/frontend/src/core/i18n/locales/zh-CN.ts @@ -267,6 +267,8 @@ export const zhCN: Translations = { input: "输入", output: "输出", total: "总计", + }, + // Shortcuts shortcuts: { searchActions: "搜索操作...",