fix(frontend): fix the build error of i18n (#1274)
This commit is contained in:
parent
0431a67b68
commit
48a197555b
|
|
@ -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...",
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -267,6 +267,8 @@ export const zhCN: Translations = {
|
||||||
input: "输入",
|
input: "输入",
|
||||||
output: "输出",
|
output: "输出",
|
||||||
total: "总计",
|
total: "总计",
|
||||||
|
},
|
||||||
|
|
||||||
// Shortcuts
|
// Shortcuts
|
||||||
shortcuts: {
|
shortcuts: {
|
||||||
searchActions: "搜索操作...",
|
searchActions: "搜索操作...",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue