{
	"cli.errors.bunVersion": "錯誤：Bun 執行環境版本必須 >= {minVersion}（目前為 v{currentVersion}）。請更新 Bun：bun upgrade",
	"cli.errors.bunErrata": "錯誤：偵測到 Bun 執行環境已知問題（v{version}）。請更新 Bun：bun upgrade",
	"agents.errors.bothFlags": "請選擇 --user 或 --project 其中之一，不能同時使用。",
	"agents.status.bundledCount": "內建代理程式：{total}",
	"agents.status.targetDirectory": "目標目錄：{dir}",
	"agents.warnings.skippedExisting": "已略過既有項目：{count} 個（使用 --force 可覆寫）",
	"config.errors.unknownCommand": "未知的設定指令：{action}",
	"config.errors.invalidBoolean": "無效的布林值：{value}。請使用 true/false、yes/no、on/off 或 1/0",
	"config.errors.invalidNumber": "無效的數字：{value}",
	"config.errors.invalidEnumValue": "無效的值：{value}。有效值為：{validValues}",
	"config.errors.invalidArrayJson": "無效的陣列 JSON：{value}",
	"config.errors.invalidRecordJson": "無效的記錄 JSON：{value}",
	"config.help.listKeys": "執行 '{appName} config list' 以查看可用的設定鍵",
	"config.errors.unknownSetting": "未知的設定：{key}",
	"config.status.valueSet": "已設定 {path} = {value}",
	"config.status.valueReset": "已將 {path} 重設為 {value}",
	"file.errors.notFound": "錯誤：找不到檔案：{path}",
	"file.warnings.tooLarge": "警告：略過檔案內容（檔案過大：{size}）：{path}",
	"file.errors.readFailed": "錯誤：無法讀取檔案 {path}：{message}",
	"grep.errors.patternRequired": "錯誤：必須提供搜尋模式",
	"grep.results.totalMatches": "符合總數：{count}",
	"grep.results.filesWithMatches": "含符合結果的檔案：{count}",
	"grep.results.filesSearched": "已搜尋的檔案：{count}",
	"read.errors.fileNotFound": "錯誤：找不到檔案：{path}",
	"setup.errors.usage": "用法：{appName} setup <元件>",
	"setup.python.errors.notFound": "找不到 Python",
	"setup.python.help.installPython": "請安裝 Python 3.8+ 並確認已加入 PATH",
	"setup.python.status.ready": "Python 執行環境已就緒",
	"setup.python.warnings.missingPackages": "缺少套件：{packages}",
	"setup.python.errors.noPackageManager": "找不到套件管理工具",
	"setup.python.help.installManagers": "請安裝 uv（建議）或 pip：",
	"setup.python.errors.installationFailed": "安裝失敗",
	"setup.python.help.manualInstall": "請嘗試手動安裝：",
	"setup.python.errors.setupIncomplete": "設定未完成",
	"setup.stt.status.ready": "語音轉文字已就緒",
	"setup.stt.errors.pythonNotFound": "找不到 Python",
	"setup.stt.status.installingWhisper": "正在安裝 openai-whisper...",
	"setup.stt.errors.whisperFailed": "安裝 openai-whisper 失敗",
	"setup.stt.help.manualWhisper": "請嘗試手動安裝：pip install openai-whisper",
	"setup.help.title": "setup - 安裝選用功能所需的相依套件",
	"setup.help.pythonDescription": "安裝 Python 程式碼執行所需的 Jupyter 核心相依套件",
	"setup.help.sttDescription": "安裝語音轉文字所需的相依套件（openai-whisper、錄音工具）",
	"setup.litellm.errors.envNotSet": "尚未設定必要的環境變數：",
	"setup.litellm.errors.baseUrlHint": "LITELLM_BASE_URL — LiteLLM 代理伺服器 URL（例如 https://your-proxy.example.com）",
	"setup.litellm.errors.apiKeyHint": "LITELLM_API_KEY  — LiteLLM 代理伺服器的 API 金鑰",
	"setup.litellm.help.setEnvVars": "請在 Shell 設定檔（.zshrc、.bashrc）或 .env 檔案中設定這些變數。",
	"setup.litellm.status.generated": "已產生 LiteLLM 設定",
	"setup.litellm.errors.generationFailed": "產生 LiteLLM 設定失敗",
	"ssh.errors.hostRequired": "錯誤：必須提供主機名稱",
	"ssh.errors.hostFlagRequired": "錯誤：必須提供 --host 參數",
	"ssh.errors.invalidPort": "錯誤：連接埠必須為 1 到 65535 之間的整數",
	"ssh.status.hostAdded": "已將 SSH 主機 \"{name}\" 新增至 {scope} 設定",
	"ssh.status.hostRemoved": "已從 {scope} 設定中移除 SSH 主機 \"{name}\"",
	"ssh.controller.unknownSubcommand": "未知的子指令：{subcommand}。輸入 /ssh help 查看用法。",
	"ssh.add.usage": "用法：/ssh add <name> --host <host> [--user <user>] [--port <port>] [--key <keyPath>] [--desc <description>] [--compat] [--scope project|user]",
	"ssh.add.missingHost": "缺少 --host 的值。",
	"ssh.add.missingUser": "缺少 --user 的值。",
	"ssh.add.missingPort": "缺少 --port 的值。",
	"ssh.add.invalidPort": "無效的 --port 值。必須為 1 到 65535 之間的整數。",
	"ssh.add.missingKey": "缺少 --key 的值。",
	"ssh.add.missingDesc": "缺少 --desc 的值。",
	"ssh.add.invalidScope": "無效的 --scope 值。請使用 project 或 user。",
	"ssh.add.unknownOption": "未知的選項：{option}",
	"ssh.add.nameRequired": "必須提供主機名稱。用法：/ssh add <name> --host <host> ...",
	"ssh.add.hostRequired": "必須指定 --host。用法：/ssh add <name> --host <host> ...",
	"ssh.add.failed": "新增主機失敗：{message}",
	"ssh.list.noneConfigured": "未設定任何 SSH 主機。",
	"ssh.list.title": "已設定的 SSH 主機",
	"ssh.list.userLevel": "使用者層級",
	"ssh.list.projectLevel": "專案層級",
	"ssh.list.discovered": "已探索",
	"ssh.list.readOnly": "唯讀",
	"ssh.list.failed": "列出主機失敗：{message}",
	"ssh.remove.invalidScope": "無效的 --scope 值。請使用 project 或 user。",
	"ssh.remove.unknownOption": "未知的選項：{option}",
	"ssh.remove.nameRequired": "必須提供主機名稱。用法：/ssh remove <name> [--scope project|user]",
	"ssh.remove.notFound": "在 {scope} 設定中找不到主機 \"{name}\"。",
	"ssh.remove.failed": "移除主機失敗：{message}",
	"mode.plan.status.enabled": "計劃模式已啟用。計劃檔案：{path}",
	"mode.plan.status.paused": "計劃模式已暫停。",
	"mode.plan.status.disabled": "計劃模式已停用。",
	"mode.plan.errors.noEditor": "未設定編輯器。請設定 $VISUAL 或 $EDITOR 環境變數。",
	"mode.plan.errors.fileNotFound": "在 {path} 找不到計劃檔案",
	"mode.plan.errors.editorOpenFailed": "開啟外部編輯器失敗：{message}",
	"mode.plan.status.updated": "計劃已在外部編輯器中更新。",
	"mode.plan.errors.notActive": "計劃模式未啟用。",
	"mode.stt.warnings.disabled": "語音轉文字已停用。請在設定中啟用：stt.enabled",
	"mode.subagent.status.noActive": "目前沒有運作中的子代理程式工作階段",
	"ui.status.sessionCompacted": "工作階段已壓縮 {times} 次",
	"ui.status.messageQueued": "訊息已排隊，等待壓縮完成後傳送",
	"ui.errors.queuedMessageFailed": "傳送排隊訊息失敗：{message}",
	"shell.errors.ttyRequired": "錯誤：shell 主控台需要互動式 TTY。",
	"search.errors.queryRequired": "錯誤：必須提供查詢內容",
	"commands.settings.description": "開啟設定選單",
	"commands.plan.description": "切換計劃模式（代理程式在執行前先制定計劃）",
	"commands.plan.inlineHint": "[提示詞]",
	"commands.model.description": "選擇模型（開啟選擇器介面）",
	"commands.fast.description": "切換快速模式（OpenAI 服務層級優先）",
	"commands.fast.sub.on.description": "啟用快速模式",
	"commands.fast.sub.off.description": "停用快速模式",
	"commands.fast.sub.status.description": "顯示快速模式狀態",
	"commands.fast.enabled": "快速模式已啟用。",
	"commands.fast.disabled": "快速模式已停用。",
	"commands.fast.statusOn": "快速模式已開啟。",
	"commands.fast.statusOff": "快速模式已關閉。",
	"commands.fast.usage": "用法：/fast [on|off|status]",
	"commands.export.description": "將工作階段匯出為 HTML 檔案",
	"commands.export.inlineHint": "[路徑]",
	"commands.dump.description": "將工作階段記錄複製到剪貼簿",
	"commands.share.description": "將工作階段分享為 GitHub 私密 gist",
	"commands.browser.description": "切換瀏覽器無頭/可視模式",
	"commands.browser.sub.headless.description": "切換到無頭模式",
	"commands.browser.sub.visible.description": "切換到可視模式",
	"commands.browser.disabled": "瀏覽器工具已停用（請在設定中啟用）",
	"commands.browser.usage": "用法：/browser [headless|visible]",
	"commands.browser.modeHeadless": "瀏覽器模式：無頭",
	"commands.browser.modeVisible": "瀏覽器模式：可視",
	"commands.browser.restartFailed": "重新啟動瀏覽器失敗：{message}",
	"commands.copy.description": "將代理程式的最後一則訊息複製到剪貼簿",
	"commands.copy.sub.last.description": "複製代理程式的完整最後訊息",
	"commands.copy.sub.code.description": "複製最後一個程式碼區塊",
	"commands.copy.sub.all.description": "複製最後訊息中的所有程式碼區塊",
	"commands.copy.sub.cmd.description": "複製最後一條 bash/python 命令",
	"commands.session.description": "工作階段管理命令",
	"commands.session.sub.info.description": "顯示工作階段資訊和統計",
	"commands.session.sub.delete.description": "刪除目前的工作階段並返回選擇器",
	"commands.jobs.description": "顯示非同步背景工作狀態",
	"commands.usage.description": "顯示供應商用量和限制",
	"commands.changelog.description": "顯示更新日誌",
	"commands.changelog.sub.full.description": "顯示完整更新日誌",
	"commands.hotkeys.description": "顯示所有鍵盤快速鍵",
	"commands.tools.description": "顯示代理程式目前可見的工具",
	"commands.extensions.description": "開啟擴充功能控制中心儀表板",
	"commands.agents.description": "開啟代理程式控制中心儀表板",
	"commands.branch.description": "從先前的訊息建立新分支",
	"commands.fork.description": "從先前的訊息建立新分叉",
	"commands.tree.description": "瀏覽工作階段樹狀結構（切換分支）",
	"commands.login.description": "使用 OAuth 供應商登入",
	"commands.login.inlineHint": "[供應商|重新導向 URL]",
	"commands.login.alreadyInProgressFor": "OAuth 登入已在進行中（{provider}）。請使用 /login <url> 貼上重新導向 URL。",
	"commands.login.alreadyInProgress": "OAuth 登入已在進行中。請使用 /login <url> 貼上重新導向 URL。",
	"commands.login.callbackReceived": "已收到 OAuth 回呼，正在完成登入…",
	"commands.login.noCallbackWaiting": "目前沒有等待手動回呼的 OAuth 登入。",
	"commands.logout.description": "從 OAuth 供應商登出",
	"commands.mcp.description": "管理 MCP 伺服器（新增、列出、移除、測試）",
	"commands.mcp.sub.add.description": "新增 MCP 伺服器",
	"commands.mcp.sub.list.description": "列出所有已設定的 MCP 伺服器",
	"commands.mcp.sub.remove.description": "移除 MCP 伺服器",
	"commands.mcp.sub.test.description": "測試與伺服器的連線",
	"commands.mcp.sub.reauth.description": "重新授權伺服器的 OAuth",
	"commands.mcp.sub.unauth.description": "移除伺服器的 OAuth 授權",
	"commands.mcp.sub.enable.description": "啟用 MCP 伺服器",
	"commands.mcp.sub.disable.description": "停用 MCP 伺服器",
	"commands.mcp.sub.smitherySearch.description": "搜尋 Smithery 登錄檔並部署 MCP 伺服器",
	"commands.mcp.sub.smitheryLogin.description": "登入 Smithery 並快取 API 金鑰",
	"commands.mcp.sub.smitheryLogout.description": "移除已快取的 Smithery API 金鑰",
	"commands.mcp.sub.reconnect.description": "重新連線到指定的 MCP 伺服器",
	"commands.mcp.sub.reload.description": "強制重新載入 MCP 執行階段工具",
	"commands.mcp.sub.resources.description": "列出已連線伺服器的可用資源",
	"commands.mcp.sub.prompts.description": "列出已連線伺服器的可用提示",
	"commands.mcp.sub.notifications.description": "顯示通知功能和訂閱",
	"commands.mcp.sub.help.description": "顯示說明訊息",
	"commands.ssh.description": "管理 SSH 主機（新增、列出、移除）",
	"commands.ssh.sub.add.description": "新增 SSH 主機",
	"commands.ssh.sub.list.description": "列出所有已設定的 SSH 主機",
	"commands.ssh.sub.remove.description": "移除 SSH 主機",
	"commands.ssh.sub.help.description": "顯示說明訊息",
	"commands.new.description": "開始新的工作階段",
	"commands.compact.description": "手動壓縮工作階段上下文",
	"commands.compact.inlineHint": "[聚焦指令]",
	"commands.handoff.description": "將工作階段上下文移交至新的工作階段",
	"commands.handoff.inlineHint": "[聚焦指令]",
	"commands.resume.description": "恢復其他工作階段",
	"commands.btw.description": "使用目前工作階段上下文提出臨時附帶問題",
	"commands.btw.inlineHint": "<問題>",
	"commands.background.description": "分離 UI 並在背景繼續執行",
	"commands.debug.description": "開啟除錯工具選擇器",
	"commands.memory.description": "檢查和操作記憶維護",
	"commands.memory.sub.view.description": "顯示目前的記憶注入載荷",
	"commands.memory.sub.clear.description": "清除持久化的記憶資料和產物",
	"commands.memory.sub.reset.description": "clear 的別名",
	"commands.memory.sub.enqueue.description": "將記憶整合加入維護佇列",
	"commands.memory.sub.rebuild.description": "enqueue 的別名",
	"commands.rename.description": "重新命名目前的工作階段",
	"commands.rename.inlineHint": "<標題>",
	"commands.rename.usage": "用法：/rename <標題>",
	"commands.move.description": "將工作階段移動到其他工作目錄",
	"commands.move.inlineHint": "<路徑>",
	"commands.move.usage": "用法：/move <路徑>",
	"commands.exit.description": "結束應用程式",
	"commands.plugin.description": "管理外掛程式和市集來源",
	"commands.plugin.sub.marketplace.description": "管理市集來源（新增、移除、更新、列出）",
	"commands.plugin.sub.install.description": "安裝外掛程式",
	"commands.plugin.sub.uninstall.description": "解除安裝外掛程式",
	"commands.plugin.sub.enable.description": "啟用外掛程式",
	"commands.plugin.sub.disable.description": "停用外掛程式",
	"commands.plugin.sub.upgrade.description": "升級外掛程式",
	"commands.plugin.sub.discover.description": "瀏覽可用的外掛程式",
	"commands.plugin.sub.list.description": "列出所有已安裝的外掛程式",
	"commands.plugin.sub.validate.description": "驗證市集或外掛程式資訊清單",
	"commands.plugin.sub.setup.description": "推薦外掛程式的引導安裝",
	"commands.plugin.sub.help.description": "顯示使用指南",
	"commands.plugin.marketplace.addUsage": "用法：/plugin marketplace add <source>",
	"commands.plugin.marketplace.added": "已新增市集：{name}",
	"commands.plugin.marketplace.removeUsage": "用法：/plugin marketplace remove <name>",
	"commands.plugin.marketplace.removed": "已移除市集：{name}",
	"commands.plugin.marketplace.updated": "已更新市集：{name}",
	"commands.plugin.marketplace.updatedAll": "已更新 {count} 個市集",
	"commands.plugin.marketplace.noneConfiguredGetStarted": "未設定任何市集。\n\n開始使用：\n  /plugin marketplace add f5-sales-demo/marketplace",
	"commands.plugin.marketplace.listHint": "使用 /plugin discover 瀏覽外掛程式",
	"commands.plugin.marketplace.noneConfiguredTry": "未設定任何市集。請嘗試：\n  /plugin marketplace add f5-sales-demo/marketplace",
	"commands.plugin.marketplace.noPluginsAvailable": "已設定的市集中沒有可用的外掛程式",
	"commands.plugin.installed": "已從 {marketplace} 安裝 {name}",
	"commands.plugin.uninstalled": "已解除安裝 {pluginId}",
	"commands.plugin.enabled": "已啟用 {pluginId}",
	"commands.plugin.disabled": "已停用 {pluginId}",
	"commands.plugin.upgraded": "已將 {pluginId} 升級至 {version}",
	"commands.plugin.allUpToDate": "所有外掛程式均為最新版本",
	"commands.plugin.upgradedCount": "已升級 {count} 個外掛程式：",
	"commands.plugin.npmPlugins": "npm 外掛程式：",
	"commands.plugin.marketplacePlugins": "市集外掛程式：",
	"commands.plugin.noneInstalled": "未安裝任何外掛程式",
	"commands.plugin.validate.marketplaceValid": "市集 \"{name}\" 驗證通過（{count} 個外掛程式）",
	"commands.plugin.validate.pluginValid": "外掛程式 \"{name}\" 資訊清單驗證通過",
	"commands.plugin.validate.notFound": "在 {path} 找不到 .xcsh-plugin/marketplace.json 或 .xcsh-plugin/plugin.json",
	"commands.plugin.setup.noRecommended": "在已設定的市集中找不到推薦外掛程式",
	"commands.plugin.setup.allInstalled": "所有推薦外掛程式均已安裝",
	"commands.plugin.setup.title": "推薦外掛程式安裝：",
	"commands.plugin.setup.installCount": "已安裝 {installed}/{total} 個推薦外掛程式",
	"commands.plugin.setup.skippedCount": "略過 {count} 個 - 請修正上述問題後重新執行 /plugin setup（冪等操作）",
	"commands.plugin.setup.installFailed": "安裝失敗",
	"commands.plugin.setup.installed": "已安裝",
	"commands.plugin.setup.notAuthenticated": "未驗證",
	"commands.plugin.setup.authenticatedAs": "已驗證為 {user}",
	"commands.plugin.setup.ready": "就緒",
	"commands.plugin.setup.pluginInstalled": "外掛程式已安裝",
	"commands.plugin.setup.pluginInstallFailed": "外掛程式安裝失敗：{message}",
	"commands.plugin.setup.notFoundInMarketplace": "在任何市集中均未找到",
	"commands.plugin.help": "外掛程式命令：\n  /plugin                                    開啟外掛程式儀表板\n  /plugin marketplace add <source>           新增市集（如 owner/repo）\n  /plugin marketplace remove <name>          移除市集\n  /plugin marketplace update [name]          重新擷取目錄\n  /plugin marketplace list                   列出已設定的市集\n  /plugin discover [marketplace]             瀏覽可用外掛程式\n  /plugin install <name@marketplace>         安裝外掛程式\n  /plugin uninstall <name@marketplace>       解除安裝外掛程式\n  /plugin enable <name@marketplace>          啟用外掛程式\n  /plugin disable <name@marketplace>         停用外掛程式\n  /plugin upgrade [name@marketplace]         升級外掛程式\n  /plugin list                               列出已安裝的外掛程式\n  /plugin validate [path]                    驗證市集或外掛程式\n  /plugin setup                              推薦外掛程式引導安裝\n\n快速開始：\n  /plugin marketplace add f5-sales-demo/marketplace\n  /plugin                                    （開啟外掛程式儀表板）\n\n別名：/marketplace、/plugins",
	"commands.plugin.marketplace.noneConfiguredBrowse": "未設定任何市集。\n\n開始使用：\n  /plugin marketplace add f5-sales-demo/marketplace\n\n然後使用 /plugin 或 /plugin discover 瀏覽外掛程式",
	"commands.plugin.marketplace.listHintAll": "使用 /plugin discover 瀏覽外掛程式，或 /plugin help 查看所有命令",
	"commands.plugin.error": "外掛程式錯誤：{message}",
	"commands.reloadPlugins.description": "重新載入所有外掛程式（技能、命令、掛鉤、工具、代理程式、MCP）",
	"commands.reloadPlugins.done": "外掛程式已重新載入。",
	"commands.force.description": "強制下一輪使用指定工具",
	"commands.force.inlineHint": "<工具名稱> [提示詞]",
	"commands.force.usage": "用法：/force:<工具名稱> [提示詞]",
	"commands.force.set": "下一輪已強制使用 {toolName}。",
	"commands.quit.description": "結束應用程式",
	"commands.context.description": "管理 F5 XC 驗證上下文",
	"commands.context.sub.list.description": "列出所有上下文",
	"commands.context.sub.activate.description": "切換到指定的上下文",
	"commands.context.sub.validate.description": "驗證上下文的憑證（不啟用）",
	"commands.context.sub.show.description": "顯示上下文詳細資訊（已遮罩）",
	"commands.context.sub.status.description": "顯示目前的驗證狀態",
	"commands.context.sub.create.description": "建立新上下文",
	"commands.context.sub.delete.description": "刪除上下文",
	"commands.context.sub.rename.description": "重新命名上下文",
	"commands.context.sub.export.description": "將上下文（或所有上下文）匯出為 JSON",
	"commands.context.sub.import.description": "從檔案路徑或內嵌 JSON 匯入上下文",
	"commands.context.sub.namespace.description": "在作用中上下文內切換命名空間",
	"commands.context.sub.env.description": "管理環境變數",
	"commands.context.sub.set.description": "設定環境變數",
	"commands.context.sub.unset.description": "移除環境變數",
	"commands.context.sub.wizard.description": "引導式互動上下文設定",
	"welcome.modelProvider": "模型供應商",
	"welcome.plugins": "外掛程式",
	"welcome.pluginSetupHint": "執行：/plugin setup",
	"welcome.updateHint": "執行：xcsh self-update",
	"welcome.newVersion": "新版本",
	"welcome.connectionFailed": "— 連線失敗",
	"welcome.runLoginReconnect": "執行 /login 重新連線",
	"welcome.noModelProvider": "未設定模型供應商",
	"welcome.runLoginConnect": "執行 /login 連線",
	"login.wizard.urlPrompt": "Model Provider URL",
	"login.wizard.urlPlaceholder": "https://your-proxy.example.com",
	"login.wizard.apiKeyPrompt": "API Key",
	"login.wizard.apiKeyPlaceholder": "sk-...",
	"login.wizard.connecting": "Connecting to {url}…",
	"login.wizard.success": "Connected — {count} models available",
	"login.wizard.configSaved": "Configuration saved. You're ready to go!",
	"login.wizard.failed": "Connection failed — {error}",
	"login.wizard.retryHint": "Press Escape to skip, or enter a new value:",
	"gate.noProvider": "No LLM provider configured — run /login to connect one before sending a message.",
	"gate.noProviderBlock": "No LLM provider configured. Run /login to connect one, then retry. (/help and /model still work.)",
	"plugins.tabs.installed": "已安裝",
	"plugins.tabs.recommended": "推薦",
	"plugins.tabs.discover": "探索",
	"plugins.tabs.updates": "更新",
	"plugins.list.searchPlaceholder": "輸入以篩選",
	"plugins.list.emptyDiscover": "沒有可用的外掛程式。請先新增市集。",
	"plugins.list.emptyRecommended": "所有推薦外掛程式均已安裝。",
	"plugins.list.emptyUpdates": "所有外掛程式均為最新版本。",
	"plugins.list.emptyInstalled": "未安裝任何外掛程式。",
	"plugins.list.shadowed": "已遮蔽",
	"plugins.list.disabled": "已停用",
	"plugins.dashboard.title": "xcsh 外掛程式中心",
	"plugins.dashboard.helpRecommended": "↑/↓：瀏覽  Enter：安裝  A：全部安裝  Tab：下一分頁  Ctrl+R：重新載入  Esc：關閉",
	"plugins.dashboard.helpDiscover": "↑/↓：瀏覽  Enter：安裝  Tab：下一分頁  Ctrl+R：重新載入  Esc：關閉",
	"plugins.dashboard.helpUpdates": "↑/↓：瀏覽  Enter：升級  Tab：下一分頁  Ctrl+R：重新載入  Esc：關閉",
	"plugins.dashboard.helpInstalled": "↑/↓：瀏覽  Space：切換  Enter：解除安裝  U：升級  Tab：下一分頁  Ctrl+R：重新載入  Esc：關閉",
	"plugins.dashboard.settingUp": "正在設定 {name}...（{current}/{total}）",
	"plugins.dashboard.installCount": "已安裝 {installed}/{total} 個推薦外掛程式",
	"plugins.dashboard.allRecommendedInstalled": "所有推薦外掛程式均已安裝",
	"plugins.dashboard.failedCount": "{count} 個失敗",
	"plugins.dashboard.authNeeded": "需要驗證：{items}",
	"plugins.dashboard.uninstalled": "已解除安裝 {name}",
	"plugins.dashboard.uninstallFailed": "解除安裝失敗：{message}",
	"plugins.dashboard.upgraded": "已升級 {name}",
	"plugins.dashboard.upgradeFailed": "升級失敗：{message}",
	"plugins.dashboard.upgrading": "正在升級 {name}...",
	"controller.export.warnings.useDump": "使用 /dump 將工作階段複製到剪貼簿。",
	"controller.export.status.exported": "工作階段已匯出至：{path}",
	"controller.export.errors.failed": "匯出工作階段失敗：{message}",
	"controller.dump.errors.noMessages": "目前沒有可匯出的訊息。",
	"controller.dump.status.copied": "工作階段已複製到剪貼簿",
	"controller.dump.errors.failed": "複製工作階段失敗：{message}",
	"controller.debug.errors.noMessages": "目前沒有可匯出的訊息。",
	"controller.debug.status.written": "除錯記錄已寫入：\n{path}",
	"controller.debug.errors.failed": "寫入除錯記錄失敗：{message}",
	"controller.copy.errors.unknownSub": "未知的子指令：{sub}。請使用 code、all、cmd 或 last。",
	"controller.copy.errors.noMessages": "目前沒有可複製的代理程式訊息。",
	"controller.copy.status.lastMessage": "已將代理程式的最後一則訊息複製到剪貼簿",
	"controller.copy.warnings.noCodeBlock": "在代理程式的最後訊息中找不到程式碼區塊。",
	"controller.copy.status.codeBlock": "已將最後一個程式碼區塊複製到剪貼簿",
	"controller.copy.warnings.noCodeBlocks": "在代理程式的最後訊息中找不到任何程式碼區塊。",
	"controller.copy.status.codeBlocks": "已將 {count} 個程式碼區塊複製到剪貼簿",
	"controller.copy.status.bashCommand": "已將最後一條 bash 命令複製到剪貼簿",
	"controller.copy.status.pythonCode": "已將最後一段 Python 程式碼複製到剪貼簿",
	"controller.copy.warnings.noCommand": "在對話中找不到 bash 或 Python 命令。",
	"controller.session.title": "工作階段資訊",
	"controller.session.file": "檔案：",
	"controller.session.inMemory": "記憶體中",
	"controller.session.id": "ID：",
	"controller.session.provider": "供應商",
	"controller.session.noModel": "未選擇模型",
	"controller.session.messages": "訊息",
	"controller.session.user": "使用者：",
	"controller.session.assistant": "助理：",
	"controller.session.toolCalls": "工具呼叫：",
	"controller.session.toolResults": "工具結果：",
	"controller.session.total": "總計：",
	"controller.session.tokens": "權杖",
	"controller.session.input": "輸入：",
	"controller.session.output": "輸出：",
	"controller.session.cacheRead": "快取讀取：",
	"controller.session.cacheWrite": "快取寫入：",
	"controller.session.cost": "費用",
	"controller.session.premiumRequests": "進階請求：",
	"controller.session.pythonGateway": "Python 閘道",
	"controller.session.status": "狀態：",
	"controller.session.gatewayActive": "作用中（全域）",
	"controller.session.gatewayInactive": "未啟用",
	"controller.session.url": "URL：",
	"controller.session.pid": "PID：",
	"controller.session.python": "Python：",
	"controller.session.venv": "虛擬環境：",
	"controller.session.uptime": "執行時間：",
	"controller.session.lspServers": "LSP 伺服器",
	"controller.session.mcpServers": "MCP 伺服器",
	"controller.session.noneConnected": "無已連線",
	"controller.jobs.title": "背景工作",
	"controller.jobs.running": "執行中：",
	"controller.jobs.noJobs": "目前沒有非同步工作。",
	"controller.jobs.runningJobs": "執行中的工作",
	"controller.jobs.recentJobs": "最近的工作",
	"controller.jobs.unavailable": "非同步背景工作在此工作階段中不可用。",
	"controller.usage.notConfigured": "此工作階段未設定用量報告。",
	"controller.usage.fetchFailed": "擷取用量資料失敗：{message}",
	"controller.usage.noData": "沒有可用的用量資料。",
	"controller.changelog.noEntries": "找不到更新日誌項目。",
	"controller.changelog.fullTitle": "完整更新日誌",
	"controller.changelog.recentTitle": "最近更新",
	"controller.hotkeys.title": "鍵盤快速鍵",
	"controller.tools.title": "可用工具",
	"controller.memory.title": "記憶注入載荷",
	"controller.memory.empty": "記憶載荷為空（記憶功能已停用或找不到記憶摘要）。",
	"controller.memory.cleared": "記憶資料已清除，系統提示已重新整理。",
	"controller.memory.clearFailed": "清除記憶失敗：{message}",
	"controller.memory.enqueued": "記憶整合已加入佇列。",
	"controller.memory.enqueueFailed": "記憶入列失敗：{message}",
	"controller.memory.usage": "用法：/memory <view|clear|reset|enqueue|rebuild>",
	"controller.newSession": "新的工作階段已開始",
	"controller.fork.streaming": "請等待目前的回應完成或中止後再分叉。",
	"controller.fork.failed": "分叉失敗（工作階段未持久化或已取消）",
	"controller.fork.success": "工作階段已分叉至 {path}",
	"controller.move.streaming": "請等待目前的回應完成或中止後再移動。",
	"controller.move.usage": "用法：/move <路徑>",
	"controller.move.notDirectory": "不是目錄：{path}",
	"controller.move.notExists": "目錄不存在：{path}",
	"controller.move.success": "工作階段已移動至 {path}",
	"controller.move.failed": "移動失敗：{message}",
	"controller.rename.empty": "工作階段名稱不能為空。",
	"controller.rename.success": "工作階段已重新命名為 \"{name}\"。",
	"controller.rename.failed": "重新命名失敗：{message}",
	"controller.share.ghNotLoggedIn": "GitHub CLI 未登入。請先執行 'gh auth login'。",
	"controller.share.ghNotInstalled": "GitHub CLI (gh) 未安裝。請從 https://cli.github.com/ 安裝。",
	"controller.share.creatingGist": "正在建立 gist...",
	"controller.share.sharing": "正在分享...",
	"controller.share.cancelled": "分享已取消",
	"controller.share.sessionShared": "工作階段已分享",
	"controller.share.customFailed": "自訂分享失敗：{message}",
	"controller.share.gistFailed": "建立 gist 失敗：{message}",
	"controller.share.gistParseFailed": "無法從 gh 輸出中剖析 gist ID",
	"controller.bash.failed": "Bash 命令執行失敗：{message}",
	"hotkeys.navigation.title": "導覽",
	"hotkeys.navigation.moveCursor": "移動游標 / 瀏覽歷史紀錄（空白時按上鍵）",
	"hotkeys.navigation.moveByWord": "按詞移動",
	"hotkeys.navigation.startOfLine": "行首",
	"hotkeys.navigation.endOfLine": "行尾",
	"hotkeys.editing.title": "編輯",
	"hotkeys.editing.sendMessage": "傳送訊息",
	"hotkeys.editing.newLine": "換行",
	"hotkeys.editing.deleteWordBackwards": "向後刪除一個詞",
	"hotkeys.editing.deleteToStart": "刪除至行首",
	"hotkeys.editing.deleteToEnd": "刪除至行尾",
	"hotkeys.editing.copyLine": "複製目前行",
	"hotkeys.editing.copyPrompt": "複製整個提示",
	"hotkeys.other.title": "其他",
	"hotkeys.other.pathCompletion": "路徑自動完成 / 接受自動完成",
	"hotkeys.other.cancelInterrupt": "取消自動完成 / 中斷目前操作",
	"hotkeys.other.clearExit": "清空編輯器（第一次）/ 結束（第二次）",
	"hotkeys.other.exit": "結束（編輯器為空時）",
	"hotkeys.other.suspend": "暫停至背景",
	"hotkeys.other.cycleThinking": "切換思考層級",
	"hotkeys.other.cycleModelsForward": "切換角色模型（slow/default/smol）",
	"hotkeys.other.cycleModelsBackward": "切換角色模型（暫時）",
	"hotkeys.other.selectModelTemp": "選擇模型（暫時）",
	"hotkeys.other.selectModel": "選擇模型（設定角色）",
	"hotkeys.other.togglePlan": "切換計劃模式",
	"hotkeys.other.searchHistory": "搜尋提示歷史紀錄",
	"hotkeys.other.toggleToolExpand": "切換工具輸出展開",
	"hotkeys.other.toggleThinking": "切換思考區塊顯示",
	"hotkeys.other.externalEditor": "在外部編輯器中編輯訊息",
	"hotkeys.other.pasteImage": "從剪貼簿貼上圖片",
	"hotkeys.other.toggleStt": "切換語音轉文字錄音",
	"hotkeys.other.promptActions": "開啟提示操作",
	"hotkeys.other.slashCommands": "斜線命令",
	"hotkeys.other.runBash": "執行 bash 命令",
	"hotkeys.other.runBashExcluded": "執行 bash 命令（排除在上下文外）",
	"hotkeys.other.runPython": "在共用核心中執行 Python",
	"hotkeys.other.runPythonExcluded": "執行 Python（排除在上下文外）",
	"tools.emptyState": "目前沒有對代理程式可見的工具。",
	"tools.noDescription": "未提供描述。",
	"tools.tableHeaderTool": "工具",
	"tools.tableHeaderDescription": "描述",
	"context.list.noneFound": "找不到 F5 XC 上下文。使用 /context create 或讓我協助您設定。",
	"context.activate.usage": "用法：/context activate <name>。執行 `/context list` 查看可用上下文。",
	"context.activate.notFound": "找不到上下文 '{name}'。執行 /context list 查看可用上下文，或執行 /context create {name} <url> <token> 建立一個。",
	"context.show.noActive": "沒有作用中的上下文。執行 `/context create <name>` 建立一個，或執行 `/context activate <name>` 啟用已有上下文。",
	"context.show.notFound": "找不到上下文 '{name}'。執行 `/context list` 查看可用上下文。",
	"context.validate.usage": "缺少上下文名稱。用法：/context validate <name>。對於作用中的上下文，請使用 /context status。",
	"context.status.notConfigured": "未設定。使用 /context create 或讓我協助您設定。",
	"context.create.usage": "用法：/context create <name> <url> <token> [namespace]",
	"context.create.invalidName": "上下文名稱必須由英數字元、連字號和底線組成，最長 64 個字元。",
	"context.create.invalidUrl": "API URL 必須是有效的 HTTPS URL（例如 https://tenant.console.ves.volterra.io）",
	"context.rename.usage": "用法：/context rename <old> <new>",
	"context.export.usage": "用法：/context export [name] [--include-token]",
	"context.import.usage": "用法：/context import <path-or-json> [--overwrite]",
	"context.import.invalidJson": "匯入來源不是有效的 JSON：{message}",
	"context.import.fileNotFound": "找不到匯入檔案：{path}",
	"context.delete.usage": "用法：/context delete <name> --confirm",
	"context.delete.cannotDeleteActive": "無法刪除作用中的上下文。請先執行 `/context activate <other>` 切換。",
	"context.namespace.usage": "用法：/context namespace <name>\n在不更改上下文的情況下切換作用中的命名空間。預設為 'default'。",
	"context.env.unknownAction": "未知的環境變數操作：{action}。請使用 /context env set|unset|list",
	"context.env.noActive": "沒有作用中的上下文。請先使用 /context activate <name>。",
	"context.env.set.usage": "找不到 KEY=VALUE 對。用法：/context set KEY=VALUE [KEY2=VALUE2 ...]",
	"context.env.unset.usage": "找不到變數名稱。用法：/context unset KEY [KEY2 ...]",
	"mcp.errors.unknownSubcommand": "未知的子指令：{subcommand}。輸入 /mcp help 查看用法。",
	"mcp.errors.invalidScope": "無效的 --scope 值。請使用 project 或 user。",
	"mcp.errors.unknownOption": "未知的選項：{option}",
	"mcp.errors.missingUrl": "缺少 --url 的值。",
	"mcp.errors.invalidTransport": "無效的 --transport 值。請使用 http 或 sse。",
	"mcp.errors.missingToken": "缺少 --token 的值。",
	"mcp.errors.missingLimit": "缺少 --limit 的值。",
	"mcp.errors.invalidLimit": "無效的 --limit 值。請使用 1 到 100 之間的整數。",
	"mcp.errors.serverNotFound": "找不到伺服器 \"{name}\"。",
	"mcp.errors.serverNotFoundInScope": "在 {scope} 設定中找不到伺服器 \"{name}\"。",
	"mcp.errors.noManager": "沒有可用的 MCP 管理器。",
	"mcp.action.enable": "啟用",
	"mcp.action.disable": "停用",
	"mcp.add.nameRequired": "快速新增需要伺服器名稱。用法：/mcp add <name> ...",
	"mcp.add.urlOrCommand": "請使用 --url 或 -- <command...>，不能同時使用兩者。",
	"mcp.add.tokenRequiresUrl": "--token 需要 --url（HTTP/SSE 傳輸）。",
	"mcp.remove.usage": "需要伺服器名稱。用法：/mcp remove <name> [--scope project|user]",
	"mcp.remove.failed": "移除伺服器失敗：{message}",
	"mcp.test.usage": "需要伺服器名稱。用法：/mcp test <name>",
	"mcp.test.disabled": "伺服器 \"{name}\" 已停用。請先執行 /mcp enable {name}。",
	"mcp.test.cancelled": "已取消對 \"{name}\" 的 MCP 測試",
	"mcp.test.failed": "連線 \"{name}\" 失敗：{message}",
	"mcp.enable.usage": "需要伺服器名稱。用法：/mcp enable <name>",
	"mcp.disable.usage": "需要伺服器名稱。用法：/mcp disable <name>",
	"mcp.setEnabled.failed": "無法{action}伺服器：{message}",
	"mcp.unauth.usage": "需要伺服器名稱。用法：/mcp unauth <name>",
	"mcp.unauth.failed": "清除授權失敗：{message}",
	"mcp.reauth.usage": "需要伺服器名稱。用法：/mcp reauth <name>",
	"mcp.reauth.disabled": "伺服器 \"{name}\" 已停用。請先執行 /mcp enable {name}。",
	"mcp.reauth.failed": "重新授權伺服器失敗：{message}",
	"mcp.reload.failed": "重新載入 MCP 失敗：{message}",
	"mcp.reconnect.usage": "需要伺服器名稱。用法：/mcp reconnect <name>",
	"mcp.reconnect.failed": "重新連線 \"{name}\" 失敗。請檢查伺服器狀態和日誌。",
	"mcp.reconnect.failedWithError": "重新連線 \"{name}\" 失敗：{message}",
	"mcp.smithery.searchUsage": "需要關鍵字。用法：/mcp smithery-search <keyword> [--scope project|user] [--limit <1-100>] [--semantic]",
	"mcp.smithery.keyEmpty": "Smithery API 金鑰不能為空。",
	"mcp.smithery.keySaved": "Smithery API 金鑰已儲存。",
	"mcp.smithery.validationFailed": "Smithery API 金鑰驗證失敗：{message}",
	"mcp.smithery.loginCancelled": "Smithery 登入已取消。",
	"mcp.smithery.keyRemoved": "Smithery API 金鑰已移除。",
	"mcp.smithery.noKeyFound": "找不到快取的 Smithery API 金鑰。",
	"mcp.smithery.deployCancelled": "MCP 部署已取消。",
	"mcp.smithery.selectionCancelled": "MCP Smithery 選取已取消。",
	"mcp.smithery.searchFailed": "Smithery 搜尋失敗：{message}"
}
