fix(frontend): fix the build error of i18n (#1274)

This commit is contained in:
Willem Jiang 2026-03-24 09:55:39 +08:00 committed by GitHub
parent 0431a67b68
commit 48a197555b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 0 deletions

View File

@ -280,6 +280,8 @@ export const enUS: Translations = {
input: "Input", input: "Input",
output: "Output", output: "Output",
total: "Total", total: "Total",
},
// Shortcuts // Shortcuts
shortcuts: { shortcuts: {
searchActions: "Search actions...", searchActions: "Search actions...",

View File

@ -217,6 +217,8 @@ export interface Translations {
input: string; input: string;
output: string; output: string;
total: string; total: string;
};
// Shortcuts // Shortcuts
shortcuts: { shortcuts: {
searchActions: string; searchActions: string;

View File

@ -267,6 +267,8 @@ export const zhCN: Translations = {
input: "输入", input: "输入",
output: "输出", output: "输出",
total: "总计", total: "总计",
},
// Shortcuts // Shortcuts
shortcuts: { shortcuts: {
searchActions: "搜索操作...", searchActions: "搜索操作...",