feat: add Todos

This commit is contained in:
Henry Li
2026-01-22 00:26:11 +08:00
parent 08101aa432
commit 1e4e51a80c
16 changed files with 232 additions and 72 deletions

View File

@@ -41,6 +41,11 @@ export const enUS: Translations = {
thinkingDisabled: "Thinking is disabled",
clickToDisableThinking: "Click to disable thinking",
clickToEnableThinking: "Click to enable thinking",
planMode: "Plan mode",
planModeEnabled: "Plan mode is enabled",
planModeDisabled: "Plan mode is disabled",
clickToDisablePlanMode: "Click to disable plan mode",
clickToEnablePlanMode: "Click to enable plan mode",
searchModels: "Search models...",
},
@@ -87,6 +92,7 @@ export const enUS: Translations = {
listFolder: "List folder",
readFile: "Read file",
writeFile: "Write file",
writeTodos: "Update to-do list",
},
// Settings

View File

@@ -38,6 +38,11 @@ export interface Translations {
thinkingDisabled: string;
clickToDisableThinking: string;
clickToEnableThinking: string;
planMode: string;
planModeEnabled: string;
planModeDisabled: string;
clickToDisablePlanMode: string;
clickToEnablePlanMode: string;
searchModels: string;
};
@@ -84,6 +89,7 @@ export interface Translations {
listFolder: string;
readFile: string;
writeFile: string;
writeTodos: string;
};
// Settings

View File

@@ -41,6 +41,11 @@ export const zhCN: Translations = {
thinkingDisabled: "思考功能已禁用",
clickToDisableThinking: "点击禁用思考功能",
clickToEnableThinking: "点击启用思考功能",
planMode: "To-do 模式",
planModeEnabled: "To-do 模式已启用",
planModeDisabled: "To-do 模式已禁用",
clickToDisablePlanMode: "点击禁用 To-do 模式",
clickToEnablePlanMode: "点击启用 To-do 模式",
searchModels: "搜索模型...",
},
@@ -87,6 +92,7 @@ export const zhCN: Translations = {
listFolder: "列出文件夹",
readFile: "读取文件",
writeFile: "写入文件",
writeTodos: "更新 To-do 列表",
},
// Settings