@umsai/ums-code 0.5.0-v1 → 0.6.0-v1
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/dist/package.json +4 -4
- package/dist/src/acp-integration/acp.d.ts +6 -0
- package/dist/src/acp-integration/acp.js +7 -0
- package/dist/src/acp-integration/acp.js.map +1 -1
- package/dist/src/acp-integration/acpAgent.js +33 -7
- package/dist/src/acp-integration/acpAgent.js.map +1 -1
- package/dist/src/acp-integration/schema.d.ts +1235 -892
- package/dist/src/acp-integration/schema.js +19 -0
- package/dist/src/acp-integration/schema.js.map +1 -1
- package/dist/src/acp-integration/session/Session.d.ts +0 -5
- package/dist/src/acp-integration/session/Session.js +94 -15
- package/dist/src/acp-integration/session/Session.js.map +1 -1
- package/dist/src/commandMode.d.ts +11 -0
- package/dist/src/commandMode.js +238 -0
- package/dist/src/commandMode.js.map +1 -0
- package/dist/src/config/auth.js +26 -0
- package/dist/src/config/auth.js.map +1 -1
- package/dist/src/config/config.d.ts +8 -0
- package/dist/src/config/config.js +96 -21
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/extensions/update.test.js +9 -0
- package/dist/src/config/extensions/update.test.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +41 -2
- package/dist/src/config/settingsSchema.js +36 -2
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/core/initializer.js +3 -0
- package/dist/src/core/initializer.js.map +1 -1
- package/dist/src/gemini.js +39 -19
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/gemini.test.js +30 -4
- package/dist/src/gemini.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +3 -3
- package/dist/src/generated/git-commit.js +3 -3
- package/dist/src/i18n/index.d.ts +10 -2
- package/dist/src/i18n/index.js +22 -1
- package/dist/src/i18n/index.js.map +1 -1
- package/dist/src/i18n/languages.d.ts +20 -0
- package/dist/src/i18n/languages.js +36 -0
- package/dist/src/i18n/languages.js.map +1 -0
- package/dist/src/i18n/locales/de.js +1073 -0
- package/dist/src/i18n/locales/en.js +120 -162
- package/dist/src/i18n/locales/ru.js +125 -151
- package/dist/src/i18n/locales/zh.js +51 -164
- package/dist/src/nonInteractive/control/controllers/systemController.d.ts +1 -1
- package/dist/src/nonInteractive/control/controllers/systemController.js +5 -10
- package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -1
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +11 -4
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -1
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +40 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -1
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +50 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -1
- package/dist/src/nonInteractiveCli.js +104 -18
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/nonInteractiveCliCommands.d.ts +48 -9
- package/dist/src/nonInteractiveCliCommands.js +180 -64
- package/dist/src/nonInteractiveCliCommands.js.map +1 -1
- package/dist/src/{ui/hooks/useQuotaAndFallback.test.d.ts → nonInteractiveCliCommands.test.d.ts} +1 -1
- package/dist/src/nonInteractiveCliCommands.test.js +157 -0
- package/dist/src/nonInteractiveCliCommands.test.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.js +2 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/services/McpPromptLoader.js +4 -2
- package/dist/src/services/McpPromptLoader.js.map +1 -1
- package/dist/src/services/McpPromptLoader.test.js +1 -1
- package/dist/src/services/McpPromptLoader.test.js.map +1 -1
- package/dist/src/ui/AppContainer.js +23 -20
- package/dist/src/ui/AppContainer.js.map +1 -1
- package/dist/src/ui/AppContainer.test.js +0 -46
- package/dist/src/ui/AppContainer.test.js.map +1 -1
- package/dist/src/ui/auth/AuthDialog.test.js +4 -4
- package/dist/src/ui/auth/AuthDialog.test.js.map +1 -1
- package/dist/src/ui/auth/useAuth.js +11 -3
- package/dist/src/ui/auth/useAuth.js.map +1 -1
- package/dist/src/ui/commands/approvalModeCommand.js +53 -4
- package/dist/src/ui/commands/approvalModeCommand.js.map +1 -1
- package/dist/src/ui/commands/approvalModeCommand.test.js +72 -10
- package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -1
- package/dist/src/ui/commands/compressCommand.js +86 -16
- package/dist/src/ui/commands/compressCommand.js.map +1 -1
- package/dist/src/ui/commands/languageCommand.d.ts +6 -1
- package/dist/src/ui/commands/languageCommand.js +162 -216
- package/dist/src/ui/commands/languageCommand.js.map +1 -1
- package/dist/src/ui/commands/languageCommand.test.js +105 -10
- package/dist/src/ui/commands/languageCommand.test.js.map +1 -1
- package/dist/src/ui/commands/restoreCommand.js +1 -1
- package/dist/src/ui/commands/restoreCommand.js.map +1 -1
- package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
- package/dist/src/ui/commands/resumeCommand.js +19 -0
- package/dist/src/ui/commands/resumeCommand.js.map +1 -0
- package/dist/src/ui/{components/ProQuotaDialog.test.d.ts → commands/resumeCommand.test.d.ts} +1 -1
- package/dist/src/ui/commands/resumeCommand.test.js +32 -0
- package/dist/src/ui/commands/resumeCommand.test.js.map +1 -0
- package/dist/src/ui/commands/reviewCommand.js +871 -92
- package/dist/src/ui/commands/reviewCommand.js.map +1 -1
- package/dist/src/ui/commands/reviewCommand.test.js +55 -0
- package/dist/src/ui/commands/reviewCommand.test.js.map +1 -1
- package/dist/src/ui/commands/summaryCommand.js +129 -42
- package/dist/src/ui/commands/summaryCommand.js.map +1 -1
- package/dist/src/ui/commands/types.d.ts +21 -2
- package/dist/src/ui/commands/types.js.map +1 -1
- package/dist/src/ui/components/DialogManager.js +4 -4
- package/dist/src/ui/components/DialogManager.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.test.js +5 -2
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -1
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +1 -1
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -1
- package/dist/src/ui/components/SessionPicker.d.ts +18 -0
- package/dist/src/ui/components/SessionPicker.js +69 -0
- package/dist/src/ui/components/SessionPicker.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js +6 -2
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -1
- package/dist/src/ui/components/{ResumeSessionPicker.d.ts → StandaloneSessionPicker.d.ts} +1 -1
- package/dist/src/ui/components/StandaloneSessionPicker.js +78 -0
- package/dist/src/ui/components/StandaloneSessionPicker.js.map +1 -0
- package/dist/src/ui/components/StandaloneSessionPicker.test.d.ts +6 -0
- package/dist/src/ui/components/StandaloneSessionPicker.test.js +410 -0
- package/dist/src/ui/components/StandaloneSessionPicker.test.js.map +1 -0
- package/dist/src/ui/components/ums/UMSKeyPrompt.js +1 -1
- package/dist/src/ui/components/ums/UMSKeyPrompt.js.map +1 -1
- package/dist/src/ui/contexts/UIActionsContext.d.ts +3 -1
- package/dist/src/ui/contexts/UIActionsContext.js.map +1 -1
- package/dist/src/ui/contexts/UIStateContext.d.ts +2 -8
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +1 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js +9 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.js +46 -11
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +11 -6
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -1
- package/dist/src/ui/hooks/usePhraseCycler.js +12 -136
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -1
- package/dist/src/ui/hooks/useQwenAuth.test.js +1 -1
- package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -1
- package/dist/src/ui/hooks/useResumeCommand.d.ts +20 -0
- package/dist/src/ui/hooks/useResumeCommand.js +49 -0
- package/dist/src/ui/hooks/useResumeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useResumeCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useResumeCommand.test.js +144 -0
- package/dist/src/ui/hooks/useResumeCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useSessionPicker.d.ts +36 -0
- package/dist/src/ui/hooks/useSessionPicker.js +189 -0
- package/dist/src/ui/hooks/useSessionPicker.js.map +1 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js +1 -1
- package/dist/src/ui/models/availableModels.d.ts +1 -0
- package/dist/src/ui/models/availableModels.js +8 -0
- package/dist/src/ui/models/availableModels.js.map +1 -1
- package/dist/src/ui/utils/resumeHistoryUtils.js +5 -1
- package/dist/src/ui/utils/resumeHistoryUtils.js.map +1 -1
- package/dist/src/ui/utils/resumeHistoryUtils.test.js +5 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.js.map +1 -1
- package/dist/src/ui/utils/sessionPickerUtils.d.ts +30 -0
- package/dist/src/ui/utils/sessionPickerUtils.js +41 -0
- package/dist/src/ui/utils/sessionPickerUtils.js.map +1 -0
- package/dist/src/ui/utils/sessionPickerUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/sessionPickerUtils.test.js +38 -0
- package/dist/src/ui/utils/sessionPickerUtils.test.js.map +1 -0
- package/dist/src/utils/errors.d.ts +1 -1
- package/dist/src/utils/errors.js +14 -3
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/utils/errors.test.js +43 -1
- package/dist/src/utils/errors.test.js.map +1 -1
- package/dist/src/utils/gitUtils.js +22 -5
- package/dist/src/utils/gitUtils.js.map +1 -1
- package/dist/src/utils/gitUtils.test.js +59 -0
- package/dist/src/utils/gitUtils.test.js.map +1 -1
- package/dist/src/utils/nonInteractiveHelpers.d.ts +3 -1
- package/dist/src/utils/nonInteractiveHelpers.js +13 -14
- package/dist/src/utils/nonInteractiveHelpers.js.map +1 -1
- package/dist/src/utils/nonInteractiveHelpers.test.js +35 -20
- package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -1
- package/dist/src/utils/relaunch.js +2 -2
- package/dist/src/utils/relaunch.js.map +1 -1
- package/dist/src/utils/relaunch.test.js +5 -5
- package/dist/src/utils/relaunch.test.js.map +1 -1
- package/dist/src/utils/systemInfo.js +2 -1
- package/dist/src/utils/systemInfo.js.map +1 -1
- package/dist/src/validateNonInterActiveAuth.js +9 -0
- package/dist/src/validateNonInterActiveAuth.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/dist/src/ui/components/ProQuotaDialog.d.ts +0 -13
- package/dist/src/ui/components/ProQuotaDialog.js +0 -24
- package/dist/src/ui/components/ProQuotaDialog.js.map +0 -1
- package/dist/src/ui/components/ProQuotaDialog.test.js +0 -58
- package/dist/src/ui/components/ProQuotaDialog.test.js.map +0 -1
- package/dist/src/ui/components/ResumeSessionPicker.js +0 -249
- package/dist/src/ui/components/ResumeSessionPicker.js.map +0 -1
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +0 -21
- package/dist/src/ui/hooks/useQuotaAndFallback.js +0 -122
- package/dist/src/ui/hooks/useQuotaAndFallback.js.map +0 -1
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js +0 -269
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +0 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// English translations for
|
|
7
|
+
// English translations for Qwen Code CLI
|
|
8
8
|
// The key serves as both the translation key and the default English text
|
|
9
9
|
|
|
10
10
|
export default {
|
|
@@ -55,10 +55,10 @@ export default {
|
|
|
55
55
|
'For a full list of shortcuts, see {{docPath}}':
|
|
56
56
|
'For a full list of shortcuts, see {{docPath}}',
|
|
57
57
|
'docs/keyboard-shortcuts.md': 'docs/keyboard-shortcuts.md',
|
|
58
|
-
'for help on
|
|
58
|
+
'for help on Qwen Code': 'for help on Qwen Code',
|
|
59
59
|
'show version info': 'show version info',
|
|
60
60
|
'submit a bug report': 'submit a bug report',
|
|
61
|
-
'About
|
|
61
|
+
'About Qwen Code': 'About Qwen Code',
|
|
62
62
|
|
|
63
63
|
// ============================================================================
|
|
64
64
|
// System Information Fields
|
|
@@ -81,14 +81,17 @@ export default {
|
|
|
81
81
|
// ============================================================================
|
|
82
82
|
// Commands - General
|
|
83
83
|
// ============================================================================
|
|
84
|
-
'Analyzes the project and creates a tailored
|
|
85
|
-
'Analyzes the project and creates a tailored
|
|
86
|
-
'list available
|
|
87
|
-
'list available
|
|
88
|
-
'Available
|
|
84
|
+
'Analyzes the project and creates a tailored QWEN.md file.':
|
|
85
|
+
'Analyzes the project and creates a tailored QWEN.md file.',
|
|
86
|
+
'list available Qwen Code tools. Usage: /tools [desc]':
|
|
87
|
+
'list available Qwen Code tools. Usage: /tools [desc]',
|
|
88
|
+
'Available Qwen Code CLI tools:': 'Available Qwen Code CLI tools:',
|
|
89
89
|
'No tools available': 'No tools available',
|
|
90
90
|
'View or change the approval mode for tool usage':
|
|
91
91
|
'View or change the approval mode for tool usage',
|
|
92
|
+
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}':
|
|
93
|
+
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}',
|
|
94
|
+
'Approval mode set to "{{mode}}"': 'Approval mode set to "{{mode}}"',
|
|
92
95
|
'View or change the language setting': 'View or change the language setting',
|
|
93
96
|
'change the theme': 'change the theme',
|
|
94
97
|
'Select Theme': 'Select Theme',
|
|
@@ -102,12 +105,12 @@ export default {
|
|
|
102
105
|
'Theme "{{themeName}}" not found.': 'Theme "{{themeName}}" not found.',
|
|
103
106
|
'Theme "{{themeName}}" not found in selected scope.':
|
|
104
107
|
'Theme "{{themeName}}" not found in selected scope.',
|
|
105
|
-
'
|
|
106
|
-
'
|
|
108
|
+
'Clear conversation history and free up context':
|
|
109
|
+
'Clear conversation history and free up context',
|
|
107
110
|
'Compresses the context by replacing it with a summary.':
|
|
108
111
|
'Compresses the context by replacing it with a summary.',
|
|
109
|
-
'open full
|
|
110
|
-
'open full
|
|
112
|
+
'open full Qwen Code documentation in your browser':
|
|
113
|
+
'open full Qwen Code documentation in your browser',
|
|
111
114
|
'Configuration not available.': 'Configuration not available.',
|
|
112
115
|
'change the auth method': 'change the auth method',
|
|
113
116
|
'Copy the last result or code snippet to clipboard':
|
|
@@ -169,8 +172,8 @@ export default {
|
|
|
169
172
|
// ============================================================================
|
|
170
173
|
// Agents - Creation Wizard
|
|
171
174
|
// ============================================================================
|
|
172
|
-
'Project Level (.
|
|
173
|
-
'User Level (~/.
|
|
175
|
+
'Project Level (.qwen/agents/)': 'Project Level (.qwen/agents/)',
|
|
176
|
+
'User Level (~/.qwen/agents/)': 'User Level (~/.qwen/agents/)',
|
|
174
177
|
'✅ Subagent Created Successfully!': '✅ Subagent Created Successfully!',
|
|
175
178
|
'Subagent "{{name}}" has been saved to {{level}} level.':
|
|
176
179
|
'Subagent "{{name}}" has been saved to {{level}} level.',
|
|
@@ -192,8 +195,8 @@ export default {
|
|
|
192
195
|
'Step {{n}}: Choose Location': 'Step {{n}}: Choose Location',
|
|
193
196
|
'Step {{n}}: Choose Generation Method':
|
|
194
197
|
'Step {{n}}: Choose Generation Method',
|
|
195
|
-
'Generate with
|
|
196
|
-
'Generate with
|
|
198
|
+
'Generate with Qwen Code (Recommended)':
|
|
199
|
+
'Generate with Qwen Code (Recommended)',
|
|
197
200
|
'Manual Creation': 'Manual Creation',
|
|
198
201
|
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
|
|
199
202
|
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)',
|
|
@@ -252,12 +255,14 @@ export default {
|
|
|
252
255
|
// ============================================================================
|
|
253
256
|
// Commands - General (continued)
|
|
254
257
|
// ============================================================================
|
|
255
|
-
'View and edit
|
|
258
|
+
'View and edit Qwen Code settings': 'View and edit Qwen Code settings',
|
|
256
259
|
Settings: 'Settings',
|
|
257
260
|
'(Use Enter to select{{tabText}})': '(Use Enter to select{{tabText}})',
|
|
258
261
|
', Tab to change focus': ', Tab to change focus',
|
|
259
|
-
'To see changes,
|
|
260
|
-
'To see changes,
|
|
262
|
+
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
|
|
263
|
+
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.',
|
|
264
|
+
'The command "/{{command}}" is not supported in non-interactive mode.':
|
|
265
|
+
'The command "/{{command}}" is not supported in non-interactive mode.',
|
|
261
266
|
// ============================================================================
|
|
262
267
|
// Settings Labels
|
|
263
268
|
// ============================================================================
|
|
@@ -297,7 +302,7 @@ export default {
|
|
|
297
302
|
'Load Memory From Include Directories':
|
|
298
303
|
'Load Memory From Include Directories',
|
|
299
304
|
'Respect .gitignore': 'Respect .gitignore',
|
|
300
|
-
'Respect .
|
|
305
|
+
'Respect .qwenignore': 'Respect .qwenignore',
|
|
301
306
|
'Enable Recursive File Search': 'Enable Recursive File Search',
|
|
302
307
|
'Disable Fuzzy Search': 'Disable Fuzzy Search',
|
|
303
308
|
'Enable Interactive Shell': 'Enable Interactive Shell',
|
|
@@ -310,6 +315,7 @@ export default {
|
|
|
310
315
|
'Tool Output Truncation Lines': 'Tool Output Truncation Lines',
|
|
311
316
|
'Folder Trust': 'Folder Trust',
|
|
312
317
|
'Vision Model Preview': 'Vision Model Preview',
|
|
318
|
+
'Tool Schema Compliance': 'Tool Schema Compliance',
|
|
313
319
|
// Settings enum options
|
|
314
320
|
'Auto (detect from system)': 'Auto (detect from system)',
|
|
315
321
|
Text: 'Text',
|
|
@@ -344,8 +350,8 @@ export default {
|
|
|
344
350
|
'install required IDE companion for {{ideName}}',
|
|
345
351
|
'enable IDE integration': 'enable IDE integration',
|
|
346
352
|
'disable IDE integration': 'disable IDE integration',
|
|
347
|
-
'IDE integration is not supported in your current environment. To use this feature, run
|
|
348
|
-
'IDE integration is not supported in your current environment. To use this feature, run
|
|
353
|
+
'IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.':
|
|
354
|
+
'IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.',
|
|
349
355
|
'Set up GitHub Actions': 'Set up GitHub Actions',
|
|
350
356
|
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
|
|
351
357
|
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)',
|
|
@@ -580,8 +586,8 @@ export default {
|
|
|
580
586
|
// ============================================================================
|
|
581
587
|
// Commands - Summary
|
|
582
588
|
// ============================================================================
|
|
583
|
-
'Generate a project summary and save it to .
|
|
584
|
-
'Generate a project summary and save it to .
|
|
589
|
+
'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md':
|
|
590
|
+
'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md',
|
|
585
591
|
'No chat client available to generate summary.':
|
|
586
592
|
'No chat client available to generate summary.',
|
|
587
593
|
'Already generating summary, wait for previous request to complete':
|
|
@@ -589,6 +595,12 @@ export default {
|
|
|
589
595
|
'No conversation found to summarize.': 'No conversation found to summarize.',
|
|
590
596
|
'Failed to generate project context summary: {{error}}':
|
|
591
597
|
'Failed to generate project context summary: {{error}}',
|
|
598
|
+
'Saved project summary to {{filePathForDisplay}}.':
|
|
599
|
+
'Saved project summary to {{filePathForDisplay}}.',
|
|
600
|
+
'Saving project summary...': 'Saving project summary...',
|
|
601
|
+
'Generating project summary...': 'Generating project summary...',
|
|
602
|
+
'Failed to generate summary - no text content received from LLM response':
|
|
603
|
+
'Failed to generate summary - no text content received from LLM response',
|
|
592
604
|
|
|
593
605
|
// ============================================================================
|
|
594
606
|
// Commands - Model
|
|
@@ -603,9 +615,10 @@ export default {
|
|
|
603
615
|
// ============================================================================
|
|
604
616
|
// Commands - Clear
|
|
605
617
|
// ============================================================================
|
|
606
|
-
'
|
|
607
|
-
'
|
|
608
|
-
'
|
|
618
|
+
'Starting a new session, resetting chat, and clearing terminal.':
|
|
619
|
+
'Starting a new session, resetting chat, and clearing terminal.',
|
|
620
|
+
'Starting a new session and clearing.':
|
|
621
|
+
'Starting a new session and clearing.',
|
|
609
622
|
|
|
610
623
|
// ============================================================================
|
|
611
624
|
// Commands - Compress
|
|
@@ -635,8 +648,8 @@ export default {
|
|
|
635
648
|
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
|
|
636
649
|
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.',
|
|
637
650
|
"Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}",
|
|
638
|
-
'Successfully added
|
|
639
|
-
'Successfully added
|
|
651
|
+
'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}':
|
|
652
|
+
'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}',
|
|
640
653
|
'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}',
|
|
641
654
|
'Successfully added directories:\n- {{directories}}':
|
|
642
655
|
'Successfully added directories:\n- {{directories}}',
|
|
@@ -726,8 +739,8 @@ export default {
|
|
|
726
739
|
'You must select an auth method to proceed. Press Ctrl+C again to exit.':
|
|
727
740
|
'You must select an auth method to proceed. Press Ctrl+C again to exit.',
|
|
728
741
|
'(Use Enter to Set Auth)': '(Use Enter to Set Auth)',
|
|
729
|
-
'Terms of Services and Privacy Notice for
|
|
730
|
-
'Terms of Services and Privacy Notice for
|
|
742
|
+
'Terms of Services and Privacy Notice for Qwen Code':
|
|
743
|
+
'Terms of Services and Privacy Notice for Qwen Code',
|
|
731
744
|
'Qwen OAuth': 'Qwen OAuth',
|
|
732
745
|
OpenAI: 'OpenAI',
|
|
733
746
|
'Failed to login. Message: {{message}}':
|
|
@@ -859,8 +872,8 @@ export default {
|
|
|
859
872
|
'1. Ask questions, edit files, or run commands.',
|
|
860
873
|
'2. Be specific for the best results.':
|
|
861
874
|
'2. Be specific for the best results.',
|
|
862
|
-
'files to customize your interactions with
|
|
863
|
-
'files to customize your interactions with
|
|
875
|
+
'files to customize your interactions with Qwen Code.':
|
|
876
|
+
'files to customize your interactions with Qwen Code.',
|
|
864
877
|
'for more information.': 'for more information.',
|
|
865
878
|
|
|
866
879
|
// ============================================================================
|
|
@@ -926,192 +939,137 @@ export default {
|
|
|
926
939
|
// ============================================================================
|
|
927
940
|
'Waiting for user confirmation...': 'Waiting for user confirmation...',
|
|
928
941
|
'(esc to cancel, {{time}})': '(esc to cancel, {{time}})',
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
942
|
+
|
|
943
|
+
// ============================================================================
|
|
944
|
+
// Loading Phrases
|
|
945
|
+
// ============================================================================
|
|
946
|
+
WITTY_LOADING_PHRASES: [
|
|
947
|
+
"I'm Feeling Lucky",
|
|
948
|
+
'Shipping awesomeness... ',
|
|
949
|
+
'Painting the serifs back on...',
|
|
950
|
+
'Navigating the slime mold...',
|
|
951
|
+
'Consulting the digital spirits...',
|
|
952
|
+
'Reticulating splines...',
|
|
953
|
+
'Warming up the AI hamsters...',
|
|
954
|
+
'Asking the magic conch shell...',
|
|
955
|
+
'Generating witty retort...',
|
|
956
|
+
'Polishing the algorithms...',
|
|
940
957
|
"Don't rush perfection (or my code)...",
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
'Checking for syntax errors in the universe...':
|
|
958
|
+
'Brewing fresh bytes...',
|
|
959
|
+
'Counting electrons...',
|
|
960
|
+
'Engaging cognitive processors...',
|
|
945
961
|
'Checking for syntax errors in the universe...',
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
"Just a sec, I'm debugging reality...":
|
|
962
|
+
'One moment, optimizing humor...',
|
|
963
|
+
'Shuffling punchlines...',
|
|
964
|
+
'Untangling neural nets...',
|
|
965
|
+
'Compiling brilliance...',
|
|
966
|
+
'Loading wit.exe...',
|
|
967
|
+
'Summoning the cloud of wisdom...',
|
|
968
|
+
'Preparing a witty response...',
|
|
954
969
|
"Just a sec, I'm debugging reality...",
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
'Crafting a response worthy of your patience...':
|
|
970
|
+
'Confuzzling the options...',
|
|
971
|
+
'Tuning the cosmic frequencies...',
|
|
958
972
|
'Crafting a response worthy of your patience...',
|
|
959
|
-
|
|
960
|
-
'Resolving dependencies... and existential crises...':
|
|
973
|
+
'Compiling the 1s and 0s...',
|
|
961
974
|
'Resolving dependencies... and existential crises...',
|
|
962
|
-
'Defragmenting memories... both RAM and personal...':
|
|
963
975
|
'Defragmenting memories... both RAM and personal...',
|
|
964
|
-
|
|
965
|
-
'Caching the essentials (mostly cat memes)...':
|
|
976
|
+
'Rebooting the humor module...',
|
|
966
977
|
'Caching the essentials (mostly cat memes)...',
|
|
967
|
-
|
|
968
|
-
"Swapping bits... don't tell the bytes...":
|
|
978
|
+
'Optimizing for ludicrous speed',
|
|
969
979
|
"Swapping bits... don't tell the bytes...",
|
|
970
|
-
'Garbage collecting... be right back...':
|
|
971
980
|
'Garbage collecting... be right back...',
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
'Looking for a misplaced semicolon...':
|
|
981
|
+
'Assembling the interwebs...',
|
|
982
|
+
'Converting coffee into code...',
|
|
983
|
+
'Updating the syntax for reality...',
|
|
984
|
+
'Rewiring the synapses...',
|
|
977
985
|
'Looking for a misplaced semicolon...',
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
'Aligning the stars for optimal response...':
|
|
986
|
+
"Greasin' the cogs of the machine...",
|
|
987
|
+
'Pre-heating the servers...',
|
|
988
|
+
'Calibrating the flux capacitor...',
|
|
989
|
+
'Engaging the improbability drive...',
|
|
990
|
+
'Channeling the Force...',
|
|
984
991
|
'Aligning the stars for optimal response...',
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
'Preparing to dazzle you with brilliance...':
|
|
992
|
+
'So say we all...',
|
|
993
|
+
'Loading the next great idea...',
|
|
994
|
+
"Just a moment, I'm in the zone...",
|
|
989
995
|
'Preparing to dazzle you with brilliance...',
|
|
990
|
-
"Just a tick, I'm polishing my wit...":
|
|
991
996
|
"Just a tick, I'm polishing my wit...",
|
|
992
|
-
"Hold tight, I'm crafting a masterpiece...":
|
|
993
997
|
"Hold tight, I'm crafting a masterpiece...",
|
|
994
|
-
"Just a jiffy, I'm debugging the universe...":
|
|
995
998
|
"Just a jiffy, I'm debugging the universe...",
|
|
996
|
-
"Just a moment, I'm aligning the pixels...":
|
|
997
999
|
"Just a moment, I'm aligning the pixels...",
|
|
998
|
-
"Just a sec, I'm optimizing the humor...":
|
|
999
1000
|
"Just a sec, I'm optimizing the humor...",
|
|
1000
|
-
"Just a moment, I'm tuning the algorithms...":
|
|
1001
1001
|
"Just a moment, I'm tuning the algorithms...",
|
|
1002
|
-
|
|
1003
|
-
'Mining for more Dilithium crystals...':
|
|
1002
|
+
'Warp speed engaged...',
|
|
1004
1003
|
'Mining for more Dilithium crystals...',
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
'The truth is in here... somewhere...':
|
|
1004
|
+
"Don't panic...",
|
|
1005
|
+
'Following the white rabbit...',
|
|
1008
1006
|
'The truth is in here... somewhere...',
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
'Finishing the Kessel Run in less than 12 parsecs...':
|
|
1007
|
+
'Blowing on the cartridge...',
|
|
1008
|
+
'Loading... Do a barrel roll!',
|
|
1009
|
+
'Waiting for the respawn...',
|
|
1013
1010
|
'Finishing the Kessel Run in less than 12 parsecs...',
|
|
1014
|
-
"The cake is not a lie, it's just still loading...":
|
|
1015
1011
|
"The cake is not a lie, it's just still loading...",
|
|
1016
|
-
'Fiddling with the character creation screen...':
|
|
1017
1012
|
'Fiddling with the character creation screen...',
|
|
1018
|
-
"Just a moment, I'm finding the right meme...":
|
|
1019
1013
|
"Just a moment, I'm finding the right meme...",
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
'Finding a suitable loading screen pun...':
|
|
1014
|
+
"Pressing 'A' to continue...",
|
|
1015
|
+
'Herding digital cats...',
|
|
1016
|
+
'Polishing the pixels...',
|
|
1024
1017
|
'Finding a suitable loading screen pun...',
|
|
1025
|
-
'Distracting you with this witty phrase...':
|
|
1026
1018
|
'Distracting you with this witty phrase...',
|
|
1027
|
-
|
|
1028
|
-
'Our hamsters are working as fast as they can...':
|
|
1019
|
+
'Almost there... probably...',
|
|
1029
1020
|
'Our hamsters are working as fast as they can...',
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
'Never gonna give you up, never gonna let you down...':
|
|
1021
|
+
'Giving Cloudy a pat on the head...',
|
|
1022
|
+
'Petting the cat...',
|
|
1023
|
+
'Rickrolling my boss...',
|
|
1034
1024
|
'Never gonna give you up, never gonna let you down...',
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
"I'm going the distance, I'm going for speed...":
|
|
1025
|
+
'Slapping the bass...',
|
|
1026
|
+
'Tasting the snozberries...',
|
|
1038
1027
|
"I'm going the distance, I'm going for speed...",
|
|
1039
|
-
'Is this the real life? Is this just fantasy?...':
|
|
1040
1028
|
'Is this the real life? Is this just fantasy?...',
|
|
1041
|
-
"I've got a good feeling about this...":
|
|
1042
1029
|
"I've got a good feeling about this...",
|
|
1043
|
-
|
|
1044
|
-
'Doing research on the latest memes...':
|
|
1030
|
+
'Poking the bear...',
|
|
1045
1031
|
'Doing research on the latest memes...',
|
|
1046
|
-
'Figuring out how to make this more witty...':
|
|
1047
1032
|
'Figuring out how to make this more witty...',
|
|
1048
|
-
|
|
1049
|
-
'What do you call a fish with no eyes? A fsh...':
|
|
1033
|
+
'Hmmm... let me think...',
|
|
1050
1034
|
'What do you call a fish with no eyes? A fsh...',
|
|
1051
|
-
'Why did the computer go to therapy? It had too many bytes...':
|
|
1052
1035
|
'Why did the computer go to therapy? It had too many bytes...',
|
|
1053
|
-
"Why don't programmers like nature? It has too many bugs...":
|
|
1054
1036
|
"Why don't programmers like nature? It has too many bugs...",
|
|
1055
|
-
'Why do programmers prefer dark mode? Because light attracts bugs...':
|
|
1056
1037
|
'Why do programmers prefer dark mode? Because light attracts bugs...',
|
|
1057
|
-
'Why did the developer go broke? Because they used up all their cache...':
|
|
1058
1038
|
'Why did the developer go broke? Because they used up all their cache...',
|
|
1059
|
-
"What can you do with a broken pencil? Nothing, it's pointless...":
|
|
1060
1039
|
"What can you do with a broken pencil? Nothing, it's pointless...",
|
|
1061
|
-
|
|
1062
|
-
'Searching for the correct USB orientation...':
|
|
1040
|
+
'Applying percussive maintenance...',
|
|
1063
1041
|
'Searching for the correct USB orientation...',
|
|
1064
|
-
'Ensuring the magic smoke stays inside the wires...':
|
|
1065
1042
|
'Ensuring the magic smoke stays inside the wires...',
|
|
1066
|
-
|
|
1067
|
-
'
|
|
1068
|
-
'Trying to exit Vim...': 'Trying to exit Vim...',
|
|
1069
|
-
'Spinning up the hamster wheel...': 'Spinning up the hamster wheel...',
|
|
1070
|
-
"That's not a bug, it's an undocumented feature...":
|
|
1043
|
+
'Trying to exit Vim...',
|
|
1044
|
+
'Spinning up the hamster wheel...',
|
|
1071
1045
|
"That's not a bug, it's an undocumented feature...",
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
'Communing with the machine spirit...':
|
|
1046
|
+
'Engage.',
|
|
1047
|
+
"I'll be back... with an answer.",
|
|
1048
|
+
'My other process is a TARDIS...',
|
|
1076
1049
|
'Communing with the machine spirit...',
|
|
1077
|
-
|
|
1078
|
-
'Just remembered where I put my keys...':
|
|
1050
|
+
'Letting the thoughts marinate...',
|
|
1079
1051
|
'Just remembered where I put my keys...',
|
|
1080
|
-
|
|
1081
|
-
"I've seen things you people wouldn't believe... like a user who reads loading messages.":
|
|
1052
|
+
'Pondering the orb...',
|
|
1082
1053
|
"I've seen things you people wouldn't believe... like a user who reads loading messages.",
|
|
1083
|
-
|
|
1084
|
-
"What's a computer's favorite snack? Microchips.":
|
|
1054
|
+
'Initiating thoughtful gaze...',
|
|
1085
1055
|
"What's a computer's favorite snack? Microchips.",
|
|
1086
|
-
"Why do Java developers wear glasses? Because they don't C#.":
|
|
1087
1056
|
"Why do Java developers wear glasses? Because they don't C#.",
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
'Looking for an adult superviso... I mean, processing.':
|
|
1057
|
+
'Charging the laser... pew pew!',
|
|
1058
|
+
'Dividing by zero... just kidding!',
|
|
1091
1059
|
'Looking for an adult superviso... I mean, processing.',
|
|
1092
|
-
|
|
1093
|
-
'Buffering... because even AIs need a moment.':
|
|
1060
|
+
'Making it go beep boop.',
|
|
1094
1061
|
'Buffering... because even AIs need a moment.',
|
|
1095
|
-
'Entangling quantum particles for a faster response...':
|
|
1096
1062
|
'Entangling quantum particles for a faster response...',
|
|
1097
|
-
'Polishing the chrome... on the algorithms.':
|
|
1098
1063
|
'Polishing the chrome... on the algorithms.',
|
|
1099
|
-
'Are you not entertained? (Working on it!)':
|
|
1100
1064
|
'Are you not entertained? (Working on it!)',
|
|
1101
|
-
'Summoning the code gremlins... to help, of course.':
|
|
1102
1065
|
'Summoning the code gremlins... to help, of course.',
|
|
1103
|
-
'Just waiting for the dial-up tone to finish...':
|
|
1104
1066
|
'Just waiting for the dial-up tone to finish...',
|
|
1105
|
-
|
|
1106
|
-
'My other loading screen is even funnier.':
|
|
1067
|
+
'Recalibrating the humor-o-meter.',
|
|
1107
1068
|
'My other loading screen is even funnier.',
|
|
1108
|
-
"Pretty sure there's a cat walking on the keyboard somewhere...":
|
|
1109
1069
|
"Pretty sure there's a cat walking on the keyboard somewhere...",
|
|
1110
|
-
'Enhancing... Enhancing... Still loading.':
|
|
1111
1070
|
'Enhancing... Enhancing... Still loading.',
|
|
1112
|
-
"It's not a bug, it's a feature... of this loading screen.":
|
|
1113
1071
|
"It's not a bug, it's a feature... of this loading screen.",
|
|
1114
|
-
'Have you tried turning it off and on again? (The loading screen, not me.)':
|
|
1115
1072
|
'Have you tried turning it off and on again? (The loading screen, not me.)',
|
|
1116
|
-
|
|
1073
|
+
'Constructing additional pylons...',
|
|
1074
|
+
],
|
|
1117
1075
|
};
|