@within-7/minto 0.3.6 → 0.3.10
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/{cli.js → cli.cjs} +25 -23
- package/dist/commands/agents/AgentsCommand.js +459 -655
- package/dist/commands/agents/AgentsCommand.js.map +2 -2
- package/dist/commands/agents/types.js +1 -0
- package/dist/commands/agents/types.js.map +2 -2
- package/dist/commands/agents/utils/fileOperations.js +96 -36
- package/dist/commands/agents/utils/fileOperations.js.map +3 -3
- package/dist/commands/agents/utils/index.js +3 -1
- package/dist/commands/agents/utils/index.js.map +2 -2
- package/dist/commands/context.js +54 -23
- package/dist/commands/context.js.map +2 -2
- package/dist/commands/export.js +673 -93
- package/dist/commands/export.js.map +2 -2
- package/dist/commands/language.js +110 -0
- package/dist/commands/language.js.map +7 -0
- package/dist/commands/mcp-interactive.js +419 -217
- package/dist/commands/mcp-interactive.js.map +2 -2
- package/dist/commands/model.js +415 -66
- package/dist/commands/model.js.map +2 -2
- package/dist/commands/new.js +56 -0
- package/dist/commands/new.js.map +7 -0
- package/dist/commands/permissions.js +75 -49
- package/dist/commands/permissions.js.map +2 -2
- package/dist/commands/plugin.js +882 -185
- package/dist/commands/plugin.js.map +3 -3
- package/dist/commands/resume.js +251 -16
- package/dist/commands/resume.js.map +2 -2
- package/dist/commands/sandbox.js +168 -70
- package/dist/commands/sandbox.js.map +2 -2
- package/dist/commands/sessions.js +224 -0
- package/dist/commands/sessions.js.map +7 -0
- package/dist/commands/setup.js +596 -109
- package/dist/commands/setup.js.map +2 -2
- package/dist/commands/stats.js +292 -0
- package/dist/commands/stats.js.map +7 -0
- package/dist/commands/status.js +75 -7
- package/dist/commands/status.js.map +2 -2
- package/dist/commands/undo.js +154 -180
- package/dist/commands/undo.js.map +2 -2
- package/dist/commands.js +6 -0
- package/dist/commands.js.map +2 -2
- package/dist/components/AskUserQuestionDialog/AskUserQuestionDialog.js +3 -2
- package/dist/components/AskUserQuestionDialog/AskUserQuestionDialog.js.map +2 -2
- package/dist/components/Config.js +9 -8
- package/dist/components/Config.js.map +2 -2
- package/dist/components/HeaderBar.js +2 -1
- package/dist/components/HeaderBar.js.map +2 -2
- package/dist/components/Help.js +166 -32
- package/dist/components/Help.js.map +2 -2
- package/dist/components/HotkeyHelpPanel.js +46 -44
- package/dist/components/HotkeyHelpPanel.js.map +2 -2
- package/dist/components/InfoPanel/InfoPanel.js +123 -0
- package/dist/components/InfoPanel/InfoPanel.js.map +7 -0
- package/dist/components/InfoPanel/index.js +5 -0
- package/dist/components/InfoPanel/index.js.map +7 -0
- package/dist/components/InfoPanel/types.js +1 -0
- package/dist/components/InfoPanel/types.js.map +7 -0
- package/dist/components/Logo.js +5 -2
- package/dist/components/Logo.js.map +2 -2
- package/dist/components/MCPServerApprovalDialog.js +6 -5
- package/dist/components/MCPServerApprovalDialog.js.map +2 -2
- package/dist/components/MCPServerMultiselectDialog.js +5 -4
- package/dist/components/MCPServerMultiselectDialog.js.map +2 -2
- package/dist/components/MessageSelector.js +4 -3
- package/dist/components/MessageSelector.js.map +2 -2
- package/dist/components/ModelConfig.js +13 -12
- package/dist/components/ModelConfig.js.map +2 -2
- package/dist/components/ModelListManager.js +4 -3
- package/dist/components/ModelListManager.js.map +2 -2
- package/dist/components/ModelSelector/BrandTextInput.js +43 -0
- package/dist/components/ModelSelector/BrandTextInput.js.map +7 -0
- package/dist/components/ModelSelector/ModelSelector.js +419 -501
- package/dist/components/ModelSelector/ModelSelector.js.map +2 -2
- package/dist/components/ModelSelector/WizardContainer.js +45 -0
- package/dist/components/ModelSelector/WizardContainer.js.map +7 -0
- package/dist/components/ModelSelector/index.js +1 -3
- package/dist/components/ModelSelector/index.js.map +2 -2
- package/dist/components/PromptInput.js +77 -44
- package/dist/components/PromptInput.js.map +2 -2
- package/dist/components/SensitiveFileWarning.js +12 -8
- package/dist/components/SensitiveFileWarning.js.map +2 -2
- package/dist/components/SimpleSelector/SimpleSelector.js +154 -0
- package/dist/components/SimpleSelector/SimpleSelector.js.map +7 -0
- package/dist/components/SimpleSelector/index.js +5 -0
- package/dist/components/SimpleSelector/index.js.map +7 -0
- package/dist/components/SimpleSelector/types.js +1 -0
- package/dist/components/SimpleSelector/types.js.map +7 -0
- package/dist/components/StatusOverlayContent.js +21 -0
- package/dist/components/StatusOverlayContent.js.map +7 -0
- package/dist/components/TabbedListView/ScrollableList.js +117 -0
- package/dist/components/TabbedListView/ScrollableList.js.map +7 -0
- package/dist/components/TabbedListView/SearchInput.js +23 -0
- package/dist/components/TabbedListView/SearchInput.js.map +7 -0
- package/dist/components/TabbedListView/TabBar.js +20 -0
- package/dist/components/TabbedListView/TabBar.js.map +7 -0
- package/dist/components/TabbedListView/TabbedListView.js +246 -0
- package/dist/components/TabbedListView/TabbedListView.js.map +7 -0
- package/dist/components/TabbedListView/index.js +11 -0
- package/dist/components/TabbedListView/index.js.map +7 -0
- package/dist/components/TabbedListView/types.js +1 -0
- package/dist/components/TabbedListView/types.js.map +7 -0
- package/dist/components/TodoChangeBlock.js +6 -5
- package/dist/components/TodoChangeBlock.js.map +3 -3
- package/dist/components/TodoPanel.js +6 -3
- package/dist/components/TodoPanel.js.map +3 -3
- package/dist/components/TrustDialog.js +6 -5
- package/dist/components/TrustDialog.js.map +2 -2
- package/dist/components/messages/UserToolResultMessage/UserToolCanceledMessage.js +2 -1
- package/dist/components/messages/UserToolResultMessage/UserToolCanceledMessage.js.map +2 -2
- package/dist/constants/macros.js +1 -1
- package/dist/constants/macros.js.map +1 -1
- package/dist/constants/product.js +2 -2
- package/dist/constants/product.js.map +1 -1
- package/dist/constants/prompts.js +17 -0
- package/dist/constants/prompts.js.map +2 -2
- package/dist/constants/toolInputExamples.js +5 -1
- package/dist/constants/toolInputExamples.js.map +2 -2
- package/dist/core/backupHook.js +29 -0
- package/dist/core/backupHook.js.map +7 -0
- package/dist/core/config/defaults.js +8 -2
- package/dist/core/config/defaults.js.map +2 -2
- package/dist/core/config/schema.js +14 -2
- package/dist/core/config/schema.js.map +2 -2
- package/dist/core/costTracker.js +0 -16
- package/dist/core/costTracker.js.map +2 -2
- package/dist/core/tokenStatsManager.js +5 -0
- package/dist/core/tokenStatsManager.js.map +2 -2
- package/dist/cost-tracker.js +0 -16
- package/dist/cost-tracker.js.map +2 -2
- package/dist/entrypoints/bootstrap.js +56 -0
- package/dist/entrypoints/bootstrap.js.map +7 -0
- package/dist/entrypoints/cli.js +164 -23
- package/dist/entrypoints/cli.js.map +3 -3
- package/dist/history.js +75 -15
- package/dist/history.js.map +2 -2
- package/dist/i18n/index.js +2 -2
- package/dist/i18n/index.js.map +2 -2
- package/dist/i18n/locales/en.js +582 -1
- package/dist/i18n/locales/en.js.map +2 -2
- package/dist/i18n/locales/zh-CN.js +582 -1
- package/dist/i18n/locales/zh-CN.js.map +2 -2
- package/dist/i18n/types.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/messages.js +11 -0
- package/dist/messages.js.map +2 -2
- package/dist/permissions.js.map +2 -2
- package/dist/query.js +9 -0
- package/dist/query.js.map +2 -2
- package/dist/screens/REPL.js +45 -7
- package/dist/screens/REPL.js.map +2 -2
- package/dist/services/customCommands.js +44 -16
- package/dist/services/customCommands.js.map +2 -2
- package/dist/services/plugins/lspServers.js +1 -1
- package/dist/services/plugins/lspServers.js.map +2 -2
- package/dist/services/plugins/pluginRuntime.js +2 -1
- package/dist/services/plugins/pluginRuntime.js.map +2 -2
- package/dist/services/plugins/pluginValidation.js +10 -3
- package/dist/services/plugins/pluginValidation.js.map +2 -2
- package/dist/services/plugins/skillMarketplace.js +16 -8
- package/dist/services/plugins/skillMarketplace.js.map +2 -2
- package/dist/services/systemReminder.js +17 -6
- package/dist/services/systemReminder.js.map +2 -2
- package/dist/tools/FileEditTool/FileEditTool.js +7 -0
- package/dist/tools/FileEditTool/FileEditTool.js.map +2 -2
- package/dist/tools/FileWriteTool/FileWriteTool.js +7 -0
- package/dist/tools/FileWriteTool/FileWriteTool.js.map +2 -2
- package/dist/tools/MultiEditTool/MultiEditTool.js +7 -0
- package/dist/tools/MultiEditTool/MultiEditTool.js.map +2 -2
- package/dist/tools/NotebookEditTool/NotebookEditTool.js +2 -0
- package/dist/tools/NotebookEditTool/NotebookEditTool.js.map +2 -2
- package/dist/tools/TaskTool/TaskTool.js +179 -1
- package/dist/tools/TaskTool/TaskTool.js.map +2 -2
- package/dist/tools/TodoWriteTool/prompt.js +21 -0
- package/dist/tools/TodoWriteTool/prompt.js.map +2 -2
- package/dist/tools/URLFetcherTool/prompt.js +14 -9
- package/dist/tools/URLFetcherTool/prompt.js.map +2 -2
- package/dist/tools/WebSearchTool/prompt.js +12 -6
- package/dist/tools/WebSearchTool/prompt.js.map +2 -2
- package/dist/types/PermissionMode.js +30 -1
- package/dist/types/PermissionMode.js.map +2 -2
- package/dist/types/plugin.js +2 -4
- package/dist/types/plugin.js.map +2 -2
- package/dist/utils/agentHookExecutor.js +103 -0
- package/dist/utils/agentHookExecutor.js.map +7 -0
- package/dist/utils/agentLoader.js +272 -32
- package/dist/utils/agentLoader.js.map +2 -2
- package/dist/utils/agentMemory.js +134 -0
- package/dist/utils/agentMemory.js.map +7 -0
- package/dist/utils/claudeCodeSync.js +439 -0
- package/dist/utils/claudeCodeSync.js.map +7 -0
- package/dist/utils/config.js +52 -24
- package/dist/utils/config.js.map +2 -2
- package/dist/utils/configPaths.js +199 -0
- package/dist/utils/configPaths.js.map +7 -0
- package/dist/utils/execFileNoThrow.js +2 -1
- package/dist/utils/execFileNoThrow.js.map +2 -2
- package/dist/utils/historyManager.js +234 -0
- package/dist/utils/historyManager.js.map +7 -0
- package/dist/utils/marketplaceManager.js +80 -43
- package/dist/utils/marketplaceManager.js.map +2 -2
- package/dist/utils/messages.js +13 -8
- package/dist/utils/messages.js.map +2 -2
- package/dist/utils/migration/index.js +37 -0
- package/dist/utils/migration/index.js.map +7 -0
- package/dist/utils/migration/migrateHistory.js +273 -0
- package/dist/utils/migration/migrateHistory.js.map +7 -0
- package/dist/utils/migration/migrateTodos.js +323 -0
- package/dist/utils/migration/migrateTodos.js.map +7 -0
- package/dist/utils/pasteCache.js +309 -0
- package/dist/utils/pasteCache.js.map +7 -0
- package/dist/utils/pluginInstaller.js +34 -24
- package/dist/utils/pluginInstaller.js.map +2 -2
- package/dist/utils/pluginLoader.js +54 -28
- package/dist/utils/pluginLoader.js.map +2 -2
- package/dist/utils/repoFetcher.js +110 -0
- package/dist/utils/repoFetcher.js.map +7 -0
- package/dist/utils/sessionIndex.js +192 -0
- package/dist/utils/sessionIndex.js.map +7 -0
- package/dist/utils/sessionTracker.js +170 -0
- package/dist/utils/sessionTracker.js.map +7 -0
- package/dist/utils/skillLoader.js +103 -5
- package/dist/utils/skillLoader.js.map +2 -2
- package/dist/utils/stats.js +417 -0
- package/dist/utils/stats.js.map +7 -0
- package/dist/utils/stringSubstitution.js +106 -0
- package/dist/utils/stringSubstitution.js.map +7 -0
- package/dist/utils/teamConfig.js +156 -14
- package/dist/utils/teamConfig.js.map +2 -2
- package/dist/utils/terminal.js +1 -1
- package/dist/utils/terminal.js.map +2 -2
- package/dist/utils/todoStorage.js +51 -19
- package/dist/utils/todoStorage.js.map +2 -2
- package/dist/utils/tooling/safeRender.js.map +2 -2
- package/dist/version.js +2 -2
- package/dist/version.js.map +1 -1
- package/package.json +71 -28
- package/scripts/{postinstall.js → postinstall.cjs} +1 -1
package/dist/i18n/locales/en.js
CHANGED
|
@@ -93,6 +93,12 @@ const en = {
|
|
|
93
93
|
"ui.welcome.tip4": "",
|
|
94
94
|
"ui.welcome.cwd": "cwd",
|
|
95
95
|
"ui.welcome.mcpServers": "MCP Servers",
|
|
96
|
+
"ui.welcome.taglinePart1": "Strategic AI",
|
|
97
|
+
"ui.welcome.taglinePart2": "Global Excellence",
|
|
98
|
+
// UI - Update banner
|
|
99
|
+
"ui.update.newVersionAvailable": "New version available: {version} (current: {current})",
|
|
100
|
+
"ui.update.runCommand": "Run the following command to update:",
|
|
101
|
+
"ui.update.sudoNote": 'Note: you may need to prefix with "sudo" on macOS/Linux.',
|
|
96
102
|
// UI - Hotkeys
|
|
97
103
|
"ui.hotkey.submit": "Submit",
|
|
98
104
|
"ui.hotkey.newline": "New line",
|
|
@@ -118,6 +124,101 @@ const en = {
|
|
|
118
124
|
"ui.hints.shortcuts": "Keyboard Shortcuts",
|
|
119
125
|
"ui.hints.pressEsc": "press Esc to close",
|
|
120
126
|
"ui.hints.tip": "Type /help for full command list",
|
|
127
|
+
// UI - PromptInput mode hints
|
|
128
|
+
"ui.hints.executeCommand": "Execute command",
|
|
129
|
+
"ui.hints.recordNote": "Record note",
|
|
130
|
+
"ui.hints.featureMenu": "Feature menu",
|
|
131
|
+
"ui.hints.forNewline": "for newline",
|
|
132
|
+
"ui.hints.forBashMode": "for bash mode",
|
|
133
|
+
"ui.hints.forMintoMd": "for MINTO.md",
|
|
134
|
+
"ui.hints.forCommands": "for commands",
|
|
135
|
+
"ui.hints.typeToQueue": "Type to queue next prompt",
|
|
136
|
+
"ui.hints.backgroundTasks": "{count} background task{count, plural, one {} other {s}}",
|
|
137
|
+
"ui.hints.queued": "Queued",
|
|
138
|
+
"ui.hints.willRunAfter": "will run after current task",
|
|
139
|
+
"ui.hints.toEdit": "to edit",
|
|
140
|
+
// UI - Completion hints
|
|
141
|
+
"ui.hints.completion.navigate": "\u2191\u2193 navigate \u2022 \u2192 accept \u2022 Tab cycle \u2022 Esc close",
|
|
142
|
+
"ui.hints.completion.enterDirectory": "\u2192 enter directory \u2022 \u2191\u2193 navigate \u2022 Tab cycle \u2022 Esc close",
|
|
143
|
+
"ui.hints.completion.selectAgent": "\u2192 select agent \u2022 \u2191\u2193 navigate \u2022 Tab cycle \u2022 Esc close",
|
|
144
|
+
"ui.hints.completion.insertReference": "\u2192 insert reference \u2022 \u2191\u2193 navigate \u2022 Tab cycle \u2022 Esc close",
|
|
145
|
+
"ui.hints.completion.moreAbove": "{count} more above...",
|
|
146
|
+
"ui.hints.completion.moreBelow": "{count} more below...",
|
|
147
|
+
// UI - Model display
|
|
148
|
+
"ui.model.fallbackName": "AI Assistant",
|
|
149
|
+
// UI - Model management
|
|
150
|
+
"ui.model.manageList": "Manage Model List",
|
|
151
|
+
"ui.model.manageListDeleteMode": "Manage Model List - DELETE MODE",
|
|
152
|
+
"ui.model.cannotDeleteLast": "Cannot delete the last model",
|
|
153
|
+
"ui.model.deleteConfirmPrompt": "Press Enter/Space to DELETE selected model, Esc to cancel",
|
|
154
|
+
"ui.model.addNewModelPrompt": "Press Enter to add new model",
|
|
155
|
+
"ui.model.configureNewModel": "Configure a new model and add it to your library",
|
|
156
|
+
"ui.model.navigateHint": "Navigate: \u2191\u2193 | Select: Enter | Delete: d | Exit: Esc",
|
|
157
|
+
"ui.model.deleteHint": "Use \u2191/\u2193 to navigate, d to delete model, Enter to add new, Esc to exit",
|
|
158
|
+
"ui.model.activeLabel": "Active",
|
|
159
|
+
"ui.model.availableLabel": "Available",
|
|
160
|
+
"ui.model.spaceToCycle": "Space to cycle",
|
|
161
|
+
"ui.model.enterToConfigure": "Enter to configure",
|
|
162
|
+
"ui.model.notConfigured": "(not configured)",
|
|
163
|
+
// UI - Model config
|
|
164
|
+
"ui.modelConfig.title": "Model Configuration",
|
|
165
|
+
"ui.modelConfig.clearMode": "CLEAR MODE",
|
|
166
|
+
"ui.modelConfig.clearAssignmentPrompt": "Press Enter/Space to clear selected pointer assignment, Esc to cancel",
|
|
167
|
+
"ui.modelConfig.noModelsConfigured": 'No models configured. Use "Configure New Model" to add your first model.',
|
|
168
|
+
"ui.modelConfig.configureHint": "Configure which models to use for different tasks. Space to cycle, Enter to configure.",
|
|
169
|
+
"ui.modelConfig.navigateHint": "Use \u2191/\u2193 to navigate, Space to cycle models, Enter to configure, d to clear, Esc to exit",
|
|
170
|
+
"ui.modelConfig.clearModePrompt": "CLEAR MODE: Press Enter/Space to clear assignment, Esc to cancel",
|
|
171
|
+
// UI - Model pointer descriptions
|
|
172
|
+
"ui.modelConfig.mainDescription": "Primary model for general tasks and conversations",
|
|
173
|
+
"ui.modelConfig.taskDescription": "Model for TaskTool sub-agents and automation",
|
|
174
|
+
"ui.modelConfig.reasoningDescription": "Model optimized for complex reasoning tasks",
|
|
175
|
+
"ui.modelConfig.quickDescription": "Fast model for simple operations and utilities",
|
|
176
|
+
"ui.modelConfig.compactDescription": "Model for context compression and summarization",
|
|
177
|
+
"ui.modelConfig.manageModelsDescription": "View, add, and delete model configurations",
|
|
178
|
+
// UI - Sensitive file warning
|
|
179
|
+
"ui.sensitiveFile.title": "Sensitive File Warning",
|
|
180
|
+
"ui.sensitiveFile.operating": "Operating on sensitive file",
|
|
181
|
+
"ui.sensitiveFile.defaultReason": "This file may contain API keys, credentials, or other sensitive information.",
|
|
182
|
+
"ui.sensitiveFile.operation.read": "Reading",
|
|
183
|
+
"ui.sensitiveFile.operation.write": "Modifying",
|
|
184
|
+
"ui.sensitiveFile.operation.delete": "Deleting",
|
|
185
|
+
// UI - Todo panel
|
|
186
|
+
"ui.todo.tasksRemaining": "{count} tasks remaining",
|
|
187
|
+
"ui.todo.allDone": "All done",
|
|
188
|
+
"ui.todo.updatedTaskList": "Updated task list",
|
|
189
|
+
"ui.todo.pending": "pending",
|
|
190
|
+
"ui.todo.inProgress": "in progress",
|
|
191
|
+
"ui.todo.done": "done",
|
|
192
|
+
// Commands - Undo
|
|
193
|
+
"commands.undo.description": "Undo file changes (requires --smart mode)",
|
|
194
|
+
"commands.undo.title": "Undo File Changes",
|
|
195
|
+
"commands.undo.selectFile": "Select file to restore",
|
|
196
|
+
"commands.undo.noBackups": "No file changes to undo.",
|
|
197
|
+
"commands.undo.smartModeHint": "Tip: Start Minto with --smart mode to enable automatic backups:",
|
|
198
|
+
"commands.undo.smartModeCommand": " minto --smart",
|
|
199
|
+
"commands.undo.versions": "{count} versions",
|
|
200
|
+
"commands.undo.selectVersion": "Select version to restore",
|
|
201
|
+
"commands.undo.file": "File",
|
|
202
|
+
"commands.undo.restoredTo": "Restored to",
|
|
203
|
+
"commands.undo.fileRestored": "File restored",
|
|
204
|
+
"commands.undo.restoreFailed": "Restore failed, please try again.",
|
|
205
|
+
"commands.undo.loading": "Loading backup info...",
|
|
206
|
+
"commands.undo.error": "Error",
|
|
207
|
+
"commands.undo.pressAnyKey": "Press any key to exit",
|
|
208
|
+
"commands.undo.pressQOrEsc": "Press q or Esc to exit",
|
|
209
|
+
"commands.undo.navHintsFile": "\u2191/\u2193: Select | Enter: View versions | q/Esc: Exit",
|
|
210
|
+
"commands.undo.navHintsVersion": "\u2191/\u2193: Select | Enter: Restore version | Esc: Back",
|
|
211
|
+
// Time format
|
|
212
|
+
"commands.undo.justNow": "just now",
|
|
213
|
+
"commands.undo.minutesAgo": "{count} minutes ago",
|
|
214
|
+
"commands.undo.today": "Today",
|
|
215
|
+
"commands.undo.weekday.sun": "Sun",
|
|
216
|
+
"commands.undo.weekday.mon": "Mon",
|
|
217
|
+
"commands.undo.weekday.tue": "Tue",
|
|
218
|
+
"commands.undo.weekday.wed": "Wed",
|
|
219
|
+
"commands.undo.weekday.thu": "Thu",
|
|
220
|
+
"commands.undo.weekday.fri": "Fri",
|
|
221
|
+
"commands.undo.weekday.sat": "Sat",
|
|
121
222
|
// Commands
|
|
122
223
|
"commands.help.description": "Show help information",
|
|
123
224
|
"commands.clear.description": "Clear the screen",
|
|
@@ -144,6 +245,36 @@ const en = {
|
|
|
144
245
|
"commands.thinking.description": "Toggle thinking mode",
|
|
145
246
|
"commands.thinking.enabled": "Thinking mode enabled",
|
|
146
247
|
"commands.thinking.disabled": "Thinking mode disabled",
|
|
248
|
+
"commands.language.description": "Switch interface language (English / \u7B80\u4F53\u4E2D\u6587)",
|
|
249
|
+
"commands.language.title": "Language Settings",
|
|
250
|
+
"commands.language.current": "Current",
|
|
251
|
+
"commands.language.select": "Select language",
|
|
252
|
+
"commands.language.changed": "Language changed to",
|
|
253
|
+
"commands.language.restart": "Interface will refresh automatically",
|
|
254
|
+
"commands.language.alreadyUsing": "Already using",
|
|
255
|
+
"commands.language.navigate": "\u2191\u2193: Navigate \xB7 Enter: Select \xB7 Esc/q: Cancel",
|
|
256
|
+
// Commands - Sessions
|
|
257
|
+
"commands.sessions.description": "View and search session history",
|
|
258
|
+
"commands.sessions.title": "Recent Sessions",
|
|
259
|
+
"commands.sessions.count": "{shown} of {total}",
|
|
260
|
+
"commands.sessions.noSessions": "No sessions found.",
|
|
261
|
+
"commands.sessions.headerDate": "Date",
|
|
262
|
+
"commands.sessions.headerProject": "Project",
|
|
263
|
+
"commands.sessions.headerPrompt": "First Prompt",
|
|
264
|
+
"commands.sessions.headerMsgs": "Msgs",
|
|
265
|
+
"commands.sessions.headerTools": "Tools",
|
|
266
|
+
"commands.sessions.helpHint": "Use /sessions --help for more options",
|
|
267
|
+
"commands.sessions.today": "Today",
|
|
268
|
+
"commands.sessions.yesterday": "Yesterday",
|
|
269
|
+
"commands.sessions.moreBelow": "... and {count} more (scroll with \u2191\u2193)",
|
|
270
|
+
"commands.sessions.navigationHint": "\u2191\u2193: Navigate \xB7 Enter: Select \xB7 Esc: Close",
|
|
271
|
+
// Commands - Resume
|
|
272
|
+
"commands.resume.description": "Resume a previous conversation from this project",
|
|
273
|
+
"commands.resume.title": "Resume Conversation",
|
|
274
|
+
"commands.resume.noSessions": "No conversations found in this project.",
|
|
275
|
+
"commands.resume.navigationHint": "\u2191\u2193/jk: Navigate \xB7 Enter/1-9: Select \xB7 Esc: Cancel",
|
|
276
|
+
// Commands - New
|
|
277
|
+
"commands.new.description": "Start a new conversation",
|
|
147
278
|
// Tools
|
|
148
279
|
"tools.bash.description": "Execute shell commands",
|
|
149
280
|
"tools.bash.executing": "Executing",
|
|
@@ -193,6 +324,44 @@ const en = {
|
|
|
193
324
|
"help.moreInfo": "For more information",
|
|
194
325
|
"help.reportBug": "Report a bug",
|
|
195
326
|
"help.documentation": "Documentation",
|
|
327
|
+
// Help - Usage modes
|
|
328
|
+
"help.usageModes": "Usage Modes:",
|
|
329
|
+
"help.nonInteractive": "Non-interactive:",
|
|
330
|
+
"help.runForOptions": "Run {command} -h for all command line options",
|
|
331
|
+
// Help - Common tasks
|
|
332
|
+
"help.commonTasks": "Common Tasks:",
|
|
333
|
+
"help.taskAskQuestions": "Ask questions about your codebase",
|
|
334
|
+
"help.taskEditFiles": "Edit files",
|
|
335
|
+
"help.taskFixErrors": "Fix errors",
|
|
336
|
+
"help.taskRunCommands": "Run commands",
|
|
337
|
+
"help.taskRunBash": "Run bash commands",
|
|
338
|
+
// Help - Command categories
|
|
339
|
+
"help.builtInCommands": "Built-in Commands:",
|
|
340
|
+
"help.customCommands": "Custom Commands:",
|
|
341
|
+
"help.pluginCommands": "Plugin Commands:",
|
|
342
|
+
"help.mcpCommands": "MCP Commands:",
|
|
343
|
+
// Help - Command loading
|
|
344
|
+
"help.commandPriority": "Commands are loaded in priority order:",
|
|
345
|
+
"help.priorityBuiltIn": "1. Built-in commands (highest priority, alphabetically sorted)",
|
|
346
|
+
"help.priorityCustom": "2. Custom commands (user/project, alphabetically sorted)",
|
|
347
|
+
"help.priorityPlugin": "3. Plugin commands (alphabetically sorted)",
|
|
348
|
+
"help.priorityMcp": "4. MCP commands (alphabetically sorted)",
|
|
349
|
+
"help.refreshCommandsHint": "Use /refresh-commands to reload after changes",
|
|
350
|
+
// Help - Product description
|
|
351
|
+
"help.productDescription": "{product} is a beta research preview. Always review {product}'s responses, especially when running code. {product} has read access to files in the current directory and can run commands and edit files with your permission.",
|
|
352
|
+
// Help - Mode Systems
|
|
353
|
+
"help.modeSystems": "Mode Systems:",
|
|
354
|
+
"help.safetyModes": "Safety Modes (startup flags, based on tool risk level):",
|
|
355
|
+
"help.safetyModeYolo": "--yolo All tools auto-allowed (default, for non-technical users)",
|
|
356
|
+
"help.safetyModeSmart": "--smart Dangerous tools require confirmation",
|
|
357
|
+
"help.safetyModeStrict": "--strict Non-read-only tools require confirmation",
|
|
358
|
+
"help.safetyModeFree": "--free Tools outside project directory require confirmation",
|
|
359
|
+
"help.permissionModes": "Permission Modes (Shift+Tab to cycle, based on tool whitelist):",
|
|
360
|
+
"help.permissionModeDefault": "default Standard confirmation flow",
|
|
361
|
+
"help.permissionModeAcceptEdits": "acceptEdits Auto-approve edit operations",
|
|
362
|
+
"help.permissionModePlan": "plan Read-only tools only (research mode)",
|
|
363
|
+
"help.permissionModeBypass": "bypassPermissions Skip all permission checks",
|
|
364
|
+
"help.modeInteraction": "Both systems apply together, using the stricter result.",
|
|
196
365
|
// Status messages
|
|
197
366
|
"status.modelLoaded": "Model loaded",
|
|
198
367
|
"status.contextCompressed": "Context compressed",
|
|
@@ -210,6 +379,30 @@ const en = {
|
|
|
210
379
|
"prompts.enterApiKey": "Enter API key",
|
|
211
380
|
"prompts.selectModel": "Select a model",
|
|
212
381
|
"prompts.selectLanguage": "Select language",
|
|
382
|
+
"prompts.interruptedByUser": "Interrupted by user",
|
|
383
|
+
"prompts.interruptedCtrlC": "Interrupted by user (Ctrl-C)",
|
|
384
|
+
"prompts.interruptedEscEsc": "Interrupted by user (Esc Esc)",
|
|
385
|
+
"prompts.inputCleared": "Input cleared",
|
|
386
|
+
"prompts.inputClearedCtrlD": "Input cleared (Ctrl-D)",
|
|
387
|
+
"prompts.inputClearedEscEsc": "Input cleared (Esc Esc)",
|
|
388
|
+
"prompts.screenCleared": "Screen cleared (Ctrl-L)",
|
|
389
|
+
"prompts.todoPanelToggled": "TodoPanel toggled (Ctrl-T)",
|
|
390
|
+
"prompts.typeCommandFirst": "Type a command first, then press Ctrl-B",
|
|
391
|
+
"prompts.executingBash": "Executing bash command... (Ctrl-B)",
|
|
392
|
+
"prompts.exitingGracefully": "Exiting gracefully...",
|
|
393
|
+
"prompts.pressCtrlDToExit": "Press Ctrl-D to exit",
|
|
394
|
+
"prompts.pressCtrlDAgain": "Press Ctrl-D again to exit",
|
|
395
|
+
"prompts.pressEscAgainClear": "Press Esc again to clear input",
|
|
396
|
+
"prompts.pressEscAgainInterrupt": "Press Esc again to interrupt",
|
|
397
|
+
"prompts.thinkingModeEnabled": "Thinking mode enabled (Tab)",
|
|
398
|
+
"prompts.thinkingModeDisabled": "Thinking mode disabled (Tab)",
|
|
399
|
+
"prompts.limitedInputMode": "\u26A0\uFE0F Limited input mode",
|
|
400
|
+
"prompts.limitedInputModeDetail": "(Advanced keyboard shortcuts unavailable - raw mode not supported)",
|
|
401
|
+
"prompts.queuedMessage": 'Queued: "{input}" ({count} in queue)',
|
|
402
|
+
"prompts.noModelsConfigured": "\u274C No models configured. Use /model to add models.",
|
|
403
|
+
"prompts.noActiveModels": "\u274C No active models ({total} total, all inactive). Use /model to activate models.",
|
|
404
|
+
"prompts.onlyOneActiveModel": "\u26A0\uFE0F Only 1 active model out of {total} total models: {list}. ALL configured models will be activated for switching.",
|
|
405
|
+
"prompts.modelSwitchingFailed": "\u274C Model switching failed ({active} active, {total} total models available)",
|
|
213
406
|
// Agent/Subagent
|
|
214
407
|
"agent.spawning": "Spawning agent",
|
|
215
408
|
"agent.running": "Agent running",
|
|
@@ -237,6 +430,68 @@ const en = {
|
|
|
237
430
|
"permission.sensitiveFile": "Sensitive file access",
|
|
238
431
|
"permission.externalPath": "External path access",
|
|
239
432
|
"permission.dangerousCommand": "Dangerous command",
|
|
433
|
+
// Dialog - Generic
|
|
434
|
+
"dialog.enterToConfirm": "Enter to confirm",
|
|
435
|
+
"dialog.escToCancel": "Esc to cancel",
|
|
436
|
+
"dialog.confirmCancelPrompt": "[Enter to confirm] [Esc to cancel]",
|
|
437
|
+
"dialog.enterCustomResponse": "Enter your custom response:",
|
|
438
|
+
// Dialog - Message selector
|
|
439
|
+
"dialog.jumpToPreviousMessage": "Jump to a previous message",
|
|
440
|
+
"dialog.forkConversation": "This will fork the conversation",
|
|
441
|
+
"dialog.current": "(current)",
|
|
442
|
+
"dialog.emptyMessage": "(empty message)",
|
|
443
|
+
"dialog.selectConfirmCancelPrompt": "\u2191/\u2193 to select \xB7 Enter to confirm \xB7 Tab/Esc to cancel",
|
|
444
|
+
// Dialog - MCP server
|
|
445
|
+
"dialog.mcpServerDetected": "New MCP Server Detected",
|
|
446
|
+
"dialog.mcpServersDetected": "New MCP Servers Detected",
|
|
447
|
+
"dialog.mcpApprovalRequired": "This project contains a .mcprc file with an MCP server that requires your approval:",
|
|
448
|
+
"dialog.mcpSelectServers": "Please select the servers you want to enable:",
|
|
449
|
+
"dialog.approveServer": "Yes, approve this server",
|
|
450
|
+
"dialog.rejectServer": "No, reject this server",
|
|
451
|
+
"dialog.confirmRejectPrompt": "Enter to confirm \xB7 Esc to reject",
|
|
452
|
+
"dialog.selectConfirmRejectAllPrompt": "Space to select \xB7 Enter to confirm \xB7 Esc to reject all",
|
|
453
|
+
// Dialog - Trust
|
|
454
|
+
"dialog.trustTitle": "Do you trust the files in this folder?",
|
|
455
|
+
"dialog.trustWarning1": "{product} may read files in this folder. Reading untrusted files may lead to {product} to behave in an unexpected ways.",
|
|
456
|
+
"dialog.trustWarning2": "With your permission {product} may execute files in this folder. Executing untrusted code is unsafe.",
|
|
457
|
+
"dialog.yesProceed": "Yes, proceed",
|
|
458
|
+
"dialog.noExit": "No, exit",
|
|
459
|
+
"dialog.confirmExitPrompt": "Enter to confirm \xB7 Esc to exit",
|
|
460
|
+
// Config
|
|
461
|
+
"config.title": "Configuration",
|
|
462
|
+
"config.modelConfiguration": "Model Configuration:",
|
|
463
|
+
"config.noModelsConfigured": "No models configured. Use /model to add models.",
|
|
464
|
+
"config.useModelCommand": "Use /model to manage model configurations",
|
|
465
|
+
"config.enterToSaveEscToCancel": "Enter to save \xB7 Esc to cancel",
|
|
466
|
+
"config.navigateChangeClose": "\u2191/\u2193 to navigate \xB7 Enter to change \xB7 Esc to close",
|
|
467
|
+
"config.enterNewValue": "Enter new value:",
|
|
468
|
+
"config.theme": "Theme",
|
|
469
|
+
"config.verboseMode": "Verbose mode",
|
|
470
|
+
"config.streamResponses": "Stream responses",
|
|
471
|
+
"config.compressionMode": "Compression mode (/compact)",
|
|
472
|
+
"config.backupEnabled": "File backup",
|
|
473
|
+
"config.backupEnabled.description": "Enable automatic file backups for /undo",
|
|
474
|
+
// HotkeyHelpPanel
|
|
475
|
+
"hotkey.navigation": "Navigation",
|
|
476
|
+
"hotkey.control": "Control",
|
|
477
|
+
"hotkey.features": "Features",
|
|
478
|
+
"hotkey.inputModes": "Input Modes",
|
|
479
|
+
"hotkey.browseHistory": "Browse command history",
|
|
480
|
+
"hotkey.searchHistory": "Search command history",
|
|
481
|
+
"hotkey.autocomplete": "Autocomplete commands/paths",
|
|
482
|
+
"hotkey.rollbackResponse": "Rollback last response",
|
|
483
|
+
"hotkey.cancelOperation": "Cancel current operation",
|
|
484
|
+
"hotkey.exitPressTwice": "Exit (press twice)",
|
|
485
|
+
"hotkey.clearScreen": "Clear screen",
|
|
486
|
+
"hotkey.submitPrompt": "Submit prompt",
|
|
487
|
+
"hotkey.toggleTodoPanel": "Toggle todo panel",
|
|
488
|
+
"hotkey.cycleDisplayMode": "Cycle display mode",
|
|
489
|
+
"hotkey.executeAsBash": "Execute as bash command",
|
|
490
|
+
"hotkey.showHideHelp": "Show/hide this help",
|
|
491
|
+
"hotkey.startSlashCommand": "Start a slash command",
|
|
492
|
+
"hotkey.executeBashCommand": "Execute bash command",
|
|
493
|
+
"hotkey.addNoteToKoding": "Add note to KODING.md",
|
|
494
|
+
"hotkey.ctrlQuestionForShortcuts": "Ctrl+? for shortcuts",
|
|
240
495
|
// User-Friendly Error Messages
|
|
241
496
|
// Network & Connectivity
|
|
242
497
|
"friendlyError.networkConnection.title": "Network Connection Issue",
|
|
@@ -340,7 +595,333 @@ const en = {
|
|
|
340
595
|
// Error display format
|
|
341
596
|
"friendlyError.suggestionLabel": "Suggestions",
|
|
342
597
|
"friendlyError.errorIdLabel": "Error ID",
|
|
343
|
-
"friendlyError.technicalDetailsLabel": "Technical Details"
|
|
598
|
+
"friendlyError.technicalDetailsLabel": "Technical Details",
|
|
599
|
+
// UI - TabbedListView
|
|
600
|
+
"ui.tabbedList.search": "Search...",
|
|
601
|
+
"ui.tabbedList.loading": "Loading...",
|
|
602
|
+
"ui.tabbedList.noItems": "No items found",
|
|
603
|
+
"ui.tabbedList.moreAbove": "{count} more above",
|
|
604
|
+
"ui.tabbedList.moreBelow": "{count} more below",
|
|
605
|
+
"ui.tabbedList.tabCycleHint": "Tab/\u2190\u2192",
|
|
606
|
+
"ui.tabbedList.navigationHint": "\u2191\u2193 Navigate \xB7 Enter Select \xB7 Tab/\u2190\u2192 Switch \xB7 Esc Close",
|
|
607
|
+
// UI - InfoPanel
|
|
608
|
+
"ui.infoPanel.continueHint": "Enter/Esc Close",
|
|
609
|
+
"ui.infoPanel.dismissHint": "Enter/Esc Close",
|
|
610
|
+
// UI - SimpleSelector
|
|
611
|
+
"ui.simpleSelector.navigationHint": "\u2191\u2193 Navigate \xB7 Enter Select \xB7 Esc Close",
|
|
612
|
+
"ui.simpleSelector.dismissHint": "Enter/Esc Close",
|
|
613
|
+
// Commands - Status
|
|
614
|
+
"commands.status.title": "Minto Status",
|
|
615
|
+
"commands.status.versionInfo": "Version Info",
|
|
616
|
+
"commands.status.environment": "Environment",
|
|
617
|
+
"commands.status.modelConfiguration": "Model Configuration",
|
|
618
|
+
"commands.status.apiConnection": "API Connection",
|
|
619
|
+
"commands.status.connected": "Connected",
|
|
620
|
+
"commands.status.notConnected": "Not connected",
|
|
621
|
+
"commands.status.notConfigured": "No model configured",
|
|
622
|
+
// Commands - Context
|
|
623
|
+
"commands.context.title": "Context Usage",
|
|
624
|
+
"commands.context.contextUsage": "Context Usage",
|
|
625
|
+
"commands.context.tokens": "Tokens",
|
|
626
|
+
"commands.context.remaining": "Remaining",
|
|
627
|
+
"commands.context.messages": "Messages",
|
|
628
|
+
"commands.context.estTurns": "Est. turns remaining",
|
|
629
|
+
"commands.context.highUsage": "Context usage is high. Consider using /compact to free up space.",
|
|
630
|
+
"commands.context.criticalUsage": "Context is nearly full! Run /compact now to avoid auto-compaction.",
|
|
631
|
+
// Commands - Model status
|
|
632
|
+
"commands.model.title": "Model Configuration",
|
|
633
|
+
"commands.model.modelPointers": "Model Pointers",
|
|
634
|
+
"commands.model.configure": "Configure",
|
|
635
|
+
"commands.model.error": "Error",
|
|
636
|
+
// Commands - Model (refactored phases)
|
|
637
|
+
"commands.model.selectModel": "Select model for {pointer}",
|
|
638
|
+
"commands.model.pointerUpdated": "{pointer} updated",
|
|
639
|
+
"commands.model.pointerCleared": "{pointer} assignment cleared",
|
|
640
|
+
"commands.model.modelLibrary": "Model Library",
|
|
641
|
+
"commands.model.modelLibrarySubtitle": "Manage model configurations",
|
|
642
|
+
"commands.model.addNewModel": "+ Add New Model",
|
|
643
|
+
"commands.model.clearAssignment": "Clear Assignment",
|
|
644
|
+
"commands.model.modelActions": "Actions for {model}",
|
|
645
|
+
"commands.model.confirmDeleteTitle": 'Delete "{model}"?',
|
|
646
|
+
"commands.model.confirmDeleteYes": "Yes, delete",
|
|
647
|
+
"commands.model.confirmDeleteNo": "No, cancel",
|
|
648
|
+
"commands.model.modelDeleted": "Model deleted",
|
|
649
|
+
"commands.model.deleteFailed": "Failed to delete model",
|
|
650
|
+
"commands.model.actionsCategory": "Actions",
|
|
651
|
+
"commands.model.pointersCategory": "Pointers",
|
|
652
|
+
// Commands - Sandbox
|
|
653
|
+
"commands.sandbox.title": "Sandbox Configuration",
|
|
654
|
+
"commands.sandbox.statusSection": "Status",
|
|
655
|
+
"commands.sandbox.implementation": "Implementation",
|
|
656
|
+
"commands.sandbox.filesystemPolicy": "Filesystem Policy",
|
|
657
|
+
"commands.sandbox.networkPolicy": "Network Policy",
|
|
658
|
+
"commands.sandbox.processPolicy": "Process Policy",
|
|
659
|
+
"commands.sandbox.helpSection": "Sandbox Implementations",
|
|
660
|
+
"commands.sandbox.toggle": "Toggle",
|
|
661
|
+
"commands.sandbox.toggleHelp": "Help",
|
|
662
|
+
"commands.sandbox.enabled": "ENABLED",
|
|
663
|
+
"commands.sandbox.disabled": "DISABLED",
|
|
664
|
+
"commands.sandbox.notAvailable": "Sandbox not available on this system",
|
|
665
|
+
// Commands - Help
|
|
666
|
+
"commands.help.title": "Help",
|
|
667
|
+
// Commands - MCP
|
|
668
|
+
"commands.mcp.title": "MCP Servers",
|
|
669
|
+
"commands.mcp.noServers": "No MCP servers configured",
|
|
670
|
+
"commands.mcp.addServer": "Add Server",
|
|
671
|
+
"commands.mcp.refreshAll": "Refresh All",
|
|
672
|
+
"commands.mcp.enable": "Enable",
|
|
673
|
+
"commands.mcp.disable": "Disable",
|
|
674
|
+
"commands.mcp.deleteServer": "Delete",
|
|
675
|
+
"commands.mcp.confirmDeleteTitle": 'Delete "{name}"?',
|
|
676
|
+
"commands.mcp.confirmYes": "Yes, delete",
|
|
677
|
+
"commands.mcp.confirmNo": "No, cancel",
|
|
678
|
+
// MCP - Tabs
|
|
679
|
+
"commands.mcp.tabAll": "All Servers",
|
|
680
|
+
"commands.mcp.tabProject": "Project",
|
|
681
|
+
"commands.mcp.tabGlobal": "Global",
|
|
682
|
+
// MCP - Add server
|
|
683
|
+
"commands.mcp.addNamePlaceholder": "Enter server name...",
|
|
684
|
+
"commands.mcp.addCommandPlaceholder": "Enter command or URL...",
|
|
685
|
+
"commands.mcp.addFooterHint": "Enter Continue \xB7 Esc Cancel",
|
|
686
|
+
"commands.mcp.addCommandFooterHint": "Enter Add \xB7 Esc Cancel",
|
|
687
|
+
// MCP - Status overlays
|
|
688
|
+
"commands.mcp.adding": "Adding server...",
|
|
689
|
+
"commands.mcp.addSuccess": "Server added successfully",
|
|
690
|
+
"commands.mcp.addFailed": "Failed to add server",
|
|
691
|
+
"commands.mcp.toggling": "Updating server...",
|
|
692
|
+
"commands.mcp.toggleSuccess": "Server status updated",
|
|
693
|
+
"commands.mcp.deleting": "Deleting server...",
|
|
694
|
+
"commands.mcp.deleteSuccess": "Server deleted",
|
|
695
|
+
"commands.mcp.refreshing": "Refreshing connections...",
|
|
696
|
+
"commands.mcp.refreshSuccess": "Connections refreshed",
|
|
697
|
+
// MCP - Sub-phase labels
|
|
698
|
+
"commands.mcp.back": "Back",
|
|
699
|
+
"commands.mcp.actions": "Actions",
|
|
700
|
+
// Commands - Undo
|
|
701
|
+
"commands.undo.tabFiles": "Files",
|
|
702
|
+
"commands.undo.tabVersions": "Versions",
|
|
703
|
+
// Commands - Export
|
|
704
|
+
"commands.export.description": "Export configuration or conversation data",
|
|
705
|
+
"commands.export.title": "Export Data",
|
|
706
|
+
"commands.export.selectType": "Select export type",
|
|
707
|
+
"commands.export.selectScope": "Select export scope",
|
|
708
|
+
"commands.export.typeRuntime": "Runtime Config",
|
|
709
|
+
"commands.export.typeRuntimeDesc": "Export current configuration settings as JSON",
|
|
710
|
+
"commands.export.typeTeam": "Team Template",
|
|
711
|
+
"commands.export.typeTeamDesc": "Export shareable team configuration with install sources",
|
|
712
|
+
"commands.export.scopeUser": "User Level",
|
|
713
|
+
"commands.export.scopeUserDesc": "Export global user configuration (~/.minto)",
|
|
714
|
+
"commands.export.scopeProject": "Project Level",
|
|
715
|
+
"commands.export.scopeProjectDesc": "Export project-specific configuration (./.minto)",
|
|
716
|
+
"commands.export.typeConversation": "Conversation",
|
|
717
|
+
"commands.export.typeConversationDesc": "Export full conversation history as JSON",
|
|
718
|
+
"commands.export.typeSummary": "Summary",
|
|
719
|
+
"commands.export.typeSummaryDesc": "Export a markdown summary of the session",
|
|
720
|
+
"commands.export.exporting": "Exporting...",
|
|
721
|
+
"commands.export.success": "Exported to",
|
|
722
|
+
"commands.export.failed": "Export failed",
|
|
723
|
+
"commands.export.noPlugins": "No plugins installed",
|
|
724
|
+
"commands.export.noAgents": "No agents configured",
|
|
725
|
+
"commands.export.noHooks": "No hooks configured",
|
|
726
|
+
"commands.export.navigationHint": "\u2191\u2193: Navigate | Enter: Select | Esc: Cancel",
|
|
727
|
+
"commands.export.sensitiveDataTitle": "Sensitive Data Handling",
|
|
728
|
+
"commands.export.sensitiveDataQuestion": "How should API keys and other sensitive data be handled?",
|
|
729
|
+
"commands.export.sensitiveInclude": "Include actual values",
|
|
730
|
+
"commands.export.sensitiveIncludeDesc": "Export real API keys and credentials (for personal backup)",
|
|
731
|
+
"commands.export.sensitivePlaceholder": "Use placeholders",
|
|
732
|
+
"commands.export.sensitivePlaceholderDesc": "Replace with ${ENV_VAR} placeholders (for sharing with others)",
|
|
733
|
+
// Export - scope descriptions
|
|
734
|
+
"commands.export.scopeAll": "All Scopes",
|
|
735
|
+
"commands.export.scopeAllDesc": "User and project config combined",
|
|
736
|
+
// Export - flattened TabbedListView items
|
|
737
|
+
"commands.export.itemTeamUserInclude": "User scope \xB7 Include actual API keys",
|
|
738
|
+
"commands.export.itemTeamUserPlaceholder": "User scope \xB7 Use ${ENV_VAR} placeholders",
|
|
739
|
+
"commands.export.itemTeamProjectInclude": "Project scope \xB7 Include actual API keys",
|
|
740
|
+
"commands.export.itemTeamProjectPlaceholder": "Project scope \xB7 Use ${ENV_VAR} placeholders",
|
|
741
|
+
"commands.export.itemTeamAllInclude": "All scopes \xB7 Include actual API keys",
|
|
742
|
+
"commands.export.itemTeamAllPlaceholder": "All scopes \xB7 Use ${ENV_VAR} placeholders",
|
|
743
|
+
"commands.export.itemRuntimeUser": "Export user-level runtime config",
|
|
744
|
+
"commands.export.itemRuntimeProject": "Export project-level runtime config",
|
|
745
|
+
"commands.export.itemRuntimeAll": "Export all runtime config",
|
|
746
|
+
"commands.export.itemConversation": "Export full conversation history as JSON",
|
|
747
|
+
"commands.export.itemSummary": "Export conversation summary as Markdown",
|
|
748
|
+
"commands.export.footerHint": "\u2191\u2193 Navigate \xB7 Enter Export \xB7 Tab/\u2190\u2192 Type \xB7 Esc Close",
|
|
749
|
+
// Commands - Setup
|
|
750
|
+
"commands.setup.description": "Initialize Minto with team configuration from a URL or file",
|
|
751
|
+
"commands.setup.previewTitle": "Configuration Preview",
|
|
752
|
+
"commands.setup.tabOverview": "Overview",
|
|
753
|
+
"commands.setup.tabModels": "Models",
|
|
754
|
+
"commands.setup.tabMcp": "MCP Servers",
|
|
755
|
+
"commands.setup.tabPlugins": "Plugins",
|
|
756
|
+
"commands.setup.tabAgents": "Agents",
|
|
757
|
+
"commands.setup.tabHooks": "Hooks",
|
|
758
|
+
"commands.setup.tabSettings": "Settings",
|
|
759
|
+
"commands.setup.confirmHint": "Enter Apply \xB7 Esc Cancel",
|
|
760
|
+
"commands.setup.applying": "Applying configuration...",
|
|
761
|
+
"commands.setup.tabSkills": "Skills",
|
|
762
|
+
"commands.setup.tabCommands": "Commands",
|
|
763
|
+
"commands.setup.installingPlugins": "Installing plugins...",
|
|
764
|
+
"commands.setup.installingProjectPlugins": "Installing project plugins...",
|
|
765
|
+
"commands.setup.installingAgents": "Installing agents...",
|
|
766
|
+
"commands.setup.installingHooks": "Installing hooks...",
|
|
767
|
+
"commands.setup.installingSkills": "Installing skills...",
|
|
768
|
+
"commands.setup.installingCommands": "Installing commands...",
|
|
769
|
+
"commands.setup.addingMarketplaces": "Adding marketplaces...",
|
|
770
|
+
"commands.setup.success": "Configuration applied successfully!",
|
|
771
|
+
"commands.setup.failed": "Setup failed",
|
|
772
|
+
"commands.setup.loading": "Loading configuration...",
|
|
773
|
+
"commands.setup.errorMissingFrom": "--from parameter is required",
|
|
774
|
+
"commands.setup.errorUsage": "Usage: minto setup --from <url|path> [--strategy <merge|replace|skip-existing>] [--no-plugins]",
|
|
775
|
+
// Commands - Stats
|
|
776
|
+
"commands.stats.description": "View usage statistics",
|
|
777
|
+
"commands.stats.title": "Usage Statistics",
|
|
778
|
+
"commands.stats.today": "Today",
|
|
779
|
+
"commands.stats.thisWeek": "This Week",
|
|
780
|
+
"commands.stats.thisMonth": "This Month",
|
|
781
|
+
"commands.stats.lifetime": "Lifetime",
|
|
782
|
+
"commands.stats.messages": "Messages",
|
|
783
|
+
"commands.stats.sessions": "Sessions",
|
|
784
|
+
"commands.stats.toolCalls": "Tool Calls",
|
|
785
|
+
"commands.stats.tokens": "Tokens",
|
|
786
|
+
"commands.stats.totalMessages": "Total Messages",
|
|
787
|
+
"commands.stats.totalSessions": "Total Sessions",
|
|
788
|
+
"commands.stats.totalTools": "Total Tools",
|
|
789
|
+
"commands.stats.estCost": "Est. Cost",
|
|
790
|
+
"commands.stats.modelUsage": "Model Usage",
|
|
791
|
+
"commands.stats.topTools": "Top Tools (by usage)",
|
|
792
|
+
"commands.stats.calls": "calls",
|
|
793
|
+
"commands.stats.noData": "No usage data yet. Start using Minto to see your statistics!",
|
|
794
|
+
"commands.stats.vsYesterday": "vs yesterday",
|
|
795
|
+
"commands.stats.firstUsed": "First used",
|
|
796
|
+
// ModelSelector Wizard
|
|
797
|
+
"modelSelector.providerSelection": "Provider Selection",
|
|
798
|
+
"modelSelector.providerSelectionDesc": "Select your preferred AI provider for this model profile.",
|
|
799
|
+
"modelSelector.providerSelectionHint": "You can change this later by running /model again",
|
|
800
|
+
"modelSelector.anthropicSubMenu": "Claude Provider Selection",
|
|
801
|
+
"modelSelector.anthropicSubMenuDesc": "Choose your Anthropic API access method for this model profile.",
|
|
802
|
+
"modelSelector.anthropicOfficial": "Official Anthropic API",
|
|
803
|
+
"modelSelector.anthropicOfficialDesc": "Direct access to Anthropic's official API",
|
|
804
|
+
"modelSelector.anthropicBigdream": "BigDream (Community Proxy)",
|
|
805
|
+
"modelSelector.anthropicBigdreamDesc": "Community proxy providing Claude access",
|
|
806
|
+
"modelSelector.anthropicOpendev": "OpenDev (Community Proxy)",
|
|
807
|
+
"modelSelector.anthropicOpendevDesc": "Community proxy providing Claude access",
|
|
808
|
+
"modelSelector.anthropicCustom": "Custom Anthropic-Compatible API",
|
|
809
|
+
"modelSelector.anthropicCustomDesc": "Your own Anthropic-compatible API endpoint",
|
|
810
|
+
"modelSelector.baseUrlTitle": "API Configuration",
|
|
811
|
+
"modelSelector.baseUrlDesc": "Configure the API endpoint.",
|
|
812
|
+
"modelSelector.baseUrlOllamaDesc": "This is the URL of your Ollama server. Default is http://localhost:11434/v1.",
|
|
813
|
+
"modelSelector.customApiTitle": "Custom API Server Setup",
|
|
814
|
+
"modelSelector.customApiDesc": "This is the base URL for your OpenAI-compatible API. For example: https://api.example.com/v1",
|
|
815
|
+
"modelSelector.apiKeyTitle": "API Key Setup",
|
|
816
|
+
"modelSelector.apiKeyDesc": "This key will be stored locally and used to access the API. Your key is never sent to our servers.",
|
|
817
|
+
"modelSelector.apiKeyTabHintManual": "Tab to skip to manual model input",
|
|
818
|
+
"modelSelector.apiKeyTabHintSkip": "Tab to skip using a key",
|
|
819
|
+
"modelSelector.resourceNameTitle": "Azure Resource Setup",
|
|
820
|
+
"modelSelector.resourceNameDesc": 'Enter your Azure OpenAI resource name (without the full domain). For example, if your endpoint is "https://myresource.openai.azure.com", enter "myresource".',
|
|
821
|
+
"modelSelector.modelSelectionTitle": "Model Selection",
|
|
822
|
+
"modelSelector.modelSelectionDesc": "This model profile can be assigned to different pointers (main, task, reasoning, quick) for various use cases.",
|
|
823
|
+
"modelSelector.modelSearchPlaceholder": "Type to filter models...",
|
|
824
|
+
"modelSelector.modelInputTitle": "Manual Model Setup",
|
|
825
|
+
"modelSelector.modelParamsTitle": "Model Parameters",
|
|
826
|
+
"modelSelector.modelParamsDesc": "Configure parameters for this model.",
|
|
827
|
+
"modelSelector.maxTokens": "Maximum Tokens",
|
|
828
|
+
"modelSelector.reasoningEffort": "Reasoning Effort",
|
|
829
|
+
"modelSelector.contextLengthTitle": "Context Length",
|
|
830
|
+
"modelSelector.contextLengthDesc": "Choose the context window length. Higher values allow longer conversations but may increase costs.",
|
|
831
|
+
"modelSelector.connectionTestTitle": "Connection Test",
|
|
832
|
+
"modelSelector.connectionTestDesc": "Verify your configuration by sending a test request to the API.",
|
|
833
|
+
"modelSelector.connectionTestStart": "Press Enter to start the connection test",
|
|
834
|
+
"modelSelector.connectionTestRunning": "Testing connection...",
|
|
835
|
+
"modelSelector.connectionTestAutoProceeding": "Automatically proceeding to confirmation...",
|
|
836
|
+
"modelSelector.connectionTestRetry": "Press Enter to retry",
|
|
837
|
+
"modelSelector.confirmationTitle": "Configuration Confirmation",
|
|
838
|
+
"modelSelector.confirmationDesc": "Please review your selections before saving.",
|
|
839
|
+
"modelSelector.confirmationSave": "Enter to save configuration",
|
|
840
|
+
"modelSelector.configError": "Configuration Error",
|
|
841
|
+
"modelSelector.footerEnterContinue": "Enter continue \xB7 Esc back",
|
|
842
|
+
"modelSelector.footerEscBack": "Esc back",
|
|
843
|
+
"modelSelector.footerNavSelectEsc": "\u2191\u2193 Navigate \xB7 Enter Select \xB7 Esc Back",
|
|
844
|
+
"modelSelector.footerTabNavigate": "Tab navigate \xB7 Enter continue \xB7 Esc back",
|
|
845
|
+
"modelSelector.showingModels": "Showing {count} of {total} models",
|
|
846
|
+
"modelSelector.noModelsMatch": "No models match your search.",
|
|
847
|
+
"modelSelector.noModelsAvailable": "No models available for this provider.",
|
|
848
|
+
"modelSelector.recommended": "recommended",
|
|
849
|
+
"modelSelector.continue": "Continue \u2192",
|
|
850
|
+
// Commands - Plugin
|
|
851
|
+
"commands.plugin.tabBrowse": "Browse",
|
|
852
|
+
"commands.plugin.tabInstalled": "Installed",
|
|
853
|
+
"commands.plugin.tabMarketplaces": "Marketplaces",
|
|
854
|
+
"commands.plugin.addMarketplace": "Add Marketplace",
|
|
855
|
+
"commands.plugin.addMarketplacePlaceholder": "Enter source (e.g., owner/repo)",
|
|
856
|
+
"commands.plugin.footerHint": "\u2191\u2193 Navigate \xB7 Enter Select \xB7 Tab Switch \xB7 / Search \xB7 Esc Exit",
|
|
857
|
+
"commands.plugin.addFooterHint": "Type source \xB7 Enter to add \xB7 Esc to cancel",
|
|
858
|
+
"commands.plugin.install": "Install",
|
|
859
|
+
"commands.plugin.installing": "Installing plugin...",
|
|
860
|
+
"commands.plugin.installSuccess": "Plugin installed successfully",
|
|
861
|
+
"commands.plugin.installFailed": "Installation failed",
|
|
862
|
+
"commands.plugin.update": "Update",
|
|
863
|
+
"commands.plugin.updating": "Updating plugin...",
|
|
864
|
+
"commands.plugin.updateSuccess": "Plugin updated successfully",
|
|
865
|
+
"commands.plugin.updateFailed": "Update failed",
|
|
866
|
+
"commands.plugin.uninstall": "Uninstall",
|
|
867
|
+
"commands.plugin.uninstalling": "Uninstalling plugin...",
|
|
868
|
+
"commands.plugin.uninstallSuccess": "Plugin uninstalled successfully",
|
|
869
|
+
"commands.plugin.uninstallFailed": "Uninstall failed",
|
|
870
|
+
"commands.plugin.enable": "Enable",
|
|
871
|
+
"commands.plugin.disable": "Disable",
|
|
872
|
+
"commands.plugin.toggleSuccess": "Plugin status updated",
|
|
873
|
+
"commands.plugin.marketplaceUpdate": "Update",
|
|
874
|
+
"commands.plugin.marketplaceUpdating": "Updating marketplace...",
|
|
875
|
+
"commands.plugin.marketplaceUpdateSuccess": "Marketplace updated",
|
|
876
|
+
"commands.plugin.marketplaceUpdateFailed": "Marketplace update failed",
|
|
877
|
+
"commands.plugin.marketplaceRemove": "Remove",
|
|
878
|
+
"commands.plugin.marketplaceRemoving": "Removing marketplace...",
|
|
879
|
+
"commands.plugin.marketplaceRemoveSuccess": "Marketplace removed",
|
|
880
|
+
"commands.plugin.marketplaceAdd": "Add",
|
|
881
|
+
"commands.plugin.marketplaceAdding": "Adding marketplace...",
|
|
882
|
+
"commands.plugin.marketplaceAddSuccess": "Marketplace added",
|
|
883
|
+
"commands.plugin.marketplaceAddFailed": "Failed to add marketplace",
|
|
884
|
+
"commands.plugin.browsePlugins": "Browse Plugins",
|
|
885
|
+
"commands.plugin.actions": "Actions",
|
|
886
|
+
"commands.plugin.back": "Back",
|
|
887
|
+
"commands.plugin.local": "Local",
|
|
888
|
+
"commands.plugin.sourceClaudeCode": "Claude Code",
|
|
889
|
+
"commands.plugin.syncDesc": "Sync plugins from Claude Code",
|
|
890
|
+
"commands.plugin.syncStarting": "Syncing plugins from Claude Code...",
|
|
891
|
+
"commands.plugin.syncScanning": "Scanning Claude Code registry...",
|
|
892
|
+
"commands.plugin.syncInstalling": "Installing {name}...",
|
|
893
|
+
"commands.plugin.syncUpdating": "Updating {name}...",
|
|
894
|
+
"commands.plugin.syncComplete": "Sync complete: {installed} installed, {updated} updated, {skipped} unchanged",
|
|
895
|
+
"commands.plugin.syncNoChanges": "All plugins are up to date",
|
|
896
|
+
"commands.plugin.syncFailed": "Failed to sync {count} plugin(s)",
|
|
897
|
+
"commands.plugin.syncNotFound": "No Claude Code installation found",
|
|
898
|
+
"commands.plugin.syncCleaned": "Removed {count} orphaned plugin(s)",
|
|
899
|
+
"commands.plugin.syncSkippedManual": "Skipped {name} (manually installed)",
|
|
900
|
+
"commands.plugin.syncDryRun": "Dry run \u2014 no changes made",
|
|
901
|
+
"commands.plugin.syncMarketplacesRegistered": "Registered ${count} marketplace(s)",
|
|
902
|
+
"commands.plugin.syncMarketplacesFailed": "Failed to register ${count} marketplace(s)",
|
|
903
|
+
"commands.plugin.syncMarketplacesProgress": "Syncing marketplaces...",
|
|
904
|
+
// Plugin - Batch operations
|
|
905
|
+
"commands.plugin.batchInstallAction": "Install {count} plugins",
|
|
906
|
+
"commands.plugin.batchUpdateAction": "Update {count} plugins",
|
|
907
|
+
"commands.plugin.batchAction": "Batch action",
|
|
908
|
+
"commands.plugin.batchInstalling": "Installing {current}/{total}: {name}...",
|
|
909
|
+
"commands.plugin.batchUpdating": "Updating {current}/{total}: {name}...",
|
|
910
|
+
"commands.plugin.batchInstalledCount": "{count} plugin(s) installed successfully",
|
|
911
|
+
"commands.plugin.batchUpdatedCount": "{count} plugin(s) updated successfully",
|
|
912
|
+
"commands.plugin.batchFailedCount": "{count} plugin(s) failed",
|
|
913
|
+
"commands.plugin.batchDeleteAction": "Uninstall {count} plugins",
|
|
914
|
+
"commands.plugin.batchEnableAction": "Enable {count} plugins",
|
|
915
|
+
"commands.plugin.batchDisableAction": "Disable {count} plugins",
|
|
916
|
+
"commands.plugin.batchUninstalling": "Uninstalling {current}/{total}: {name}...",
|
|
917
|
+
"commands.plugin.batchUninstalledCount": "{count} plugin(s) uninstalled",
|
|
918
|
+
"commands.plugin.batchEnabledCount": "{count} plugin(s) enabled",
|
|
919
|
+
"commands.plugin.batchDisabledCount": "{count} plugin(s) disabled",
|
|
920
|
+
"commands.plugin.batchActionPickerTitle": "Select Action",
|
|
921
|
+
"commands.plugin.updateAvailable": "\u2191 {installed} \u2192 {available}",
|
|
922
|
+
"commands.plugin.batchAllAlreadyInstalled": "All selected plugins are already installed",
|
|
923
|
+
"commands.plugin.batchNoUpdatable": "No selected plugins can be updated (no marketplace source)",
|
|
924
|
+
"commands.plugin.footerHintMultiSelect": "\u2191\u2193 Navigate \xB7 Space Select \xB7 a All \xB7 Enter Action \xB7 Tab Switch \xB7 Esc Close"
|
|
344
925
|
};
|
|
345
926
|
export {
|
|
346
927
|
en
|