feat: update skill settings

This commit is contained in:
Henry Li
2026-01-22 00:38:20 +08:00
parent 44850d9a61
commit b630e1846a
6 changed files with 75 additions and 25 deletions

View File

@@ -18,6 +18,8 @@ export const enUS: Translations = {
download: "Download",
thinking: "Thinking",
artifacts: "Artifacts",
public: "Public",
custom: "Custom",
},
// Welcome
@@ -37,6 +39,7 @@ export const enUS: Translations = {
// Input Box
inputBox: {
placeholder: "How can I assist you today?",
thinking: "Thinking",
thinkingEnabled: "Thinking is enabled",
thinkingDisabled: "Thinking is disabled",
clickToDisableThinking: "Click to disable thinking",

View File

@@ -16,6 +16,8 @@ export interface Translations {
download: string;
thinking: string;
artifacts: string;
public: string;
custom: string;
};
// Welcome
@@ -34,6 +36,7 @@ export interface Translations {
// Input Box
inputBox: {
placeholder: string;
thinking: string;
thinkingEnabled: string;
thinkingDisabled: string;
clickToDisableThinking: string;

View File

@@ -18,6 +18,8 @@ export const zhCN: Translations = {
download: "下载",
thinking: "思考",
artifacts: "文件",
public: "公共",
custom: "自定义",
},
// Welcome
@@ -37,6 +39,7 @@ export const zhCN: Translations = {
// Input Box
inputBox: {
placeholder: "今天我能为你做些什么?",
thinking: "思考",
thinkingEnabled: "思考功能已启用",
thinkingDisabled: "思考功能已禁用",
clickToDisableThinking: "点击禁用思考功能",