@umsai/ums-code 0.3.0-v2 → 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 +6 -6
- package/dist/src/{zed-integration → acp-integration}/acp.d.ts +13 -0
- package/dist/src/{zed-integration → acp-integration}/acp.js +32 -0
- package/dist/src/acp-integration/acp.js.map +1 -0
- package/dist/src/acp-integration/acpAgent.d.ts +10 -0
- package/dist/src/acp-integration/acpAgent.js +264 -0
- package/dist/src/acp-integration/acpAgent.js.map +1 -0
- package/dist/src/{zed-integration → acp-integration}/schema.d.ts +2235 -905
- package/dist/src/{zed-integration → acp-integration}/schema.js +100 -2
- package/dist/src/acp-integration/schema.js.map +1 -0
- package/dist/src/{zed-integration/fileSystemService.d.ts → acp-integration/service/filesystem.d.ts} +1 -1
- package/dist/src/{zed-integration/fileSystemService.js → acp-integration/service/filesystem.js} +14 -1
- package/dist/src/acp-integration/service/filesystem.js.map +1 -0
- package/dist/src/{ui/hooks/useQuotaAndFallback.test.d.ts → acp-integration/service/filesystem.test.d.ts} +1 -1
- package/dist/src/acp-integration/service/filesystem.test.js +39 -0
- package/dist/src/acp-integration/service/filesystem.test.js.map +1 -0
- package/dist/src/acp-integration/session/HistoryReplayer.d.ts +51 -0
- package/dist/src/acp-integration/session/HistoryReplayer.js +164 -0
- package/dist/src/acp-integration/session/HistoryReplayer.js.map +1 -0
- package/dist/src/acp-integration/session/HistoryReplayer.test.d.ts +6 -0
- package/dist/src/acp-integration/session/HistoryReplayer.test.js +374 -0
- package/dist/src/acp-integration/session/HistoryReplayer.test.js.map +1 -0
- package/dist/src/acp-integration/session/Session.d.ts +61 -0
- package/dist/src/acp-integration/session/Session.js +839 -0
- package/dist/src/acp-integration/session/Session.js.map +1 -0
- package/dist/src/acp-integration/session/SubAgentTracker.d.ts +51 -0
- package/dist/src/acp-integration/session/SubAgentTracker.js +257 -0
- package/dist/src/acp-integration/session/SubAgentTracker.js.map +1 -0
- package/dist/src/acp-integration/session/SubAgentTracker.test.d.ts +6 -0
- package/dist/src/acp-integration/session/SubAgentTracker.test.js +369 -0
- package/dist/src/acp-integration/session/SubAgentTracker.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/BaseEmitter.d.ts +27 -0
- package/dist/src/acp-integration/session/emitters/BaseEmitter.js +34 -0
- package/dist/src/acp-integration/session/emitters/BaseEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.d.ts +41 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.js +77 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js +174 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.d.ts +39 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.js +83 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js +176 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.d.ts +80 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js +248 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js +561 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/index.d.ts +9 -0
- package/dist/src/acp-integration/session/emitters/index.js +10 -0
- package/dist/src/acp-integration/session/emitters/index.js.map +1 -0
- package/dist/src/acp-integration/session/index.d.ts +24 -0
- package/dist/src/acp-integration/session/index.js +16 -0
- package/dist/src/acp-integration/session/index.js.map +1 -0
- package/dist/src/acp-integration/session/types.d.ts +71 -0
- package/dist/src/acp-integration/session/types.js +7 -0
- package/dist/src/acp-integration/session/types.js.map +1 -0
- 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.d.ts +1 -0
- package/dist/src/config/auth.js +29 -0
- package/dist/src/config/auth.js.map +1 -1
- package/dist/src/config/config.d.ts +19 -3
- package/dist/src/config/config.js +175 -24
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/extension.js +0 -2
- package/dist/src/config/extension.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 +53 -2
- package/dist/src/config/settingsSchema.js +46 -2
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/core/auth.d.ts +1 -1
- package/dist/src/core/auth.js +3 -2
- package/dist/src/core/auth.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 +75 -35
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/gemini.test.js +37 -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 +26 -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 +121 -175
- package/dist/src/i18n/locales/ru.js +1095 -0
- package/dist/src/i18n/locales/zh.js +52 -174
- package/dist/src/nonInteractive/control/ControlDispatcher.d.ts +24 -1
- package/dist/src/nonInteractive/control/ControlDispatcher.js +46 -17
- package/dist/src/nonInteractive/control/ControlDispatcher.js.map +1 -1
- package/dist/src/nonInteractive/control/ControlService.d.ts +2 -1
- package/dist/src/nonInteractive/control/ControlService.js +22 -37
- package/dist/src/nonInteractive/control/ControlService.js.map +1 -1
- package/dist/src/nonInteractive/control/controllers/baseController.d.ts +2 -1
- package/dist/src/nonInteractive/control/controllers/baseController.js +38 -5
- package/dist/src/nonInteractive/control/controllers/baseController.js.map +1 -1
- package/dist/src/nonInteractive/control/controllers/permissionController.d.ts +1 -22
- package/dist/src/nonInteractive/control/controllers/permissionController.js +38 -38
- package/dist/src/nonInteractive/control/controllers/permissionController.js.map +1 -1
- package/dist/src/nonInteractive/control/controllers/sdkMcpController.d.ts +54 -0
- package/dist/src/nonInteractive/control/controllers/sdkMcpController.js +84 -0
- package/dist/src/nonInteractive/control/controllers/sdkMcpController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/systemController.d.ts +16 -6
- package/dist/src/nonInteractive/control/controllers/systemController.js +184 -44
- package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -1
- package/dist/src/nonInteractive/control/types/serviceAPIs.d.ts +1 -16
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.d.ts +11 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +64 -5
- 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/nonInteractive/session.d.ts +0 -16
- package/dist/src/nonInteractive/session.js +317 -321
- package/dist/src/nonInteractive/session.js.map +1 -1
- package/dist/src/nonInteractive/session.test.js +6 -0
- package/dist/src/nonInteractive/session.test.js.map +1 -1
- package/dist/src/nonInteractive/types.d.ts +57 -3
- package/dist/src/nonInteractive/types.js +0 -1
- package/dist/src/nonInteractive/types.js.map +1 -1
- package/dist/src/nonInteractiveCli.js +121 -56
- 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/nonInteractiveCliCommands.test.d.ts +6 -0
- package/dist/src/nonInteractiveCliCommands.test.js +157 -0
- package/dist/src/nonInteractiveCliCommands.test.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.js +7 -6
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/services/BuiltinCommandLoader.test.js +0 -3
- package/dist/src/services/BuiltinCommandLoader.test.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/test-utils/mockCommandContext.js +11 -2
- package/dist/src/test-utils/mockCommandContext.js.map +1 -1
- package/dist/src/ui/AppContainer.js +62 -56
- 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 +31 -4
- 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/clearCommand.js +22 -10
- package/dist/src/ui/commands/clearCommand.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 -183
- package/dist/src/ui/commands/languageCommand.js.map +1 -1
- package/dist/src/ui/commands/languageCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/languageCommand.test.js +558 -0
- package/dist/src/ui/commands/languageCommand.test.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.js +4 -2
- package/dist/src/ui/commands/modelCommand.js.map +1 -1
- package/dist/src/ui/commands/quitCommand.d.ts +0 -1
- package/dist/src/ui/commands/quitCommand.js +0 -27
- package/dist/src/ui/commands/quitCommand.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/commands/resumeCommand.test.d.ts +6 -0
- 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.d.ts +9 -0
- package/dist/src/ui/commands/reviewCommand.js +2046 -0
- package/dist/src/ui/commands/reviewCommand.js.map +1 -0
- package/dist/src/ui/commands/reviewCommand.test.js +600 -0
- package/dist/src/ui/commands/reviewCommand.test.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.js +11 -10
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
- package/dist/src/ui/commands/setupGithubCommand.test.js +14 -14
- package/dist/src/ui/commands/setupGithubCommand.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 +24 -10
- package/dist/src/ui/commands/types.js.map +1 -1
- package/dist/src/ui/commands/ums/unittestCommand.d.ts +9 -0
- package/dist/src/ui/commands/ums/unittestCommand.js +387 -0
- package/dist/src/ui/commands/ums/unittestCommand.js.map +1 -0
- package/dist/src/ui/components/Composer.test.js +1 -2
- package/dist/src/ui/components/Composer.test.js.map +1 -1
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +3 -2
- package/dist/src/ui/components/ContextUsageDisplay.js +8 -2
- package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -1
- package/dist/src/ui/components/DialogManager.js +7 -23
- package/dist/src/ui/components/DialogManager.js.map +1 -1
- package/dist/src/ui/components/Footer.js +2 -3
- package/dist/src/ui/components/Footer.js.map +1 -1
- package/dist/src/ui/components/Help.js +13 -2
- package/dist/src/ui/components/Help.js.map +1 -1
- package/dist/src/ui/components/Help.test.js +6 -0
- package/dist/src/ui/components/Help.test.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.js +3 -1
- package/dist/src/ui/components/HistoryItemDisplay.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/InputPrompt.js +6 -4
- package/dist/src/ui/components/InputPrompt.js.map +1 -1
- package/dist/src/ui/components/ModelDialog.d.ts +3 -1
- package/dist/src/ui/components/ModelDialog.js +25 -5
- package/dist/src/ui/components/ModelDialog.js.map +1 -1
- package/dist/src/ui/components/OpenAIKeyPrompt.d.ts +3 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.js +1 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.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 +14 -2
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -1
- package/dist/src/ui/components/SettingsDialog.test.js +2 -2
- package/dist/src/ui/components/StandaloneSessionPicker.d.ts +10 -0
- 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/SuggestionsDisplay.js +3 -2
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -1
- package/dist/src/ui/components/messages/GeminiThoughtMessage.d.ts +18 -0
- package/dist/src/ui/components/messages/GeminiThoughtMessage.js +14 -0
- package/dist/src/ui/components/messages/GeminiThoughtMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiThoughtMessageContent.d.ts +18 -0
- package/dist/src/ui/components/messages/GeminiThoughtMessageContent.js +14 -0
- package/dist/src/ui/components/messages/GeminiThoughtMessageContent.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js +4 -1
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js.map +1 -1
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js +2 -2
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js.map +1 -1
- package/dist/src/ui/components/ums/UMSKeyPrompt.d.ts +1 -1
- package/dist/src/ui/components/ums/UMSKeyPrompt.js +24 -4
- package/dist/src/ui/components/ums/UMSKeyPrompt.js.map +1 -1
- package/dist/src/ui/components/ums/umsStartupWarnings.d.ts +6 -0
- package/dist/src/ui/components/ums/umsStartupWarnings.js +47 -0
- package/dist/src/ui/components/ums/umsStartupWarnings.js.map +1 -0
- package/dist/src/ui/contexts/SessionContext.d.ts +2 -0
- package/dist/src/ui/contexts/SessionContext.js +18 -10
- package/dist/src/ui/contexts/SessionContext.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 +3 -11
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +3 -8
- package/dist/src/ui/hooks/slashCommandProcessor.js +77 -101
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useAttentionNotifications.d.ts +3 -1
- package/dist/src/ui/hooks/useAttentionNotifications.js +10 -5
- package/dist/src/ui/hooks/useAttentionNotifications.js.map +1 -1
- package/dist/src/ui/hooks/useAttentionNotifications.test.js +39 -2
- package/dist/src/ui/hooks/useAttentionNotifications.test.js.map +1 -1
- package/dist/src/ui/hooks/useDialogClose.d.ts +0 -3
- package/dist/src/ui/hooks/useDialogClose.js +0 -2
- package/dist/src/ui/hooks/useDialogClose.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.js +87 -12
- 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/useLogger.d.ts +1 -1
- package/dist/src/ui/hooks/useLogger.js +6 -3
- package/dist/src/ui/hooks/useLogger.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/useReactToolScheduler.js +2 -2
- package/dist/src/ui/hooks/useReactToolScheduler.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/useSlashCompletion.js +9 -1
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.test.js +36 -31
- package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -1
- package/dist/src/ui/hooks/useToolScheduler.test.js +2 -1
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
- package/dist/src/ui/models/availableModels.d.ts +9 -2
- package/dist/src/ui/models/availableModels.js +32 -35
- package/dist/src/ui/models/availableModels.js.map +1 -1
- package/dist/src/ui/noninteractive/nonInteractiveUi.js +0 -1
- package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -1
- package/dist/src/ui/types.d.ts +9 -14
- package/dist/src/ui/types.js +0 -1
- package/dist/src/ui/types.js.map +1 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +2 -2
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.js +13 -13
- package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -1
- package/dist/src/ui/utils/formatters.d.ts +6 -0
- package/dist/src/ui/utils/formatters.js +31 -0
- package/dist/src/ui/utils/formatters.js.map +1 -1
- package/dist/src/ui/utils/formatters.test.js +51 -2
- package/dist/src/ui/utils/formatters.test.js.map +1 -1
- package/dist/src/ui/utils/resumeHistoryUtils.d.ts +19 -0
- package/dist/src/ui/utils/resumeHistoryUtils.js +267 -0
- package/dist/src/ui/utils/resumeHistoryUtils.js.map +1 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.js +253 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.js.map +1 -0
- 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/attentionNotification.d.ts +1 -0
- package/dist/src/utils/attentionNotification.js +4 -0
- package/dist/src/utils/attentionNotification.js.map +1 -1
- 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 +25 -8
- 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 +14 -15
- package/dist/src/utils/nonInteractiveHelpers.js.map +1 -1
- package/dist/src/utils/nonInteractiveHelpers.test.js +36 -21
- 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 +10 -1
- package/dist/src/validateNonInterActiveAuth.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/dist/src/nonInteractive/control/controllers/mcpController.d.ts +0 -42
- package/dist/src/nonInteractive/control/controllers/mcpController.js +0 -205
- package/dist/src/nonInteractive/control/controllers/mcpController.js.map +0 -1
- package/dist/src/ui/commands/chatCommand.d.ts +0 -9
- package/dist/src/ui/commands/chatCommand.js +0 -351
- package/dist/src/ui/commands/chatCommand.js.map +0 -1
- package/dist/src/ui/commands/corgiCommand.d.ts +0 -7
- package/dist/src/ui/commands/corgiCommand.js +0 -16
- package/dist/src/ui/commands/corgiCommand.js.map +0 -1
- 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/QuitConfirmationDialog.d.ts +0 -17
- package/dist/src/ui/components/QuitConfirmationDialog.js +0 -49
- package/dist/src/ui/components/QuitConfirmationDialog.js.map +0 -1
- package/dist/src/ui/hooks/usePromptCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/usePromptCompletion.js +0 -177
- package/dist/src/ui/hooks/usePromptCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useQuitConfirmation.d.ts +0 -14
- package/dist/src/ui/hooks/useQuitConfirmation.js +0 -36
- package/dist/src/ui/hooks/useQuitConfirmation.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
- package/dist/src/zed-integration/acp.js.map +0 -1
- package/dist/src/zed-integration/fileSystemService.js.map +0 -1
- package/dist/src/zed-integration/schema.js.map +0 -1
- package/dist/src/zed-integration/zedIntegration.d.ts +0 -17
- package/dist/src/zed-integration/zedIntegration.js +0 -1135
- package/dist/src/zed-integration/zedIntegration.js.map +0 -1
- /package/dist/src/ui/{components/ProQuotaDialog.test.d.ts → commands/reviewCommand.test.d.ts} +0 -0
|
@@ -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,15 +105,14 @@ 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
|
-
'Show quit confirmation dialog': 'Show quit confirmation dialog',
|
|
114
116
|
'Copy the last result or code snippet to clipboard':
|
|
115
117
|
'Copy the last result or code snippet to clipboard',
|
|
116
118
|
|
|
@@ -170,8 +172,8 @@ export default {
|
|
|
170
172
|
// ============================================================================
|
|
171
173
|
// Agents - Creation Wizard
|
|
172
174
|
// ============================================================================
|
|
173
|
-
'Project Level (.
|
|
174
|
-
'User Level (~/.
|
|
175
|
+
'Project Level (.qwen/agents/)': 'Project Level (.qwen/agents/)',
|
|
176
|
+
'User Level (~/.qwen/agents/)': 'User Level (~/.qwen/agents/)',
|
|
175
177
|
'✅ Subagent Created Successfully!': '✅ Subagent Created Successfully!',
|
|
176
178
|
'Subagent "{{name}}" has been saved to {{level}} level.':
|
|
177
179
|
'Subagent "{{name}}" has been saved to {{level}} level.',
|
|
@@ -193,8 +195,8 @@ export default {
|
|
|
193
195
|
'Step {{n}}: Choose Location': 'Step {{n}}: Choose Location',
|
|
194
196
|
'Step {{n}}: Choose Generation Method':
|
|
195
197
|
'Step {{n}}: Choose Generation Method',
|
|
196
|
-
'Generate with
|
|
197
|
-
'Generate with
|
|
198
|
+
'Generate with Qwen Code (Recommended)':
|
|
199
|
+
'Generate with Qwen Code (Recommended)',
|
|
198
200
|
'Manual Creation': 'Manual Creation',
|
|
199
201
|
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
|
|
200
202
|
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)',
|
|
@@ -253,12 +255,14 @@ export default {
|
|
|
253
255
|
// ============================================================================
|
|
254
256
|
// Commands - General (continued)
|
|
255
257
|
// ============================================================================
|
|
256
|
-
'View and edit
|
|
258
|
+
'View and edit Qwen Code settings': 'View and edit Qwen Code settings',
|
|
257
259
|
Settings: 'Settings',
|
|
258
260
|
'(Use Enter to select{{tabText}})': '(Use Enter to select{{tabText}})',
|
|
259
261
|
', Tab to change focus': ', Tab to change focus',
|
|
260
|
-
'To see changes,
|
|
261
|
-
'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.',
|
|
262
266
|
// ============================================================================
|
|
263
267
|
// Settings Labels
|
|
264
268
|
// ============================================================================
|
|
@@ -298,7 +302,7 @@ export default {
|
|
|
298
302
|
'Load Memory From Include Directories':
|
|
299
303
|
'Load Memory From Include Directories',
|
|
300
304
|
'Respect .gitignore': 'Respect .gitignore',
|
|
301
|
-
'Respect .
|
|
305
|
+
'Respect .qwenignore': 'Respect .qwenignore',
|
|
302
306
|
'Enable Recursive File Search': 'Enable Recursive File Search',
|
|
303
307
|
'Disable Fuzzy Search': 'Disable Fuzzy Search',
|
|
304
308
|
'Enable Interactive Shell': 'Enable Interactive Shell',
|
|
@@ -311,6 +315,7 @@ export default {
|
|
|
311
315
|
'Tool Output Truncation Lines': 'Tool Output Truncation Lines',
|
|
312
316
|
'Folder Trust': 'Folder Trust',
|
|
313
317
|
'Vision Model Preview': 'Vision Model Preview',
|
|
318
|
+
'Tool Schema Compliance': 'Tool Schema Compliance',
|
|
314
319
|
// Settings enum options
|
|
315
320
|
'Auto (detect from system)': 'Auto (detect from system)',
|
|
316
321
|
Text: 'Text',
|
|
@@ -345,8 +350,8 @@ export default {
|
|
|
345
350
|
'install required IDE companion for {{ideName}}',
|
|
346
351
|
'enable IDE integration': 'enable IDE integration',
|
|
347
352
|
'disable IDE integration': 'disable IDE integration',
|
|
348
|
-
'IDE integration is not supported in your current environment. To use this feature, run
|
|
349
|
-
'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.',
|
|
350
355
|
'Set up GitHub Actions': 'Set up GitHub Actions',
|
|
351
356
|
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
|
|
352
357
|
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)',
|
|
@@ -581,8 +586,8 @@ export default {
|
|
|
581
586
|
// ============================================================================
|
|
582
587
|
// Commands - Summary
|
|
583
588
|
// ============================================================================
|
|
584
|
-
'Generate a project summary and save it to .
|
|
585
|
-
'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',
|
|
586
591
|
'No chat client available to generate summary.':
|
|
587
592
|
'No chat client available to generate summary.',
|
|
588
593
|
'Already generating summary, wait for previous request to complete':
|
|
@@ -590,6 +595,12 @@ export default {
|
|
|
590
595
|
'No conversation found to summarize.': 'No conversation found to summarize.',
|
|
591
596
|
'Failed to generate project context summary: {{error}}':
|
|
592
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',
|
|
593
604
|
|
|
594
605
|
// ============================================================================
|
|
595
606
|
// Commands - Model
|
|
@@ -604,9 +615,10 @@ export default {
|
|
|
604
615
|
// ============================================================================
|
|
605
616
|
// Commands - Clear
|
|
606
617
|
// ============================================================================
|
|
607
|
-
'
|
|
608
|
-
'
|
|
609
|
-
'
|
|
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.',
|
|
610
622
|
|
|
611
623
|
// ============================================================================
|
|
612
624
|
// Commands - Compress
|
|
@@ -636,8 +648,8 @@ export default {
|
|
|
636
648
|
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
|
|
637
649
|
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.',
|
|
638
650
|
"Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}",
|
|
639
|
-
'Successfully added
|
|
640
|
-
'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}}',
|
|
641
653
|
'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}',
|
|
642
654
|
'Successfully added directories:\n- {{directories}}':
|
|
643
655
|
'Successfully added directories:\n- {{directories}}',
|
|
@@ -690,18 +702,6 @@ export default {
|
|
|
690
702
|
'A custom command wants to run the following shell commands:':
|
|
691
703
|
'A custom command wants to run the following shell commands:',
|
|
692
704
|
|
|
693
|
-
// ============================================================================
|
|
694
|
-
// Dialogs - Quit Confirmation
|
|
695
|
-
// ============================================================================
|
|
696
|
-
'What would you like to do before exiting?':
|
|
697
|
-
'What would you like to do before exiting?',
|
|
698
|
-
'Quit immediately (/quit)': 'Quit immediately (/quit)',
|
|
699
|
-
'Generate summary and quit (/summary)':
|
|
700
|
-
'Generate summary and quit (/summary)',
|
|
701
|
-
'Save conversation and quit (/chat save)':
|
|
702
|
-
'Save conversation and quit (/chat save)',
|
|
703
|
-
'Cancel (stay in application)': 'Cancel (stay in application)',
|
|
704
|
-
|
|
705
705
|
// ============================================================================
|
|
706
706
|
// Dialogs - Pro Quota
|
|
707
707
|
// ============================================================================
|
|
@@ -739,8 +739,8 @@ export default {
|
|
|
739
739
|
'You must select an auth method to proceed. Press Ctrl+C again to exit.':
|
|
740
740
|
'You must select an auth method to proceed. Press Ctrl+C again to exit.',
|
|
741
741
|
'(Use Enter to Set Auth)': '(Use Enter to Set Auth)',
|
|
742
|
-
'Terms of Services and Privacy Notice for
|
|
743
|
-
'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',
|
|
744
744
|
'Qwen OAuth': 'Qwen OAuth',
|
|
745
745
|
OpenAI: 'OpenAI',
|
|
746
746
|
'Failed to login. Message: {{message}}':
|
|
@@ -872,14 +872,15 @@ export default {
|
|
|
872
872
|
'1. Ask questions, edit files, or run commands.',
|
|
873
873
|
'2. Be specific for the best results.':
|
|
874
874
|
'2. Be specific for the best results.',
|
|
875
|
-
'files to customize your interactions with
|
|
876
|
-
'files to customize your interactions with
|
|
875
|
+
'files to customize your interactions with Qwen Code.':
|
|
876
|
+
'files to customize your interactions with Qwen Code.',
|
|
877
877
|
'for more information.': 'for more information.',
|
|
878
878
|
|
|
879
879
|
// ============================================================================
|
|
880
880
|
// Exit Screen / Stats
|
|
881
881
|
// ============================================================================
|
|
882
882
|
'Agent powering down. Goodbye!': 'Agent powering down. Goodbye!',
|
|
883
|
+
'To continue this session, run': 'To continue this session, run',
|
|
883
884
|
'Interaction Summary': 'Interaction Summary',
|
|
884
885
|
'Session ID:': 'Session ID:',
|
|
885
886
|
'Tool Calls:': 'Tool Calls:',
|
|
@@ -938,192 +939,137 @@ export default {
|
|
|
938
939
|
// ============================================================================
|
|
939
940
|
'Waiting for user confirmation...': 'Waiting for user confirmation...',
|
|
940
941
|
'(esc to cancel, {{time}})': '(esc to cancel, {{time}})',
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
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...',
|
|
952
957
|
"Don't rush perfection (or my code)...",
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
'Checking for syntax errors in the universe...':
|
|
958
|
+
'Brewing fresh bytes...',
|
|
959
|
+
'Counting electrons...',
|
|
960
|
+
'Engaging cognitive processors...',
|
|
957
961
|
'Checking for syntax errors in the universe...',
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
"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...',
|
|
966
969
|
"Just a sec, I'm debugging reality...",
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
'Crafting a response worthy of your patience...':
|
|
970
|
+
'Confuzzling the options...',
|
|
971
|
+
'Tuning the cosmic frequencies...',
|
|
970
972
|
'Crafting a response worthy of your patience...',
|
|
971
|
-
|
|
972
|
-
'Resolving dependencies... and existential crises...':
|
|
973
|
+
'Compiling the 1s and 0s...',
|
|
973
974
|
'Resolving dependencies... and existential crises...',
|
|
974
|
-
'Defragmenting memories... both RAM and personal...':
|
|
975
975
|
'Defragmenting memories... both RAM and personal...',
|
|
976
|
-
|
|
977
|
-
'Caching the essentials (mostly cat memes)...':
|
|
976
|
+
'Rebooting the humor module...',
|
|
978
977
|
'Caching the essentials (mostly cat memes)...',
|
|
979
|
-
|
|
980
|
-
"Swapping bits... don't tell the bytes...":
|
|
978
|
+
'Optimizing for ludicrous speed',
|
|
981
979
|
"Swapping bits... don't tell the bytes...",
|
|
982
|
-
'Garbage collecting... be right back...':
|
|
983
980
|
'Garbage collecting... be right back...',
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
'Looking for a misplaced semicolon...':
|
|
981
|
+
'Assembling the interwebs...',
|
|
982
|
+
'Converting coffee into code...',
|
|
983
|
+
'Updating the syntax for reality...',
|
|
984
|
+
'Rewiring the synapses...',
|
|
989
985
|
'Looking for a misplaced semicolon...',
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
'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...',
|
|
996
991
|
'Aligning the stars for optimal response...',
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
'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...",
|
|
1001
995
|
'Preparing to dazzle you with brilliance...',
|
|
1002
|
-
"Just a tick, I'm polishing my wit...":
|
|
1003
996
|
"Just a tick, I'm polishing my wit...",
|
|
1004
|
-
"Hold tight, I'm crafting a masterpiece...":
|
|
1005
997
|
"Hold tight, I'm crafting a masterpiece...",
|
|
1006
|
-
"Just a jiffy, I'm debugging the universe...":
|
|
1007
998
|
"Just a jiffy, I'm debugging the universe...",
|
|
1008
|
-
"Just a moment, I'm aligning the pixels...":
|
|
1009
999
|
"Just a moment, I'm aligning the pixels...",
|
|
1010
|
-
"Just a sec, I'm optimizing the humor...":
|
|
1011
1000
|
"Just a sec, I'm optimizing the humor...",
|
|
1012
|
-
"Just a moment, I'm tuning the algorithms...":
|
|
1013
1001
|
"Just a moment, I'm tuning the algorithms...",
|
|
1014
|
-
|
|
1015
|
-
'Mining for more Dilithium crystals...':
|
|
1002
|
+
'Warp speed engaged...',
|
|
1016
1003
|
'Mining for more Dilithium crystals...',
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
'The truth is in here... somewhere...':
|
|
1004
|
+
"Don't panic...",
|
|
1005
|
+
'Following the white rabbit...',
|
|
1020
1006
|
'The truth is in here... somewhere...',
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
'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...',
|
|
1025
1010
|
'Finishing the Kessel Run in less than 12 parsecs...',
|
|
1026
|
-
"The cake is not a lie, it's just still loading...":
|
|
1027
1011
|
"The cake is not a lie, it's just still loading...",
|
|
1028
|
-
'Fiddling with the character creation screen...':
|
|
1029
1012
|
'Fiddling with the character creation screen...',
|
|
1030
|
-
"Just a moment, I'm finding the right meme...":
|
|
1031
1013
|
"Just a moment, I'm finding the right meme...",
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
'Finding a suitable loading screen pun...':
|
|
1014
|
+
"Pressing 'A' to continue...",
|
|
1015
|
+
'Herding digital cats...',
|
|
1016
|
+
'Polishing the pixels...',
|
|
1036
1017
|
'Finding a suitable loading screen pun...',
|
|
1037
|
-
'Distracting you with this witty phrase...':
|
|
1038
1018
|
'Distracting you with this witty phrase...',
|
|
1039
|
-
|
|
1040
|
-
'Our hamsters are working as fast as they can...':
|
|
1019
|
+
'Almost there... probably...',
|
|
1041
1020
|
'Our hamsters are working as fast as they can...',
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
'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...',
|
|
1046
1024
|
'Never gonna give you up, never gonna let you down...',
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
"I'm going the distance, I'm going for speed...":
|
|
1025
|
+
'Slapping the bass...',
|
|
1026
|
+
'Tasting the snozberries...',
|
|
1050
1027
|
"I'm going the distance, I'm going for speed...",
|
|
1051
|
-
'Is this the real life? Is this just fantasy?...':
|
|
1052
1028
|
'Is this the real life? Is this just fantasy?...',
|
|
1053
|
-
"I've got a good feeling about this...":
|
|
1054
1029
|
"I've got a good feeling about this...",
|
|
1055
|
-
|
|
1056
|
-
'Doing research on the latest memes...':
|
|
1030
|
+
'Poking the bear...',
|
|
1057
1031
|
'Doing research on the latest memes...',
|
|
1058
|
-
'Figuring out how to make this more witty...':
|
|
1059
1032
|
'Figuring out how to make this more witty...',
|
|
1060
|
-
|
|
1061
|
-
'What do you call a fish with no eyes? A fsh...':
|
|
1033
|
+
'Hmmm... let me think...',
|
|
1062
1034
|
'What do you call a fish with no eyes? A fsh...',
|
|
1063
|
-
'Why did the computer go to therapy? It had too many bytes...':
|
|
1064
1035
|
'Why did the computer go to therapy? It had too many bytes...',
|
|
1065
|
-
"Why don't programmers like nature? It has too many bugs...":
|
|
1066
1036
|
"Why don't programmers like nature? It has too many bugs...",
|
|
1067
|
-
'Why do programmers prefer dark mode? Because light attracts bugs...':
|
|
1068
1037
|
'Why do programmers prefer dark mode? Because light attracts bugs...',
|
|
1069
|
-
'Why did the developer go broke? Because they used up all their cache...':
|
|
1070
1038
|
'Why did the developer go broke? Because they used up all their cache...',
|
|
1071
|
-
"What can you do with a broken pencil? Nothing, it's pointless...":
|
|
1072
1039
|
"What can you do with a broken pencil? Nothing, it's pointless...",
|
|
1073
|
-
|
|
1074
|
-
'Searching for the correct USB orientation...':
|
|
1040
|
+
'Applying percussive maintenance...',
|
|
1075
1041
|
'Searching for the correct USB orientation...',
|
|
1076
|
-
'Ensuring the magic smoke stays inside the wires...':
|
|
1077
1042
|
'Ensuring the magic smoke stays inside the wires...',
|
|
1078
|
-
|
|
1079
|
-
'
|
|
1080
|
-
'Trying to exit Vim...': 'Trying to exit Vim...',
|
|
1081
|
-
'Spinning up the hamster wheel...': 'Spinning up the hamster wheel...',
|
|
1082
|
-
"That's not a bug, it's an undocumented feature...":
|
|
1043
|
+
'Trying to exit Vim...',
|
|
1044
|
+
'Spinning up the hamster wheel...',
|
|
1083
1045
|
"That's not a bug, it's an undocumented feature...",
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
'Communing with the machine spirit...':
|
|
1046
|
+
'Engage.',
|
|
1047
|
+
"I'll be back... with an answer.",
|
|
1048
|
+
'My other process is a TARDIS...',
|
|
1088
1049
|
'Communing with the machine spirit...',
|
|
1089
|
-
|
|
1090
|
-
'Just remembered where I put my keys...':
|
|
1050
|
+
'Letting the thoughts marinate...',
|
|
1091
1051
|
'Just remembered where I put my keys...',
|
|
1092
|
-
|
|
1093
|
-
"I've seen things you people wouldn't believe... like a user who reads loading messages.":
|
|
1052
|
+
'Pondering the orb...',
|
|
1094
1053
|
"I've seen things you people wouldn't believe... like a user who reads loading messages.",
|
|
1095
|
-
|
|
1096
|
-
"What's a computer's favorite snack? Microchips.":
|
|
1054
|
+
'Initiating thoughtful gaze...',
|
|
1097
1055
|
"What's a computer's favorite snack? Microchips.",
|
|
1098
|
-
"Why do Java developers wear glasses? Because they don't C#.":
|
|
1099
1056
|
"Why do Java developers wear glasses? Because they don't C#.",
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
'Looking for an adult superviso... I mean, processing.':
|
|
1057
|
+
'Charging the laser... pew pew!',
|
|
1058
|
+
'Dividing by zero... just kidding!',
|
|
1103
1059
|
'Looking for an adult superviso... I mean, processing.',
|
|
1104
|
-
|
|
1105
|
-
'Buffering... because even AIs need a moment.':
|
|
1060
|
+
'Making it go beep boop.',
|
|
1106
1061
|
'Buffering... because even AIs need a moment.',
|
|
1107
|
-
'Entangling quantum particles for a faster response...':
|
|
1108
1062
|
'Entangling quantum particles for a faster response...',
|
|
1109
|
-
'Polishing the chrome... on the algorithms.':
|
|
1110
1063
|
'Polishing the chrome... on the algorithms.',
|
|
1111
|
-
'Are you not entertained? (Working on it!)':
|
|
1112
1064
|
'Are you not entertained? (Working on it!)',
|
|
1113
|
-
'Summoning the code gremlins... to help, of course.':
|
|
1114
1065
|
'Summoning the code gremlins... to help, of course.',
|
|
1115
|
-
'Just waiting for the dial-up tone to finish...':
|
|
1116
1066
|
'Just waiting for the dial-up tone to finish...',
|
|
1117
|
-
|
|
1118
|
-
'My other loading screen is even funnier.':
|
|
1067
|
+
'Recalibrating the humor-o-meter.',
|
|
1119
1068
|
'My other loading screen is even funnier.',
|
|
1120
|
-
"Pretty sure there's a cat walking on the keyboard somewhere...":
|
|
1121
1069
|
"Pretty sure there's a cat walking on the keyboard somewhere...",
|
|
1122
|
-
'Enhancing... Enhancing... Still loading.':
|
|
1123
1070
|
'Enhancing... Enhancing... Still loading.',
|
|
1124
|
-
"It's not a bug, it's a feature... of this loading screen.":
|
|
1125
1071
|
"It's not a bug, it's a feature... of this loading screen.",
|
|
1126
|
-
'Have you tried turning it off and on again? (The loading screen, not me.)':
|
|
1127
1072
|
'Have you tried turning it off and on again? (The loading screen, not me.)',
|
|
1128
|
-
|
|
1073
|
+
'Constructing additional pylons...',
|
|
1074
|
+
],
|
|
1129
1075
|
};
|