diff --git a/src/components/mcp/McpPanel.tsx b/src/components/mcp/McpPanel.tsx index 3c6d508..f5f8d58 100644 --- a/src/components/mcp/McpPanel.tsx +++ b/src/components/mcp/McpPanel.tsx @@ -117,7 +117,11 @@ const McpPanel: React.FC = ({ open, onOpenChange, appId }) => { ); const panelTitle = - appId === "claude" ? t("mcp.claudeTitle") : t("mcp.codexTitle"); + appId === "claude" + ? t("mcp.claudeTitle") + : appId === "codex" + ? t("mcp.codexTitle") + : t("mcp.geminiTitle"); return ( <> diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index 6e8d3bf..de3c893 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -440,6 +440,7 @@ "title": "MCP Management", "claudeTitle": "Claude Code MCP Management", "codexTitle": "Codex MCP Management", + "geminiTitle": "Gemini MCP Management", "userLevelPath": "User-level MCP path", "serverList": "Servers", "loading": "Loading...", diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh.json index 8311da5..e7279a8 100644 --- a/src/i18n/locales/zh.json +++ b/src/i18n/locales/zh.json @@ -440,6 +440,7 @@ "title": "MCP 管理", "claudeTitle": "Claude Code MCP 管理", "codexTitle": "Codex MCP 管理", + "geminiTitle": "Gemini MCP 管理", "userLevelPath": "用户级 MCP 配置路径", "serverList": "服务器列表", "loading": "加载中...",