@benbenwu/zcf 3.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +193 -0
- package/bin/zcf.mjs +2 -0
- package/dist/chunks/api-providers.mjs +137 -0
- package/dist/chunks/claude-code-config-manager.mjs +731 -0
- package/dist/chunks/claude-code-incremental-manager.mjs +601 -0
- package/dist/chunks/codex-config-switch.mjs +394 -0
- package/dist/chunks/codex-provider-manager.mjs +197 -0
- package/dist/chunks/codex-uninstaller.mjs +422 -0
- package/dist/chunks/commands.mjs +118 -0
- package/dist/chunks/features.mjs +632 -0
- package/dist/chunks/simple-config.mjs +7904 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.mjs +2013 -0
- package/dist/i18n/locales/en/api.json +53 -0
- package/dist/i18n/locales/en/ccr.json +65 -0
- package/dist/i18n/locales/en/cli.json +55 -0
- package/dist/i18n/locales/en/codex.json +123 -0
- package/dist/i18n/locales/en/cometix.json +29 -0
- package/dist/i18n/locales/en/common.json +20 -0
- package/dist/i18n/locales/en/configuration.json +85 -0
- package/dist/i18n/locales/en/errors.json +26 -0
- package/dist/i18n/locales/en/installation.json +80 -0
- package/dist/i18n/locales/en/language.json +19 -0
- package/dist/i18n/locales/en/mcp.json +24 -0
- package/dist/i18n/locales/en/menu.json +51 -0
- package/dist/i18n/locales/en/multi-config.json +79 -0
- package/dist/i18n/locales/en/tools.json +15 -0
- package/dist/i18n/locales/en/uninstall.json +56 -0
- package/dist/i18n/locales/en/updater.json +25 -0
- package/dist/i18n/locales/en/workflow.json +23 -0
- package/dist/i18n/locales/zh-CN/api.json +53 -0
- package/dist/i18n/locales/zh-CN/ccr.json +65 -0
- package/dist/i18n/locales/zh-CN/cli.json +55 -0
- package/dist/i18n/locales/zh-CN/codex.json +123 -0
- package/dist/i18n/locales/zh-CN/cometix.json +29 -0
- package/dist/i18n/locales/zh-CN/common.json +20 -0
- package/dist/i18n/locales/zh-CN/configuration.json +85 -0
- package/dist/i18n/locales/zh-CN/errors.json +26 -0
- package/dist/i18n/locales/zh-CN/installation.json +80 -0
- package/dist/i18n/locales/zh-CN/language.json +19 -0
- package/dist/i18n/locales/zh-CN/mcp.json +24 -0
- package/dist/i18n/locales/zh-CN/menu.json +51 -0
- package/dist/i18n/locales/zh-CN/multi-config.json +79 -0
- package/dist/i18n/locales/zh-CN/tools.json +15 -0
- package/dist/i18n/locales/zh-CN/uninstall.json +56 -0
- package/dist/i18n/locales/zh-CN/updater.json +25 -0
- package/dist/i18n/locales/zh-CN/workflow.json +23 -0
- package/dist/index.d.mts +324 -0
- package/dist/index.d.ts +324 -0
- package/dist/index.mjs +19 -0
- package/dist/shared/zcf.DGjQxTq_.mjs +34 -0
- package/package.json +117 -0
- package/templates/CLAUDE.md +221 -0
- package/templates/claude-code/CLAUDE.md +250 -0
- package/templates/claude-code/common/settings.json +48 -0
- package/templates/claude-code/en/workflow/bmad/commands/bmad-init.md +275 -0
- package/templates/claude-code/en/workflow/common/agents/get-current-datetime.md +29 -0
- package/templates/claude-code/en/workflow/common/agents/init-architect.md +114 -0
- package/templates/claude-code/en/workflow/common/commands/init-project.md +53 -0
- package/templates/claude-code/en/workflow/plan/agents/planner.md +116 -0
- package/templates/claude-code/en/workflow/plan/agents/ui-ux-designer.md +91 -0
- package/templates/claude-code/en/workflow/plan/commands/feat.md +105 -0
- package/templates/claude-code/zh-CN/workflow/bmad/commands/bmad-init.md +275 -0
- package/templates/claude-code/zh-CN/workflow/common/agents/get-current-datetime.md +29 -0
- package/templates/claude-code/zh-CN/workflow/common/agents/init-architect.md +114 -0
- package/templates/claude-code/zh-CN/workflow/common/commands/init-project.md +53 -0
- package/templates/claude-code/zh-CN/workflow/plan/agents/planner.md +116 -0
- package/templates/claude-code/zh-CN/workflow/plan/agents/ui-ux-designer.md +91 -0
- package/templates/claude-code/zh-CN/workflow/plan/commands/feat.md +105 -0
- package/templates/codex/common/config.toml +0 -0
- package/templates/common/output-styles/en/engineer-professional.md +88 -0
- package/templates/common/output-styles/en/laowang-engineer.md +127 -0
- package/templates/common/output-styles/en/leibus-engineer.md +251 -0
- package/templates/common/output-styles/en/nekomata-engineer.md +120 -0
- package/templates/common/output-styles/en/ojousama-engineer.md +121 -0
- package/templates/common/output-styles/en/rem-engineer.md +173 -0
- package/templates/common/output-styles/zh-CN/engineer-professional.md +89 -0
- package/templates/common/output-styles/zh-CN/laowang-engineer.md +127 -0
- package/templates/common/output-styles/zh-CN/leibus-engineer.md +251 -0
- package/templates/common/output-styles/zh-CN/nekomata-engineer.md +120 -0
- package/templates/common/output-styles/zh-CN/ojousama-engineer.md +121 -0
- package/templates/common/output-styles/zh-CN/rem-engineer.md +179 -0
- package/templates/common/workflow/git/en/git-cleanBranches.md +102 -0
- package/templates/common/workflow/git/en/git-commit.md +205 -0
- package/templates/common/workflow/git/en/git-rollback.md +90 -0
- package/templates/common/workflow/git/en/git-worktree.md +276 -0
- package/templates/common/workflow/git/zh-CN/git-cleanBranches.md +102 -0
- package/templates/common/workflow/git/zh-CN/git-commit.md +205 -0
- package/templates/common/workflow/git/zh-CN/git-rollback.md +90 -0
- package/templates/common/workflow/git/zh-CN/git-worktree.md +276 -0
- package/templates/common/workflow/sixStep/en/workflow.md +251 -0
- package/templates/common/workflow/sixStep/zh-CN/workflow.md +215 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"menuDescriptions.ccrManagement": "Configure Claude Code Router to use multiple AI models",
|
|
3
|
+
"menuDescriptions.ccusage": "Claude Code usage analysis",
|
|
4
|
+
"menuDescriptions.changeLanguage": "Change ZCF interface language",
|
|
5
|
+
"menuDescriptions.checkUpdates": "Check and update Claude Code, CCR and CCometixLine versions",
|
|
6
|
+
"menuDescriptions.uninstall": "Remove Claude Code configurations and tools from your system",
|
|
7
|
+
"menuDescriptions.cometixLine": "High-performance Claude Code statusline tool with Git integration and real-time usage tracking",
|
|
8
|
+
"menuDescriptions.configureAiMemory": "Configure AI output language and output styles",
|
|
9
|
+
"menuDescriptions.configureApiOrCcr": "Configure API URL, authentication or CCR proxy",
|
|
10
|
+
"menuDescriptions.configureEnvPermission": "Import privacy protection environment variables and system permissions",
|
|
11
|
+
"menuDescriptions.configureMcp": "Configure MCP services (includes Windows fix)",
|
|
12
|
+
"menuDescriptions.configureModel": "Set default model (opus/sonnet/sonnet 1m/custom)",
|
|
13
|
+
"menuDescriptions.fullInit": "Install Claude Code + Import workflow + Configure API or CCR proxy + Configure MCP services",
|
|
14
|
+
"menuDescriptions.importWorkflow": "Import/update workflow-related files only",
|
|
15
|
+
"menuOptions.ccrManagement": "CCR",
|
|
16
|
+
"menuOptions.ccusage": "ccusage",
|
|
17
|
+
"menuOptions.changeLanguage": "Select display language / 更改显示语言",
|
|
18
|
+
"menuOptions.checkUpdates": "Check updates",
|
|
19
|
+
"menuOptions.uninstall": "Uninstall & Remove Configurations",
|
|
20
|
+
"menuOptions.cometixLine": "CCometixLine",
|
|
21
|
+
"menuOptions.configureAiMemory": "Configure Claude global memory",
|
|
22
|
+
"menuOptions.configureApiOrCcr": "Configure API / CCR proxy",
|
|
23
|
+
"menuOptions.configureEnvPermission": "Import recommended environment variables and permissions",
|
|
24
|
+
"menuOptions.configureMcp": "Configure MCP",
|
|
25
|
+
"menuOptions.configureModel": "Configure default model",
|
|
26
|
+
"menuOptions.switchCodeTool": "Switch code tool",
|
|
27
|
+
"menuOptions.exit": "Exit",
|
|
28
|
+
"menuOptions.fullInit": "Full initialization",
|
|
29
|
+
"menuOptions.importWorkflow": "Import workflow",
|
|
30
|
+
"menuOptions.codexFullInit": "Full initialization",
|
|
31
|
+
"menuOptions.codexImportWorkflow": "Import workflow",
|
|
32
|
+
"menuOptions.codexConfigureApi": "Configure API",
|
|
33
|
+
"menuOptions.codexConfigureMcp": "Configure MCP",
|
|
34
|
+
"menuOptions.codexConfigureModel": "Configure default model",
|
|
35
|
+
"menuOptions.codexConfigureAiMemory": "Configure Codex global memory",
|
|
36
|
+
"menuOptions.codexUninstall": "Uninstall Codex",
|
|
37
|
+
"menuOptions.codexCheckUpdates": "Check Codex updates",
|
|
38
|
+
"menuSections.otherTools": "Other Tools",
|
|
39
|
+
"menuDescriptions.switchCodeTool": "Switch between supported code tools (Claude Code, Codex)",
|
|
40
|
+
"menuDescriptions.codexFullInit": "Install Codex + Import workflow + Configure API + Configure MCP",
|
|
41
|
+
"menuDescriptions.codexImportWorkflow": "Import/update Codex workflow-related files",
|
|
42
|
+
"menuDescriptions.codexConfigureApi": "Configure Codex API providers",
|
|
43
|
+
"menuDescriptions.codexConfigureMcp": "Configure Codex MCP services",
|
|
44
|
+
"menuDescriptions.codexConfigureModel": "Set default model (gpt-5.2/gpt-5.1-codex-max/gpt-5.1-codex-mini/custom)",
|
|
45
|
+
"menuDescriptions.codexConfigureAiMemory": "Configure AI output language and system prompt style",
|
|
46
|
+
"menuDescriptions.codexUninstall": "Remove Codex configuration and files",
|
|
47
|
+
"menuDescriptions.codexCheckUpdates": "Check and update Codex",
|
|
48
|
+
"switchCodeToolPrompt": "Select code tool type",
|
|
49
|
+
"codeToolSwitched": "Code tool switched to {{tool}}",
|
|
50
|
+
"selectFunction": "Select function"
|
|
51
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"configsAddedSuccessfully": "API configurations added successfully",
|
|
3
|
+
"configsFailed": "Failed to add API configurations",
|
|
4
|
+
"defaultProfileSet": "Set default profile: {{name}}",
|
|
5
|
+
"providerAdded": "Added provider: {{name}}",
|
|
6
|
+
"defaultProviderSet": "Set default provider: {{name}}",
|
|
7
|
+
"noClaudeCodeProfilesAvailable": "No Claude Code profiles available",
|
|
8
|
+
"availableClaudeCodeProfiles": "Available Claude Code Profiles",
|
|
9
|
+
"selectClaudeCodeConfiguration": "Select Claude Code configuration:",
|
|
10
|
+
"cancelled": "Cancelled",
|
|
11
|
+
"successfullySwitchedToOfficial": "Successfully switched to official login",
|
|
12
|
+
"failedToSwitchToOfficial": "Failed to switch to official login: {{error}}",
|
|
13
|
+
"successfullySwitchedToCcr": "Successfully switched to CCR proxy",
|
|
14
|
+
"failedToSwitchToCcr": "Failed to switch to CCR proxy: {error}",
|
|
15
|
+
"successfullySwitchedToProfile": "Successfully switched to profile: {{name}}",
|
|
16
|
+
"failedToSwitchToProfile": "Failed to switch to profile: {{error}}",
|
|
17
|
+
"incrementalManagementTitle": "📋 Claude Code Configuration Management",
|
|
18
|
+
"currentProfileCount": "Current profile count: {{count}}",
|
|
19
|
+
"currentDefaultProfile": "Current default profile: {{profile}}",
|
|
20
|
+
"addProfile": "Add Profile",
|
|
21
|
+
"editProfile": "Edit Profile",
|
|
22
|
+
"copyProfile": "Copy Profile",
|
|
23
|
+
"deleteProfile": "Delete Profile",
|
|
24
|
+
"selectAction": "Select action",
|
|
25
|
+
"addingNewProfile": "Adding New Profile",
|
|
26
|
+
"profileNamePrompt": "Profile name (letters, numbers, spaces, . _ -)",
|
|
27
|
+
"profileNameRequired": "Profile name is required",
|
|
28
|
+
"profileNameInvalid": "Profile name can only contain letters, numbers, spaces, hyphens, and underscores",
|
|
29
|
+
"authTypePrompt": "Select authentication type",
|
|
30
|
+
"apiKeyPrompt": "Enter API key",
|
|
31
|
+
"apiKeyRequired": "API key is required",
|
|
32
|
+
"baseUrlPrompt": "Enter API base URL",
|
|
33
|
+
"baseUrlRequired": "API base URL is required",
|
|
34
|
+
"baseUrlInvalid": "Please enter a valid URL",
|
|
35
|
+
"setAsDefaultPrompt": "Set as default profile",
|
|
36
|
+
"authType.api_key": "API Key",
|
|
37
|
+
"authType.auth_token": "Auth Token",
|
|
38
|
+
"authType.ccr_proxy": "CCR Proxy",
|
|
39
|
+
"ccrProxyOption": "Use CCR Proxy",
|
|
40
|
+
"profileAdded": "✔ Successfully added profile: {{name}}",
|
|
41
|
+
"profileAddFailed": "❌ Failed to add profile: {{error}}",
|
|
42
|
+
"profileDuplicatePrompt": "Profile '{{name}}' already exists in {{source}}, overwrite it?",
|
|
43
|
+
"profileDuplicateSkipped": "Skipped duplicate profile configuration",
|
|
44
|
+
"existingConfig": "existing configuration",
|
|
45
|
+
"addAnotherProfilePrompt": "Add another Claude Code profile?",
|
|
46
|
+
"profileSetAsDefault": "✔ Set profile {{name}} as default",
|
|
47
|
+
"profileNotFound": "Profile not found",
|
|
48
|
+
"editingProfile": "Editing Profile: {{name}}",
|
|
49
|
+
"profileUpdated": "✔ Successfully updated profile: {{name}}",
|
|
50
|
+
"profileUpdateFailed": "❌ Failed to update profile: {{error}}",
|
|
51
|
+
"selectProfileToEdit": "Select profile to edit",
|
|
52
|
+
"selectProfileToCopy": "Select profile to copy",
|
|
53
|
+
"copyingProfile": "Copying profile: {{name}}",
|
|
54
|
+
"profileCopied": "✔ Successfully copied profile: {{name}}",
|
|
55
|
+
"profileCopyFailed": "❌ Failed to copy profile: {{error}}",
|
|
56
|
+
"selectProfilesToDelete": "Select profiles to delete (multiple)",
|
|
57
|
+
"selectAtLeastOne": "Please select at least one profile",
|
|
58
|
+
"cannotDeleteAll": "Cannot delete all profiles, at least one must remain",
|
|
59
|
+
"cannotDeleteLast": "Cannot delete the last profile",
|
|
60
|
+
"confirmDeleteProfiles": "Confirm deletion of the following profiles: {{providers}}?",
|
|
61
|
+
"profilesDeleted": "✔ Successfully deleted {{count}} profiles",
|
|
62
|
+
"profilesDeleteFailed": "❌ Failed to delete profiles: {{error}}",
|
|
63
|
+
"newDefaultProfile": "ℹ️ New default profile: {{profile}}",
|
|
64
|
+
"settingsApplied": "✔ Settings applied",
|
|
65
|
+
"failedToApplySettings": "Failed to apply settings",
|
|
66
|
+
"profileNameNotFound": "Profile \"{{name}}\" not found",
|
|
67
|
+
"conflictingParams": "Cannot specify both --api-configs and --api-configs-file at the same time",
|
|
68
|
+
"mustBeArray": "API configs must be an array",
|
|
69
|
+
"mustHaveValidName": "Each config must have a valid name",
|
|
70
|
+
"invalidAuthType": "Invalid auth type: {{type}}",
|
|
71
|
+
"duplicateName": "Duplicate config name: {{name}}",
|
|
72
|
+
"configApiKeyRequired": "Config \"{{name}}\" requires API key",
|
|
73
|
+
"ccrProxyReserved": "CCR proxy type is reserved and cannot be added manually (config: \"{{name}}\")",
|
|
74
|
+
"configProfileAddFailed": "Failed to add profile \"{{name}}\": {{error}}",
|
|
75
|
+
"providerAddFailed": "Failed to add provider \"{{name}}\": {{error}}",
|
|
76
|
+
"invalidJson": "Invalid API configs JSON: {{error}}",
|
|
77
|
+
"fileReadFailed": "Failed to read API configs file: {{error}}",
|
|
78
|
+
"providerOrTypeRequired": "Must provide either provider or type field"
|
|
79
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ccusageDescription": "CCUsage is a tool for Claude Code usage analytics",
|
|
3
|
+
"ccusageFailed": "CCUsage failed to run",
|
|
4
|
+
"ccusageModes.blocks": "Analyze code blocks",
|
|
5
|
+
"ccusageModes.custom": "Custom parameters",
|
|
6
|
+
"ccusageModes.daily": "Daily usage",
|
|
7
|
+
"ccusageModes.monthly": "Monthly usage",
|
|
8
|
+
"ccusageModes.session": "Session statistics",
|
|
9
|
+
"checkNetworkConnection": "Check network connection",
|
|
10
|
+
"enterCustomArgs": "Enter custom arguments",
|
|
11
|
+
"errorDetails": "Error details:",
|
|
12
|
+
"pressEnterToContinue": "Press Enter to continue...",
|
|
13
|
+
"runningCcusage": "Running Claude Code usage analysis tool...",
|
|
14
|
+
"selectAnalysisMode": "Select analysis mode:"
|
|
15
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "ZCF Uninstaller",
|
|
3
|
+
"selectMainOption": "Select uninstall option:",
|
|
4
|
+
"completeUninstall": "Complete Uninstall",
|
|
5
|
+
"completeUninstallDesc": "Remove all Claude Code related configurations and tools",
|
|
6
|
+
"customUninstall": "Custom Uninstall",
|
|
7
|
+
"customUninstallDesc": "Select specific items to remove",
|
|
8
|
+
"selectCustomItems": "Select items to remove:",
|
|
9
|
+
"selectItemsToRemove": "Choose configurations and tools to remove:",
|
|
10
|
+
"selectAtLeastOne": "Please select at least one item to remove.",
|
|
11
|
+
"executingComplete": "🗑️ Executing Complete Uninstall",
|
|
12
|
+
"executingCustom": "🗑️ Executing Custom Uninstall",
|
|
13
|
+
"completeWarning": "⚠️ This will remove ALL Claude Code configurations, directories, and tools. This action cannot be undone!",
|
|
14
|
+
"confirmComplete": "Are you sure you want to completely uninstall Claude Code and all related tools?",
|
|
15
|
+
"confirmCustom": "Are you sure you want to remove the selected items?",
|
|
16
|
+
"processingComplete": "🔄 Processing complete uninstall...",
|
|
17
|
+
"processingCustom": "🔄 Processing custom uninstall...",
|
|
18
|
+
"selectedItems": "Selected items:",
|
|
19
|
+
"movedToTrash": "Moved to trash/recycle bin",
|
|
20
|
+
"removedConfigs": "Configuration removed",
|
|
21
|
+
"errors": "Errors occurred",
|
|
22
|
+
"warnings": "Warnings",
|
|
23
|
+
"completeSuccess": "Complete uninstall completed successfully! All files moved to trash/recycle bin.",
|
|
24
|
+
"completePartialSuccess": "Complete uninstall completed with some warnings.",
|
|
25
|
+
"customSuccess": "Custom uninstall completed successfully! Processed {{count}} items.",
|
|
26
|
+
"customSuccessFiles": "Custom uninstall completed successfully! Moved {{count}} files/directories to trash/recycle bin.",
|
|
27
|
+
"customSuccessConfigs": "Custom uninstall completed successfully! Removed {{count}} configuration items.",
|
|
28
|
+
"customSuccessBoth": "Custom uninstall completed successfully! Moved {{fileCount}} files/directories to trash/recycle bin and removed {{configCount}} configuration items.",
|
|
29
|
+
"errorsCount": "{{count}} errors occurred during uninstall.",
|
|
30
|
+
"warningsCount": "{{count}} warnings occurred during uninstall.",
|
|
31
|
+
|
|
32
|
+
"outputStyles": "Output Styles - Remove output style configurations",
|
|
33
|
+
"commands": "Commands - Remove custom ZCF commands",
|
|
34
|
+
"agents": "Agents - Remove custom ZCF agents",
|
|
35
|
+
"claudeMd": "CLAUDE.md - Remove global memory file",
|
|
36
|
+
"permissionsEnvs": "Permissions & Envs - Remove permissions and environment variables",
|
|
37
|
+
"mcps": "MCPs - Remove MCP server configurations",
|
|
38
|
+
"ccr": "Claude Code Router - Uninstall CCR and remove configurations",
|
|
39
|
+
"ccline": "CCometixLine - Uninstall status line tool",
|
|
40
|
+
"claudeCode": "Claude Code - Uninstall Claude Code and configurations",
|
|
41
|
+
"backups": "Backups - Remove backup files",
|
|
42
|
+
"zcfConfig": "ZCF Config - Remove ZCF preference configurations",
|
|
43
|
+
|
|
44
|
+
"settingsJsonNotFound": "settings.json not found",
|
|
45
|
+
"commandsNotFound": "Commands directory not found",
|
|
46
|
+
"agentsNotFound": "Agents directory not found",
|
|
47
|
+
"claudeMdNotFound": "CLAUDE.md file not found",
|
|
48
|
+
"claudeJsonNotFound": ".claude.json file not found",
|
|
49
|
+
"ccrPackageNotFound": "Claude Code Router package not found",
|
|
50
|
+
"cclinePackageNotFound": "CCometixLine package not found",
|
|
51
|
+
"claudeCodePackageNotFound": "Claude Code package not found",
|
|
52
|
+
"backupsNotFound": "Backup directory not found",
|
|
53
|
+
"zcfConfigNotFound": "ZCF configuration file not found",
|
|
54
|
+
"outputStylesDirectoryNotFound": "Output styles directory not found",
|
|
55
|
+
"uninstallFailed": "Failed to uninstall {{codeType}}{{message}}"
|
|
56
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"autoUpdating": "Auto-updating {tool}...",
|
|
3
|
+
"usingSudo": "Detected non-root Linux user. Using sudo for update (password prompt may appear).",
|
|
4
|
+
"cannotCheckVersion": "Cannot check latest version",
|
|
5
|
+
"ccrNotInstalled": "CCR is not installed",
|
|
6
|
+
"ccrUpToDate": "CCR is up to date (v{version})",
|
|
7
|
+
"checkFailed": "Version check failed",
|
|
8
|
+
"checkingTools": "Checking tool versions",
|
|
9
|
+
"checkingVersion": "Checking version...",
|
|
10
|
+
"claudeCodeNotInstalled": "Claude Code is not installed",
|
|
11
|
+
"claudeCodeUpToDate": "Claude Code is up to date (v{version})",
|
|
12
|
+
"cometixLineNotInstalled": "CCometixLine is not installed",
|
|
13
|
+
"cometixLineUpToDate": "CCometixLine is up to date (v{version})",
|
|
14
|
+
"confirmUpdate": "Update {tool} to the latest version?",
|
|
15
|
+
"currentVersion": "Current version: v{version}",
|
|
16
|
+
"errorCheckingUpdates": "Error checking updates:",
|
|
17
|
+
"failed": "failed",
|
|
18
|
+
"latestVersion": "Latest version: v{version}",
|
|
19
|
+
"success": "success",
|
|
20
|
+
"updateFailed": "{tool} update failed",
|
|
21
|
+
"updateSkipped": "Update skipped",
|
|
22
|
+
"updateSuccess": "{tool} updated successfully!",
|
|
23
|
+
"updateSummary": "Update Summary",
|
|
24
|
+
"updating": "Updating {tool}..."
|
|
25
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bmadInitPrompt": "✨ Please run /bmad-init command in your project to initialize or update BMAD-Method extension",
|
|
3
|
+
"cleaningOldFiles": "Cleaning up old version files",
|
|
4
|
+
"failedToInstallAgent": "Failed to install agent",
|
|
5
|
+
"failedToInstallCommand": "Failed to install command",
|
|
6
|
+
"installedAgent": "Installed agent",
|
|
7
|
+
"installedCommand": "Installed command",
|
|
8
|
+
"installingWorkflow": "Installing workflow",
|
|
9
|
+
"removedOldFile": "Removed old file",
|
|
10
|
+
"selectWorkflowType": "Select workflow type to install",
|
|
11
|
+
"workflowDescription.bmadWorkflow": "BMAD-Method enterprise-grade agile development workflow extension",
|
|
12
|
+
"workflowDescription.commonTools": "Provides project initialization and architecture analysis tools, including hierarchical directory initialization commands and intelligent architecture analysis agents",
|
|
13
|
+
"workflowDescription.featPlanUx": "Feature planning and user experience design workflow with planning and UX design agents",
|
|
14
|
+
"workflowDescription.gitWorkflow": "Git version control related commands collection",
|
|
15
|
+
"workflowDescription.sixStepsWorkflow": "Professional development assistant structured six-step workflow",
|
|
16
|
+
"workflowInstallError": "workflow installation had errors",
|
|
17
|
+
"workflowInstallSuccess": "workflow installed successfully",
|
|
18
|
+
"workflowOption.bmadWorkflow": "BMAD-Method Extension Installer (Agile Development Workflow)",
|
|
19
|
+
"workflowOption.commonTools": "Common Tools (Hierarchical Directory Initialization + General-purpose agents)",
|
|
20
|
+
"workflowOption.featPlanUx": "Feature Planning and UX Design (feat + planner + ui-ux-designer)",
|
|
21
|
+
"workflowOption.gitWorkflow": "Git Commands (commit + rollback + cleanBranches + worktree)",
|
|
22
|
+
"workflowOption.sixStepsWorkflow": "Six Steps Workflow (workflow)"
|
|
23
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"apiConfigAuthType": "认证类型",
|
|
3
|
+
"apiConfigKey": "Key",
|
|
4
|
+
"apiConfigSuccess": "API 配置完成",
|
|
5
|
+
"apiConfigUrl": "URL",
|
|
6
|
+
"modelConfigSuccess": "API 模型配置完成",
|
|
7
|
+
"primaryModel": "主模型",
|
|
8
|
+
"fastModel": "快速模型",
|
|
9
|
+
"apiKeyDesc": "适用于从 Anthropic Console 获取的 API 密钥",
|
|
10
|
+
"apiKeyValidation.example": "示例格式: sk-abcdef123456_789xyz",
|
|
11
|
+
"authTokenDesc": "适用于通过 OAuth 或浏览器登录获取的令牌",
|
|
12
|
+
"configureApi": "选择 API 认证方式",
|
|
13
|
+
"enterApiKey": "请输入 API Key",
|
|
14
|
+
"enterApiUrl": "请输入 API URL",
|
|
15
|
+
"enterAuthToken": "请输入 Auth Token",
|
|
16
|
+
"enterNewApiKey": "请输入新的 API Key(当前:{key})",
|
|
17
|
+
"enterNewApiUrl": "请输入新的 API URL(当前:{url})",
|
|
18
|
+
"existingApiConfig": "检测到已有 API 配置:",
|
|
19
|
+
"invalidKeyFormat": "无效的密钥格式",
|
|
20
|
+
"invalidUrl": "无效的 URL",
|
|
21
|
+
"keepExistingConfig": "保留现有配置",
|
|
22
|
+
"keyRequired": "密钥为必填项",
|
|
23
|
+
"modificationSaved": "配置已保存",
|
|
24
|
+
"modifyAllConfig": "修改全部配置",
|
|
25
|
+
"modifyApiKey": "修改 API Key",
|
|
26
|
+
"modifyApiUrl": "修改 API URL",
|
|
27
|
+
"modifyAuthType": "修改认证类型",
|
|
28
|
+
"modifyPartialConfig": "修改部分配置",
|
|
29
|
+
|
|
30
|
+
"selectApiMode": "请选择 API 配置模式",
|
|
31
|
+
"selectCustomConfigAction": "请选择自定义配置操作",
|
|
32
|
+
"selectModifyItems": "请选择要修改的项",
|
|
33
|
+
"selectNewAuthType": "选择新的认证类型(当前:{type})",
|
|
34
|
+
"skipApi": "跳过(稍后手动配置)",
|
|
35
|
+
"customApiConfig": "自定义 API 配置",
|
|
36
|
+
"urlRequired": "URL 为必填项",
|
|
37
|
+
"useApiKey": "使用 API Key (密钥认证)",
|
|
38
|
+
"useAuthToken": "使用 Auth Token (OAuth 认证)",
|
|
39
|
+
"useCcrProxy": "使用 CCR 代理",
|
|
40
|
+
"useOfficialLogin": "使用官方登录",
|
|
41
|
+
"officialLoginConfigured": "已切换到官方登录模式",
|
|
42
|
+
"officialLoginFailed": "切换到官方登录模式失败",
|
|
43
|
+
"apiModeOfficial": "使用官方登录(不配置 API)",
|
|
44
|
+
"apiModeCustom": "自定义 API 配置",
|
|
45
|
+
"apiModeCcr": "使用CCR代理",
|
|
46
|
+
"apiModeSwitch": "切换 API 配置",
|
|
47
|
+
"apiModeSkip": "跳过",
|
|
48
|
+
"apiModePrompt": "请选择 API 配置模式",
|
|
49
|
+
"selectApiProvider": "请选择 API 供应商",
|
|
50
|
+
"customProvider": "自定义配置",
|
|
51
|
+
"providerSelected": "已选择供应商: {{name}}",
|
|
52
|
+
"enterProviderApiKey": "请输入 {{provider}} 的 API Key"
|
|
53
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"advancedConfigTip": "您可以使用 ccr ui 命令进行更高级的配置",
|
|
3
|
+
"backupCcrConfig": "正在备份现有的 CCR 配置...",
|
|
4
|
+
"ccrAlreadyInstalled": "Claude Code Router 已安装",
|
|
5
|
+
"ccrBackupFailed": "备份 CCR 配置失败",
|
|
6
|
+
"ccrBackupSuccess": "CCR 配置已备份到:{path}",
|
|
7
|
+
"ccrCommandFailed": "执行 CCR 命令失败",
|
|
8
|
+
"ccrConfigFailed": "配置 CCR 失败",
|
|
9
|
+
"ccrConfigSuccess": "CCR 配置已保存",
|
|
10
|
+
"ccrInstallFailed": "安装 Claude Code Router 失败",
|
|
11
|
+
"ccrInstallSuccess": "Claude Code Router 安装成功",
|
|
12
|
+
"ccrMenuDescriptions.checkStatus": "查看 CCR 服务运行状态",
|
|
13
|
+
"ccrMenuDescriptions.initCcr": "安装并配置 CCR",
|
|
14
|
+
"ccrMenuDescriptions.restart": "重启 CCR 服务",
|
|
15
|
+
"ccrMenuDescriptions.start": "启动 CCR 服务",
|
|
16
|
+
"ccrMenuDescriptions.startUi": "打开 Web 界面管理 CCR",
|
|
17
|
+
"ccrMenuDescriptions.stop": "停止 CCR 服务",
|
|
18
|
+
"ccrMenuOptions.back": "返回主菜单",
|
|
19
|
+
"ccrMenuOptions.checkStatus": "查询 CCR 状态",
|
|
20
|
+
"ccrMenuOptions.initCcr": "初始化 CCR",
|
|
21
|
+
"ccrMenuOptions.restart": "重启 CCR",
|
|
22
|
+
"ccrMenuOptions.start": "启动 CCR",
|
|
23
|
+
"ccrMenuOptions.startUi": "启动 CCR UI",
|
|
24
|
+
"ccrMenuOptions.stop": "停止 CCR",
|
|
25
|
+
"ccrMenuTitle": "CCR - Claude Code Router 管理",
|
|
26
|
+
"ccrNotConfigured": "CCR 尚未配置。请先初始化 CCR。",
|
|
27
|
+
"ccrRestartFailed": "CCR 服务重启失败",
|
|
28
|
+
"ccrRestartSuccess": "CCR 服务已重启",
|
|
29
|
+
"ccrRestarted": "CCR 已重启",
|
|
30
|
+
"ccrSetupComplete": "CCR 设置完成",
|
|
31
|
+
"ccrStarted": "CCR 已启动",
|
|
32
|
+
"ccrStatusTitle": "CCR 状态信息:",
|
|
33
|
+
"ccrStopped": "CCR 已停止",
|
|
34
|
+
"ccrUiApiKey": "CCR UI 登录密钥",
|
|
35
|
+
"ccrUiApiKeyHint": "使用此密钥登录 CCR UI 界面",
|
|
36
|
+
"ccrUiStarted": "CCR UI 已启动",
|
|
37
|
+
"checkingCcrStatus": "正在查询 CCR 状态...",
|
|
38
|
+
"configTips": "配置提示",
|
|
39
|
+
"detectedIncorrectPackage": "检测到错误的包 claude-code-router,正在卸载...",
|
|
40
|
+
"enterApiKeyForProvider": "请输入 {provider} 的 API 密钥:",
|
|
41
|
+
"errorStartingCcrService": "启动 CCR 服务时出错",
|
|
42
|
+
"existingCcrConfig": "发现现有的 CCR 配置",
|
|
43
|
+
"failedToStartCcrService": "启动 CCR 服务失败",
|
|
44
|
+
"failedToUninstallIncorrectPackage": "卸载错误的包失败,继续安装",
|
|
45
|
+
"fetchingPresets": "正在获取提供商预设...",
|
|
46
|
+
"installingCcr": "正在安装 Claude Code Router...",
|
|
47
|
+
"keepingExistingConfig": "保留现有配置",
|
|
48
|
+
"manualConfigTip": "手动修改配置文件后,请执行 ccr restart 使配置生效",
|
|
49
|
+
"noPresetsAvailable": "没有可用的预设",
|
|
50
|
+
"overwriteCcrConfig": "是否备份现有的 CCR 配置并重新配置?",
|
|
51
|
+
"pleaseInitFirst": "请选择选项 1 来初始化 CCR。",
|
|
52
|
+
"proxyConfigSuccess": "代理设置已配置",
|
|
53
|
+
"restartingCcr": "正在重启 CCR...",
|
|
54
|
+
"selectCcrPreset": "选择一个提供商预设:",
|
|
55
|
+
"selectDefaultModelForProvider": "选择 {provider} 的默认模型:",
|
|
56
|
+
"skipConfiguring": "跳过预设配置,将创建空配置框架",
|
|
57
|
+
"skipOption": "跳过,在 CCR 中自行配置",
|
|
58
|
+
"startingCcr": "正在启动 CCR...",
|
|
59
|
+
"startingCcrUi": "正在启动 CCR UI...",
|
|
60
|
+
"stoppingCcr": "正在停止 CCR...",
|
|
61
|
+
"uninstalledIncorrectPackage": "成功卸载错误的包",
|
|
62
|
+
"useClaudeCommand": "请使用 claude 命令启动 Claude Code(而非 ccr code)",
|
|
63
|
+
"apiKeyApprovalSuccess": "CCR API密钥批准状态管理成功",
|
|
64
|
+
"apiKeyApprovalFailed": "CCR API密钥批准状态管理失败"
|
|
65
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"help.commands": "命令",
|
|
3
|
+
"help.shortcuts": "快捷方式",
|
|
4
|
+
"help.options": "选项",
|
|
5
|
+
"help.examples": "示例",
|
|
6
|
+
"help.nonInteractiveMode": "非交互模式(适用于CI/CD)",
|
|
7
|
+
"help.commandDescriptions.showInteractiveMenuDefault": "显示交互式菜单(默认)",
|
|
8
|
+
"help.commandDescriptions.initClaudeCodeConfig": "初始化 Claude Code 配置",
|
|
9
|
+
"help.commandDescriptions.updateWorkflowFiles": "仅更新工作流相关md",
|
|
10
|
+
"help.commandDescriptions.configureCcrProxy": "配置模型路由代理",
|
|
11
|
+
"help.commandDescriptions.claudeCodeUsageAnalysis": "Claude Code 用量统计分析",
|
|
12
|
+
"help.commandDescriptions.uninstallConfigurations": "删除 Claude Code 配置和工具",
|
|
13
|
+
"help.commandDescriptions.checkUpdateVersions": "检查并更新到最新版本",
|
|
14
|
+
"help.shortcutDescriptions.quickInit": "快速初始化",
|
|
15
|
+
"help.shortcutDescriptions.quickUpdate": "快速更新",
|
|
16
|
+
"help.shortcutDescriptions.quickCheckUpdates": "快速检查更新",
|
|
17
|
+
"help.optionDescriptions.displayLanguage": "显示语言",
|
|
18
|
+
"help.optionDescriptions.configurationLanguage": "配置语言",
|
|
19
|
+
"help.optionDescriptions.forceOverwrite": "强制覆盖现有配置",
|
|
20
|
+
"help.optionDescriptions.displayHelp": "显示帮助",
|
|
21
|
+
"help.optionDescriptions.displayVersion": "显示版本",
|
|
22
|
+
"help.optionDescriptions.skipAllPrompts": "跳过所有交互提示",
|
|
23
|
+
"help.optionDescriptions.apiType": "API类型",
|
|
24
|
+
"help.optionDescriptions.apiKey": "API密钥(适用于所有类型)",
|
|
25
|
+
"help.optionDescriptions.customApiUrl": "自定义API地址",
|
|
26
|
+
"help.optionDescriptions.apiModel": "主API模型",
|
|
27
|
+
"help.optionDescriptions.apiHaikuModel": "默认 Haiku 模型",
|
|
28
|
+
"help.optionDescriptions.apiSonnetModel": "默认 Sonnet 模型",
|
|
29
|
+
"help.optionDescriptions.apiOpusModel": "默认 Opus 模型",
|
|
30
|
+
"help.optionDescriptions.aiOutputLanguage": "AI输出语言",
|
|
31
|
+
"help.optionDescriptions.setAllLanguageParams": "统一设置所有语言参数",
|
|
32
|
+
"help.optionDescriptions.configHandling": "配置处理",
|
|
33
|
+
"help.optionDescriptions.mcpServices": "MCP服务",
|
|
34
|
+
"help.optionDescriptions.workflows": "工作流",
|
|
35
|
+
"help.optionDescriptions.outputStyles": "输出样式",
|
|
36
|
+
"help.optionDescriptions.defaultOutputStyle": "默认输出样式",
|
|
37
|
+
"help.optionDescriptions.installStatuslineTool": "安装状态栏工具",
|
|
38
|
+
"help.optionDescriptions.codeToolType": "代码工具类型",
|
|
39
|
+
"help.exampleDescriptions.showInteractiveMenu": "显示交互式菜单",
|
|
40
|
+
"help.exampleDescriptions.runFullInitialization": "运行完整初始化",
|
|
41
|
+
"help.exampleDescriptions.updateWorkflowFilesOnly": "仅更新工作流相关md文件",
|
|
42
|
+
"help.exampleDescriptions.configureClaudeCodeRouter": "配置 Claude Code Router",
|
|
43
|
+
"help.exampleDescriptions.runClaudeCodeUsageAnalysis": "运行 Claude Code 用量分析",
|
|
44
|
+
"help.exampleDescriptions.uninstallConfigurations": "卸载配置和工具",
|
|
45
|
+
"help.exampleDescriptions.checkAndUpdateTools": "检查并更新工具",
|
|
46
|
+
"help.exampleDescriptions.checkClaudeCode": "检查并更新Claude Code工具",
|
|
47
|
+
"help.exampleDescriptions.checkCodex": "检查并更新Codex工具",
|
|
48
|
+
"help.exampleDescriptions.nonInteractiveModeCicd": "非交互模式(CI/CD)",
|
|
49
|
+
"banner.subtitle": "Claude Code 一键配置工具",
|
|
50
|
+
"banner.updateSubtitle": "更新 Claude Code 配置",
|
|
51
|
+
"help.defaults.dailyUsage": "每日用量(默认)",
|
|
52
|
+
"help.defaults.interactiveUninstall": "交互式卸载菜单",
|
|
53
|
+
"help.defaults.updateTools": "更新 Claude Code、CCR 和 CCometixLine",
|
|
54
|
+
"help.defaults.prefix": "默认:"
|
|
55
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"usingSudo": "⚠️ 检测到 Linux 非 root 用户,正在使用 sudo 安装 Codex CLI(可能需要输入密码)。",
|
|
3
|
+
"alreadyInstalled": "⚠️ Codex CLI 已安装,跳过安装步骤",
|
|
4
|
+
"updatingCli": "🔄 正在更新 Codex CLI...",
|
|
5
|
+
"updateSuccess": "✔ Codex CLI 更新完成",
|
|
6
|
+
"detectedHomebrew": "检测到 Codex 通过 Homebrew 安装,将使用 Homebrew 更新",
|
|
7
|
+
"detectedNpm": "检测到 Codex 通过 npm 安装,将使用 npm 更新",
|
|
8
|
+
"unknownInstallMethod": "⚠️ 无法检测 Codex 安装方式",
|
|
9
|
+
"fallingBackToNpm": "回退到 npm 更新方式",
|
|
10
|
+
"workflowInstall": "✔ 已安装 Codex 工作流技能",
|
|
11
|
+
"backupSuccess": "✔ 已创建备份 {{path}}",
|
|
12
|
+
"apiModePrompt": "请选择 API 配置模式",
|
|
13
|
+
"apiModeOfficial": "使用官方登录(不配置 API)",
|
|
14
|
+
"apiModeCustom": "自定义 API 配置",
|
|
15
|
+
"officialConfigured": "✔ 已切换为官方登录模式",
|
|
16
|
+
"providerNamePrompt": "提供商名称(仅限字母、数字、._-)",
|
|
17
|
+
"providerNameRequired": "必须填写提供商名称",
|
|
18
|
+
"providerNameInvalid": "名称只能包含字母、数字、点、下划线或短横线",
|
|
19
|
+
"providerBaseUrlPrompt": "基础 URL",
|
|
20
|
+
"providerBaseUrlRequired": "必须填写基础 URL",
|
|
21
|
+
"providerProtocolPrompt": "选择使用的协议",
|
|
22
|
+
"protocolResponses": "Responses(推荐,新一代响应 API,支持状态管理)",
|
|
23
|
+
"providerApiKeyPrompt": "API Key 内容",
|
|
24
|
+
"providerApiKeyRequired": "必须填写 API Key",
|
|
25
|
+
"addProviderPrompt": "是否继续添加其他提供商?",
|
|
26
|
+
"selectDefaultProviderPrompt": "选择默认提供商",
|
|
27
|
+
"noProvidersConfigured": "⚠️ 未配置任何提供商,已跳过 Codex API 配置",
|
|
28
|
+
"apiConfigured": "✔ Codex API 配置完成",
|
|
29
|
+
"noMcpConfigured": "⚠️ 未配置任何 MCP 服务",
|
|
30
|
+
"mcpConfigured": "✔ Codex MCP 服务配置完成",
|
|
31
|
+
"uninstallModePrompt": "请选择 Codex 卸载模式",
|
|
32
|
+
"uninstallModeComplete": "完整卸载(删除所有 Codex 相关文件)",
|
|
33
|
+
"uninstallModeCustom": "自定义卸载(选择删除项目)",
|
|
34
|
+
"uninstallItemConfig": "配置文件 (config.toml)",
|
|
35
|
+
"uninstallItemAuth": "认证文件 (auth.json)",
|
|
36
|
+
"uninstallItemSystemPrompt": "系统提示文件 (AGENTS.md)",
|
|
37
|
+
"uninstallItemWorkflow": "工作流技能 (skills/zcf-*)",
|
|
38
|
+
"uninstallItemCliPackage": "CLI 包 (@openai/codex)",
|
|
39
|
+
"uninstallItemApiConfig": "API 配置 (仅删除 config.toml 中的 API 设置)",
|
|
40
|
+
"uninstallItemMcpConfig": "MCP 配置 (仅删除 config.toml 中的 MCP 设置)",
|
|
41
|
+
"uninstallItemBackups": "备份目录 (backup/)",
|
|
42
|
+
"customUninstallPrompt": "选择要删除的项目(使用空格选中/取消选中,回车确认)",
|
|
43
|
+
"uninstallPrompt": "即将移除 ZCF 创建的 Codex 配置,是否继续?",
|
|
44
|
+
"uninstallCancelled": "⚠️ 已取消 Codex 卸载",
|
|
45
|
+
"uninstallSuccess": "✔ 已删除 Codex 配置",
|
|
46
|
+
"configNotFound": "配置文件不存在",
|
|
47
|
+
"authNotFound": "认证文件不存在",
|
|
48
|
+
"systemPromptNotFound": "系统提示文件不存在",
|
|
49
|
+
"workflowNotFound": "工作流技能不存在",
|
|
50
|
+
"packageNotFound": "Codex CLI 包未安装",
|
|
51
|
+
"backupNotFound": "备份目录不存在",
|
|
52
|
+
"removedItem": "已移至废纸篓:{{item}}",
|
|
53
|
+
"removedConfig": "已删除配置:{{config}}",
|
|
54
|
+
"apiConfigRemoved": "API 配置(model_provider 和 model_providers 配置块)",
|
|
55
|
+
"mcpConfigRemoved": "MCP 配置(mcp_servers 配置块)",
|
|
56
|
+
"setupComplete": "✔ Codex 设置完成",
|
|
57
|
+
"systemPromptPrompt": "请选择系统提示词风格",
|
|
58
|
+
"workflowSelectionPrompt": "选择要安装的工作流类型(多选)",
|
|
59
|
+
"providerDuplicatePrompt": "提供商名称 '{{name}}' 已存在于{{source}}中,是否覆盖?",
|
|
60
|
+
"existingConfig": "现有配置",
|
|
61
|
+
"currentSession": "当前会话",
|
|
62
|
+
"providerDuplicateSkipped": "已跳过重复的提供商配置",
|
|
63
|
+
"providerSwitchSuccess": "✔ 已切换到提供商:{{provider}}",
|
|
64
|
+
"providerNotFound": "❌ 提供商 '{{provider}}' 不存在",
|
|
65
|
+
"listProvidersTitle": "可用的提供商列表:",
|
|
66
|
+
"currentProvider": "当前提供商:{{provider}}",
|
|
67
|
+
"noProvidersAvailable": "⚠️ 没有可用的提供商",
|
|
68
|
+
"configSwitchMode": "切换API配置",
|
|
69
|
+
"incrementalManagementTitle": "📋 增量配置管理",
|
|
70
|
+
"currentProviderCount": "当前配置供应商数量:{{count}}",
|
|
71
|
+
"currentDefaultProvider": "当前默认供应商:{{provider}}",
|
|
72
|
+
"selectAction": "请选择操作",
|
|
73
|
+
"addProvider": "添加供应商",
|
|
74
|
+
"editProvider": "编辑供应商",
|
|
75
|
+
"copyProvider": "复制供应商",
|
|
76
|
+
"deleteProvider": "删除供应商",
|
|
77
|
+
"selectProviderToEdit": "选择要编辑的供应商",
|
|
78
|
+
"selectProviderToCopy": "选择要复制的供应商",
|
|
79
|
+
"copyingProvider": "正在复制供应商:{{name}}",
|
|
80
|
+
"providerCopied": "✔ 已成功复制供应商:{{name}}",
|
|
81
|
+
"providerCopyFailed": "❌ 复制供应商失败:{{error}}",
|
|
82
|
+
"providerModelPrompt": "模型名称(如 gpt-5.2)",
|
|
83
|
+
"providerModelRequired": "必须填写模型名称",
|
|
84
|
+
"selectProvidersToDelete": "选择要删除的供应商(多选)",
|
|
85
|
+
"selectAtLeastOne": "请至少选择一个供应商",
|
|
86
|
+
"cannotDeleteAll": "不能删除所有供应商,至少需要保留一个",
|
|
87
|
+
"confirmDeleteProviders": "确认删除以下供应商:{{providers}}?",
|
|
88
|
+
"providerAdded": "✔ 已成功添加供应商:{{name}}",
|
|
89
|
+
"providerAddFailed": "❌ 添加供应商失败:{{error}}",
|
|
90
|
+
"providerUpdated": "✔ 已成功更新供应商:{{name}}",
|
|
91
|
+
"providerUpdateFailed": "❌ 更新供应商失败:{{error}}",
|
|
92
|
+
"providersDeleted": "✔ 已成功删除 {{count}} 个供应商",
|
|
93
|
+
"providersDeleteFailed": "❌ 删除供应商失败:{{error}}",
|
|
94
|
+
"newDefaultProvider": "ℹ️ 新的默认供应商:{{provider}}",
|
|
95
|
+
"noExistingProviders": "⚠️ 没有现有的供应商配置",
|
|
96
|
+
"useOfficialLogin": "使用官方登录",
|
|
97
|
+
"apiConfigSwitchPrompt": "选择要切换的API配置",
|
|
98
|
+
"agentsFileNotFound": "AGENTS.md 文件未找到,请先配置系统提示词",
|
|
99
|
+
"currentVersion": "当前版本: v{version}",
|
|
100
|
+
"latestVersion": "最新版本: v{version}",
|
|
101
|
+
"confirmUpdate": "将 Codex 更新到最新版本?",
|
|
102
|
+
"updateSkipped": "跳过更新",
|
|
103
|
+
"updating": "正在更新 Codex...",
|
|
104
|
+
"updateFailed": "Codex 更新失败",
|
|
105
|
+
"autoUpdating": "正在自动更新 Codex...",
|
|
106
|
+
"upToDate": "Codex 已是最新版本 (v{version})",
|
|
107
|
+
"notInstalled": "Codex 未安装",
|
|
108
|
+
"cannotCheckVersion": "无法检查最新版本",
|
|
109
|
+
"checkFailed": "版本检查失败",
|
|
110
|
+
"providerManager.noConfig": "未找到现有配置",
|
|
111
|
+
"providerManager.backupFailed": "创建备份失败",
|
|
112
|
+
"providerManager.providerExists": "ID 为 \"{{id}}\" 的提供商已存在",
|
|
113
|
+
"providerManager.providerNotFound": "ID 为 \"{{id}}\" 的提供商不存在",
|
|
114
|
+
"providerManager.noProvidersSpecified": "未指定要删除的提供商",
|
|
115
|
+
"providerManager.providersNotFound": "未找到以下提供商:{{providers}}",
|
|
116
|
+
"providerManager.cannotDeleteAll": "不能删除所有提供商,至少需要保留一个",
|
|
117
|
+
"providerManager.providerIdRequired": "提供商 ID 是必需的",
|
|
118
|
+
"providerManager.providerNameRequired": "提供商名称是必需的",
|
|
119
|
+
"providerManager.baseUrlRequired": "基础 URL 是必需的",
|
|
120
|
+
"providerManager.wireApiInvalid": "Wire API 必须是 \"responses\"",
|
|
121
|
+
"providerManager.unknownError": "未知错误",
|
|
122
|
+
"envKeyMigrationComplete": "✔ 已完成 env_key 到 temp_env_key 的迁移"
|
|
123
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cometixAlreadyInstalled": "CCometixLine 已安装",
|
|
3
|
+
"cometixInstallFailed": "安装 CCometixLine 失败",
|
|
4
|
+
"cometixInstallSuccess": "CCometixLine 安装成功",
|
|
5
|
+
"cometixMenuDescriptions.customConfig": "进入 CCometixLine TUI 配置模式",
|
|
6
|
+
"cometixMenuDescriptions.installOrUpdate": "使用 npm 安装或更新 CCometixLine",
|
|
7
|
+
"cometixMenuDescriptions.printConfig": "显示当前 CCometixLine 配置",
|
|
8
|
+
"cometixMenuOptions.back": "返回主菜单",
|
|
9
|
+
"cometixMenuOptions.customConfig": "自定义配置",
|
|
10
|
+
"cometixMenuOptions.installOrUpdate": "安装/更新",
|
|
11
|
+
"cometixMenuOptions.printConfig": "打印配置",
|
|
12
|
+
"cometixMenuTitle": "CCometixLine - 基于 Rust 的高性能 Claude Code 状态栏工具,集成 Git 信息和实时使用量跟踪",
|
|
13
|
+
"cometixSkipped": "CCometixLine 安装已跳过",
|
|
14
|
+
"commandNotFound": "ccline 命令未找到。请先安装 CCometixLine。",
|
|
15
|
+
"enteringTuiConfig": "正在进入 CCometixLine TUI 配置模式...",
|
|
16
|
+
"installCometixPrompt": "是否安装 CCometixLine - 基于 Rust 的高性能 Claude Code 状态栏工具,集成 Git 信息和实时使用量跟踪?",
|
|
17
|
+
"installUpdateFailed": "安装/更新 CCometixLine 失败",
|
|
18
|
+
"installUpdateSuccess": "CCometixLine 安装/更新完成",
|
|
19
|
+
"installingCometix": "正在安装 CCometixLine...",
|
|
20
|
+
"installingOrUpdating": "正在安装/更新 CCometixLine...",
|
|
21
|
+
"printConfigFailed": "打印配置失败",
|
|
22
|
+
"printingConfig": "正在打印 CCometixLine 配置...",
|
|
23
|
+
"statusLineAlreadyConfigured": "Claude Code 状态栏配置已存在",
|
|
24
|
+
"statusLineConfigFailed": "状态栏配置失败",
|
|
25
|
+
"statusLineConfigured": "Claude Code 状态栏配置已设置",
|
|
26
|
+
"statusLineManualConfig": "请手动添加状态栏配置到 Claude Code 设置中",
|
|
27
|
+
"tuiConfigFailed": "运行 TUI 配置失败",
|
|
28
|
+
"tuiConfigSuccess": "TUI 配置完成成功"
|
|
29
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"multiSelectHint": "(空格选择,a全选,i反选,回车确认)",
|
|
3
|
+
"skip": "跳过",
|
|
4
|
+
"emptyToSkip": "(空内容回车则跳过)",
|
|
5
|
+
"cancelled": "操作已取消",
|
|
6
|
+
"error": "错误",
|
|
7
|
+
"complete": "🎉 配置完成!使用 'claude' 命令开始体验。",
|
|
8
|
+
"none": "无",
|
|
9
|
+
"enterChoice": "请输入选项,回车确认(不区分大小写)",
|
|
10
|
+
"invalidChoice": "无效选择。请输入有效选项。",
|
|
11
|
+
"goodbye": "👋 感谢使用 ZCF!再见!",
|
|
12
|
+
"returnToMenu": "返回主菜单?",
|
|
13
|
+
"back": "返回",
|
|
14
|
+
"operationFailed": "操作失败",
|
|
15
|
+
"backupCreated": "📁 已创建配置备份:{{path}}",
|
|
16
|
+
"current": "当前",
|
|
17
|
+
"claudeCode": "Claude Code",
|
|
18
|
+
"codex": "Codex",
|
|
19
|
+
"yes": "是"
|
|
20
|
+
}
|