claude-ws 0.3.97 → 0.3.99
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/locales/de.json +374 -12
- package/locales/en.json +374 -12
- package/locales/es.json +398 -11
- package/locales/fr.json +398 -11
- package/locales/ja.json +398 -11
- package/locales/ko.json +398 -11
- package/locales/vi.json +374 -12
- package/locales/zh.json +398 -11
- package/package.json +1 -1
- package/server.ts +283 -6
- package/src/app/[locale]/not-found.tsx +6 -3
- package/src/app/[locale]/page.tsx +14 -4
- package/src/app/api/attempts/[id]/workflow/route.ts +76 -0
- package/src/app/api/questions/answer/route.ts +58 -0
- package/src/app/api/questions/route.ts +68 -0
- package/src/app/api/tasks/[id]/compact/route.ts +62 -0
- package/src/components/access-anywhere/api-access-key-setup-modal.tsx +2 -2
- package/src/components/access-anywhere/tunnel-settings-dialog.tsx +6 -6
- package/src/components/access-anywhere/wizard-step-ctunnel.tsx +8 -8
- package/src/components/agent-factory/dependency-tree.tsx +5 -3
- package/src/components/agent-factory/discovery-dialog.tsx +26 -22
- package/src/components/agent-factory/plugin-detail-dialog.tsx +41 -38
- package/src/components/agent-factory/plugin-form-dialog.tsx +23 -20
- package/src/components/agent-factory/plugin-list.tsx +20 -17
- package/src/components/agent-factory/upload-dialog.tsx +17 -14
- package/src/components/auth/agent-provider-dialog.tsx +67 -65
- package/src/components/auth/api-key-dialog.tsx +14 -11
- package/src/components/auth/auth-error-message.tsx +6 -3
- package/src/components/editor/code-editor-with-inline-edit.tsx +4 -2
- package/src/components/editor/file-diff-resolver-modal.tsx +31 -26
- package/src/components/editor/inline-edit-dialog.tsx +9 -6
- package/src/components/editor/selection-mention-popup.tsx +3 -1
- package/src/components/header/project-selector.tsx +7 -4
- package/src/components/header.tsx +70 -4
- package/src/components/kanban/column.tsx +11 -0
- package/src/components/kanban/task-card.tsx +70 -4
- package/src/components/project-settings/component-selector.tsx +3 -1
- package/src/components/project-settings/plugin-upload-dialog.tsx +7 -5
- package/src/components/project-settings/project-settings-dialog.tsx +5 -3
- package/src/components/questions/questions-panel.tsx +136 -0
- package/src/components/settings/folder-browser-dialog.tsx +29 -25
- package/src/components/settings/settings-page.tsx +64 -18
- package/src/components/settings/setup-dialog.tsx +26 -23
- package/src/components/setup/unified-setup-wizard.tsx +12 -9
- package/src/components/sidebar/file-browser/file-create-buttons.tsx +7 -3
- package/src/components/sidebar/file-browser/file-tab-content.tsx +19 -15
- package/src/components/sidebar/file-browser/file-tabs-panel.tsx +7 -4
- package/src/components/sidebar/file-browser/file-tree.tsx +3 -1
- package/src/components/sidebar/git-changes/branch-checkout-modal.tsx +6 -4
- package/src/components/sidebar/git-changes/commit-details-modal.tsx +5 -3
- package/src/components/sidebar/git-changes/diff-tabs-panel.tsx +3 -1
- package/src/components/sidebar/git-changes/git-file-item.tsx +8 -6
- package/src/components/sidebar/git-changes/git-graph.tsx +8 -5
- package/src/components/sidebar/git-changes/git-panel.tsx +28 -27
- package/src/components/sidebar/git-changes/git-section.tsx +5 -3
- package/src/components/sidebar/shells/shell-panel.tsx +3 -1
- package/src/components/task/attachment-bar.tsx +4 -1
- package/src/components/task/attempt-item.tsx +7 -5
- package/src/components/task/conversation-view.tsx +21 -13
- package/src/components/task/floating-chat-window.tsx +14 -5
- package/src/components/task/interactive-command/checkpoint-list.tsx +5 -3
- package/src/components/task/interactive-command/confirm-dialog.tsx +9 -4
- package/src/components/task/interactive-command/interactive-command-overlay.tsx +23 -9
- package/src/components/task/interactive-command/question-prompt.tsx +12 -8
- package/src/components/task/pending-question-indicator.tsx +5 -3
- package/src/components/task/prompt-input.tsx +1 -1
- package/src/components/task/shell-log-view.tsx +3 -1
- package/src/components/task/status-line.tsx +84 -23
- package/src/components/task/task-detail-panel.tsx +27 -27
- package/src/components/task/task-shell-indicator.tsx +10 -6
- package/src/components/terminal/terminal-context-menu.tsx +6 -4
- package/src/components/terminal/terminal-instance.tsx +11 -3
- package/src/components/terminal/terminal-panel.tsx +6 -3
- package/src/components/terminal/terminal-shortcut-bar.tsx +3 -1
- package/src/components/terminal/terminal-tab-bar.tsx +5 -3
- package/src/components/workflow/workflow-panel.tsx +181 -0
- package/src/hooks/use-attempt-stream.ts +96 -3
- package/src/lib/agent-manager.ts +89 -3
- package/src/lib/db/index.ts +18 -0
- package/src/lib/db/schema.ts +29 -0
- package/src/lib/process-manager.ts +28 -7
- package/src/lib/session-manager.ts +60 -0
- package/src/lib/usage-tracker.ts +19 -19
- package/src/lib/workflow-tracker.ts +118 -20
- package/src/stores/questions-store.ts +76 -0
- package/src/stores/workflow-store.ts +71 -0
package/locales/en.json
CHANGED
|
@@ -37,7 +37,38 @@
|
|
|
37
37
|
"newTask": "New Task",
|
|
38
38
|
"agentFactory": "Agent Factory",
|
|
39
39
|
"agentProvider": "Agent Provider",
|
|
40
|
-
"accessAnywhere": "Access Anywhere"
|
|
40
|
+
"accessAnywhere": "Access Anywhere",
|
|
41
|
+
"configured": "Configured",
|
|
42
|
+
"default": "Default",
|
|
43
|
+
"noProjectsConfigured": "No projects configured",
|
|
44
|
+
"setUpProject": "Set up a project",
|
|
45
|
+
"loadingApp": "Loading to Claude.WS",
|
|
46
|
+
"unsavedChangesConfirm": "\"{fileName}\" has unsaved changes. Close anyway?",
|
|
47
|
+
"allProjects": "All Projects",
|
|
48
|
+
"noProjectsYet": "No projects yet",
|
|
49
|
+
"selectProject": "Select Project",
|
|
50
|
+
"clearSearch": "Clear search",
|
|
51
|
+
"no": "No",
|
|
52
|
+
"yes": "Yes",
|
|
53
|
+
"browse": "Browse",
|
|
54
|
+
"creating": "Creating...",
|
|
55
|
+
"opening": "Opening...",
|
|
56
|
+
"saving": "Saving...",
|
|
57
|
+
"verifying": "Verifying...",
|
|
58
|
+
"generating": "Generating...",
|
|
59
|
+
"scanning": "Scanning...",
|
|
60
|
+
"importing": "Importing...",
|
|
61
|
+
"checking": "Checking...",
|
|
62
|
+
"renaming": "Renaming...",
|
|
63
|
+
"rename": "Rename",
|
|
64
|
+
"paste": "Paste",
|
|
65
|
+
"clearTerminal": "Clear Terminal",
|
|
66
|
+
"new": "New",
|
|
67
|
+
"refresh": "Refresh",
|
|
68
|
+
"discover": "Discover",
|
|
69
|
+
"upload": "Upload",
|
|
70
|
+
"create": "Create",
|
|
71
|
+
"editTitle": "Edit title"
|
|
41
72
|
},
|
|
42
73
|
"header": {
|
|
43
74
|
"projects": "Projects",
|
|
@@ -76,7 +107,9 @@
|
|
|
76
107
|
"messageRequired": "Message is required",
|
|
77
108
|
"pleaseSelectProject": "Please select a project",
|
|
78
109
|
"waitFileUpload": "Please wait for files to finish uploading",
|
|
79
|
-
"failedToCreate": "Failed to create task"
|
|
110
|
+
"failedToCreate": "Failed to create task",
|
|
111
|
+
"dragToReorder": "Drag to reorder",
|
|
112
|
+
"deleteTask": "Delete task"
|
|
80
113
|
},
|
|
81
114
|
"task": {
|
|
82
115
|
"title": "Title",
|
|
@@ -95,7 +128,35 @@
|
|
|
95
128
|
"runAgain": "Run Again",
|
|
96
129
|
"viewDiff": "View Diff",
|
|
97
130
|
"checkpoint": "Checkpoint",
|
|
98
|
-
"restore": "Restore"
|
|
131
|
+
"restore": "Restore",
|
|
132
|
+
"noAttemptRunning": "No attempt running. Send a message to start.",
|
|
133
|
+
"waitingForTracking": "Waiting for tracking data...",
|
|
134
|
+
"tokens": "tokens",
|
|
135
|
+
"turn": "turn",
|
|
136
|
+
"turns": "turns",
|
|
137
|
+
"file": "file",
|
|
138
|
+
"files": "files",
|
|
139
|
+
"questionsPending": "{count} question(s) pending",
|
|
140
|
+
"moreQuestions": "+{count} more question(s)",
|
|
141
|
+
"open": "Open",
|
|
142
|
+
"stopShell": "Stop shell (K)",
|
|
143
|
+
"runningBackgroundTasks": "{count} running background task(s)",
|
|
144
|
+
"navigateHint": "navigate",
|
|
145
|
+
"viewLogsHint": "view logs",
|
|
146
|
+
"killHint": "kill",
|
|
147
|
+
"closeHint": "close",
|
|
148
|
+
"loadingQuestion": "Loading question...",
|
|
149
|
+
"statusRunning": "Running",
|
|
150
|
+
"statusCompleted": "Completed",
|
|
151
|
+
"statusFailed": "Failed",
|
|
152
|
+
"statusCancelled": "Cancelled",
|
|
153
|
+
"deleteTaskConfirm": "Delete task \"{title}\"?",
|
|
154
|
+
"dragToReorder": "Drag to reorder",
|
|
155
|
+
"submitAnswers": "Submit answers",
|
|
156
|
+
"reviewAnswers": "Review your answers",
|
|
157
|
+
"notAllAnswered": "You have not answered all questions",
|
|
158
|
+
"readyToSubmit": "Ready to submit your answers?",
|
|
159
|
+
"typeSomething": "Type something."
|
|
99
160
|
},
|
|
100
161
|
"editor": {
|
|
101
162
|
"openFile": "Open File",
|
|
@@ -105,7 +166,55 @@
|
|
|
105
166
|
"find": "Find",
|
|
106
167
|
"replace": "Replace",
|
|
107
168
|
"format": "Format",
|
|
108
|
-
"toggleWordWrap": "Toggle Word Wrap"
|
|
169
|
+
"toggleWordWrap": "Toggle Word Wrap",
|
|
170
|
+
"fileChangedExternally": "File Changed Externally",
|
|
171
|
+
"hasBeenModified": "has been modified on disk. Click",
|
|
172
|
+
"toInsertRemoteLines": "to insert remote lines into your version.",
|
|
173
|
+
"differences": "Differences:",
|
|
174
|
+
"newInRemote": "new in remote",
|
|
175
|
+
"onlyInLocal": "only in local",
|
|
176
|
+
"filesIdentical": "Files are identical",
|
|
177
|
+
"modifiedFromOriginal": "Modified from original",
|
|
178
|
+
"local": "Local",
|
|
179
|
+
"modified": "(modified)",
|
|
180
|
+
"copyLocalContent": "Copy local content",
|
|
181
|
+
"remoteDisk": "Remote (Disk)",
|
|
182
|
+
"copyRemoteContent": "Copy remote content",
|
|
183
|
+
"keepLocalOnly": "Keep Local Only",
|
|
184
|
+
"acceptRemoteOnly": "Accept Remote Only",
|
|
185
|
+
"applyMerged": "Apply Merged",
|
|
186
|
+
"lineInserted": "Line inserted with marker",
|
|
187
|
+
"linesInserted": "{count} line(s) inserted with markers",
|
|
188
|
+
"deletionMarkersInserted": "Deletion markers inserted",
|
|
189
|
+
"deletionMarkerInserted": "Deletion marker inserted",
|
|
190
|
+
"keptLocalChanges": "Kept local changes",
|
|
191
|
+
"acceptedRemoteChanges": "Accepted remote changes",
|
|
192
|
+
"appliedMergedChanges": "Applied merged changes",
|
|
193
|
+
"copiedToClipboard": "Copied {label} to clipboard",
|
|
194
|
+
"linesInRemote": "{count} line(s) in remote",
|
|
195
|
+
"insertAllLines": "Insert all {count} lines",
|
|
196
|
+
"linesDeletedInRemote": "{count} line(s) deleted in remote",
|
|
197
|
+
"markAsDeleted": "Mark as deleted",
|
|
198
|
+
"insertLineIntoLocal": "Insert this line into local",
|
|
199
|
+
"selectTaskFirst": "Select a task first to add context",
|
|
200
|
+
"accept": "Accept",
|
|
201
|
+
"reject": "Reject",
|
|
202
|
+
"describeChange": "Describe the change you want...",
|
|
203
|
+
"error": "Error",
|
|
204
|
+
"addLinesToChat": "Add lines L{startLine}-{endLine} to chat",
|
|
205
|
+
"addFileToChat": "Add file to chat",
|
|
206
|
+
"searchPlaceholder": "Search...",
|
|
207
|
+
"previousMatch": "Previous",
|
|
208
|
+
"nextMatch": "Next",
|
|
209
|
+
"undo": "Undo",
|
|
210
|
+
"redo": "Redo",
|
|
211
|
+
"showSourceCode": "Show source code",
|
|
212
|
+
"showPreview": "Show preview",
|
|
213
|
+
"export": "Export",
|
|
214
|
+
"checkingForChanges": "Checking for changes...",
|
|
215
|
+
"externalChangesDetected": "External changes detected - click to resolve",
|
|
216
|
+
"closeAllTabs": "Close all tabs",
|
|
217
|
+
"addMoreFiles": "Add more files"
|
|
109
218
|
},
|
|
110
219
|
"sidebar": {
|
|
111
220
|
"files": "Files",
|
|
@@ -205,7 +314,40 @@
|
|
|
205
314
|
"noChangesToCommit": "No changes to commit",
|
|
206
315
|
"noChanges": "No changes",
|
|
207
316
|
"enterCommitMessage": "Enter commit message",
|
|
208
|
-
"staged": "Staged"
|
|
317
|
+
"staged": "Staged",
|
|
318
|
+
"discardChangesConfirm": "Discard changes to {filePath}?",
|
|
319
|
+
"discardAllConfirm": "Discard ALL changes? This cannot be undone!",
|
|
320
|
+
"failedToAddGitignore": "Failed to add to .gitignore",
|
|
321
|
+
"failedToCommit": "Failed to commit",
|
|
322
|
+
"failedToGenerateCommit": "Failed to generate commit message",
|
|
323
|
+
"failedToPush": "Failed to push changes",
|
|
324
|
+
"failedToFetchBranches": "Failed to fetch branches",
|
|
325
|
+
"clickToSwitchBranches": "Click to switch branches",
|
|
326
|
+
"noBranch": "No branch",
|
|
327
|
+
"changes": "Changes",
|
|
328
|
+
"discardAllChanges": "Discard All Changes",
|
|
329
|
+
"stageAllChanges": "Stage All Changes",
|
|
330
|
+
"unstageAllChanges": "Unstage All Changes",
|
|
331
|
+
"commitTitle": "Commit title",
|
|
332
|
+
"descriptionOptional": "Description (optional)",
|
|
333
|
+
"syncChanges": "Sync changes",
|
|
334
|
+
"commitChanges": "Commit changes",
|
|
335
|
+
"noChangesToGenerate": "No changes to generate commit message for",
|
|
336
|
+
"generateCommitMessage": "Generate commit message with AI",
|
|
337
|
+
"workingTreeClean": "Working tree clean",
|
|
338
|
+
"addToGitignore": "Add to .gitignore",
|
|
339
|
+
"unstageChanges": "Unstage Changes",
|
|
340
|
+
"discardChanges": "Discard Changes",
|
|
341
|
+
"stageChanges": "Stage Changes",
|
|
342
|
+
"showAllBranches": "Show all branches",
|
|
343
|
+
"showCurrentBranchOnly": "Show current branch only",
|
|
344
|
+
"fetch": "Fetch",
|
|
345
|
+
"searchBranches": "Search branches...",
|
|
346
|
+
"copyFullHash": "Copy full hash",
|
|
347
|
+
"checkoutCommit": "Checkout this commit (detached HEAD state)",
|
|
348
|
+
"createBranchFromCommit": "Create a new branch from this commit",
|
|
349
|
+
"closeAllTabs": "Close all tabs",
|
|
350
|
+
"newFile": "New"
|
|
209
351
|
},
|
|
210
352
|
"settings": {
|
|
211
353
|
"title": "Settings",
|
|
@@ -222,14 +364,73 @@
|
|
|
222
364
|
"agentFactory": "Agent Factory",
|
|
223
365
|
"plugins": "Plugins",
|
|
224
366
|
"installPlugin": "Install Plugin",
|
|
225
|
-
"managePlugins": "Manage Plugins"
|
|
367
|
+
"managePlugins": "Manage Plugins",
|
|
368
|
+
"manageSettings": "Manage your project settings and preferences.",
|
|
369
|
+
"currentProject": "Current Project",
|
|
370
|
+
"claudeApiConfig": "Claude API Configuration",
|
|
371
|
+
"providerConfigured": "A provider is configured",
|
|
372
|
+
"noProviderConfigured": "No provider configured",
|
|
373
|
+
"configure": "Configure",
|
|
374
|
+
"apiAccessKey": "API Access Key",
|
|
375
|
+
"remoteAccessAuth": "Remote Access Authentication",
|
|
376
|
+
"apiKeyConfigured": "An API access key is configured",
|
|
377
|
+
"noApiKeyConfigured": "No API access key configured",
|
|
378
|
+
"setUpProject": "Set Up Project",
|
|
379
|
+
"selectExistingDescription": "Select an existing project folder to open.",
|
|
380
|
+
"configureNewDescription": "Configure a project folder to use with Claude Code.",
|
|
381
|
+
"openExisting": "Open Existing",
|
|
382
|
+
"createNew": "Create New",
|
|
383
|
+
"projectFolder": "Project Folder",
|
|
384
|
+
"openProject": "Open Project",
|
|
385
|
+
"rootFolder": "Root Folder",
|
|
386
|
+
"createProject": "Create Project",
|
|
387
|
+
"projectNameRequired": "Project name is required",
|
|
388
|
+
"rootFolderRequired": "Root folder is required",
|
|
389
|
+
"projectNameAlphanumeric": "Project name must contain at least one alphanumeric character",
|
|
390
|
+
"projectPathRequired": "Project path is required",
|
|
391
|
+
"enterAbsolutePath": "Please enter an absolute path",
|
|
392
|
+
"autoDetected": "(auto-detected)",
|
|
393
|
+
"folderNameHint": "This will be the project folder name",
|
|
394
|
+
"selectParentFolder": "Select the parent folder where project will be created",
|
|
395
|
+
"projectCreatedAt": "Project will be created at:",
|
|
396
|
+
"selectFolder": "Select Folder",
|
|
397
|
+
"navigateAndSelect": "Navigate to and select your project folder",
|
|
398
|
+
"up": "Up",
|
|
399
|
+
"home": "Home",
|
|
400
|
+
"noSubdirectories": "No subdirectories",
|
|
401
|
+
"renameFolderTitle": "Rename folder",
|
|
402
|
+
"selectThisFolder": "Select This Folder",
|
|
403
|
+
"createNewFolder": "Create New Folder",
|
|
404
|
+
"enterFolderNameIn": "Enter a name for the new folder in",
|
|
405
|
+
"folderName": "Folder Name",
|
|
406
|
+
"renameFolder": "Rename Folder",
|
|
407
|
+
"enterNewNameFor": "Enter a new name for",
|
|
408
|
+
"newName": "New Name",
|
|
409
|
+
"folderCreated": "Folder created",
|
|
410
|
+
"createFailed": "Create failed",
|
|
411
|
+
"folderRenamed": "Folder renamed",
|
|
412
|
+
"renameFailed": "Rename failed",
|
|
413
|
+
"setUpWorkspace": "Set Up Your Workspace",
|
|
414
|
+
"setUpWorkspaceDescription": "Configure the essential settings for your workspace. You can always change these later in Settings.",
|
|
415
|
+
"configureAuthDescription": "Configure how to authenticate with Claude API",
|
|
416
|
+
"setUpRemoteAccess": "Set up authentication for remote access",
|
|
417
|
+
"projectSettings": "Project Settings",
|
|
418
|
+
"noProjectsAvailable": "No projects available"
|
|
226
419
|
},
|
|
227
420
|
"auth": {
|
|
228
421
|
"apiKeyRequired": "API Key Required",
|
|
229
422
|
"enterApiKey": "Enter your API key to continue",
|
|
230
423
|
"apiKey": "API Key",
|
|
231
424
|
"verify": "Verify",
|
|
232
|
-
"invalidApiKey": "Invalid API Key"
|
|
425
|
+
"invalidApiKey": "Invalid API Key",
|
|
426
|
+
"apiKeyIsRequired": "API key is required",
|
|
427
|
+
"failedToVerifyApiKey": "Failed to verify API key",
|
|
428
|
+
"serverRequiresApiKey": "This server requires an API key for access. Enter your key to continue.",
|
|
429
|
+
"enterYourApiKey": "Enter your API key",
|
|
430
|
+
"apiKeyStoredLocally": "Your API key will be stored locally in your browser",
|
|
431
|
+
"pressEnterOrSubmit": "Press Enter or click Submit to verify",
|
|
432
|
+
"authenticationError": "Authentication Error",
|
|
433
|
+
"configAgentProvider": "Config Agent Provider"
|
|
233
434
|
},
|
|
234
435
|
"agentFactory": {
|
|
235
436
|
"title": "Agent Factory",
|
|
@@ -242,7 +443,88 @@
|
|
|
242
443
|
"viewFiles": "View Files",
|
|
243
444
|
"compare": "Compare",
|
|
244
445
|
"import": "Import",
|
|
245
|
-
"export": "Export"
|
|
446
|
+
"export": "Export",
|
|
447
|
+
"description": "This is your plugin pool. To install plugins to a specific project, go to Project Settings and select plugins to install.",
|
|
448
|
+
"searchPlugins": "Search plugins...",
|
|
449
|
+
"loadingPlugins": "Loading plugins...",
|
|
450
|
+
"noDescription": "No description",
|
|
451
|
+
"noPluginsFound": "No plugins found",
|
|
452
|
+
"adjustFilters": "Try adjusting your filters or search query",
|
|
453
|
+
"getStartedDiscover": "Get started by discovering existing plugins or creating a new one",
|
|
454
|
+
"deletePluginConfirm": "Are you sure you want to delete this plugin?",
|
|
455
|
+
"skills": "Skills",
|
|
456
|
+
"commands": "Commands",
|
|
457
|
+
"agents": "Agents",
|
|
458
|
+
"agentSets": "Agent Sets",
|
|
459
|
+
"all": "All",
|
|
460
|
+
"discoverPlugins": "Discover Plugins",
|
|
461
|
+
"scanDescription": "Scan your filesystem for existing Claude plugins and import them into Agent Factory.",
|
|
462
|
+
"clickScanToSearch": "Click the Scan button to search for plugins",
|
|
463
|
+
"scan": "Scan",
|
|
464
|
+
"scanningForPlugins": "Scanning for plugins...",
|
|
465
|
+
"noPluginsFoundScan": "No plugins found /skills, /commands, or /agents",
|
|
466
|
+
"rescan": "Rescan",
|
|
467
|
+
"pluginsFound": "plugins found",
|
|
468
|
+
"newStatus": "new",
|
|
469
|
+
"updates": "updates",
|
|
470
|
+
"current": "current",
|
|
471
|
+
"importAll": "Import All",
|
|
472
|
+
"importSelected": "Import {count} Selected",
|
|
473
|
+
"editPlugin": "Edit Plugin",
|
|
474
|
+
"createNewPlugin": "Create New Plugin",
|
|
475
|
+
"updatePluginDescription": "Update the plugin details below.",
|
|
476
|
+
"addPluginDescription": "Add a new plugin to the Agent Factory registry.",
|
|
477
|
+
"type": "Type",
|
|
478
|
+
"skill": "Skill",
|
|
479
|
+
"command": "Command",
|
|
480
|
+
"agent": "Agent",
|
|
481
|
+
"name": "Name",
|
|
482
|
+
"pluginName": "Plugin name",
|
|
483
|
+
"pluginDescription": "Brief description of the plugin",
|
|
484
|
+
"sourcePath": "Source Path",
|
|
485
|
+
"pathAutoGenerated": "Path will be auto-generated based on plugin type and name",
|
|
486
|
+
"storageType": "Storage Type",
|
|
487
|
+
"local": "Local",
|
|
488
|
+
"imported": "Imported",
|
|
489
|
+
"external": "External",
|
|
490
|
+
"update": "Update",
|
|
491
|
+
"details": "Details",
|
|
492
|
+
"files": "Files",
|
|
493
|
+
"noFilesFound": "No files found",
|
|
494
|
+
"reResolve": "Re-resolve",
|
|
495
|
+
"reResolving": "Re-resolving...",
|
|
496
|
+
"noDependenciesFound": "No dependencies found",
|
|
497
|
+
"libraryDependencies": "Library Dependencies",
|
|
498
|
+
"noExternalLibraries": "No external libraries found",
|
|
499
|
+
"installScripts": "Install Scripts",
|
|
500
|
+
"pluginDependencies": "Plugin Dependencies",
|
|
501
|
+
"noPluginDependencies": "No plugin dependencies found",
|
|
502
|
+
"circularDependencies": "Circular dependencies detected",
|
|
503
|
+
"discovered": "Discovered",
|
|
504
|
+
"pluginDetails": "Plugin details and files",
|
|
505
|
+
"discoveredPluginDetails": "Discovered plugin details and files",
|
|
506
|
+
"metadata": "Metadata",
|
|
507
|
+
"storage": "Storage:",
|
|
508
|
+
"failedToLoadFiles": "Failed to load files",
|
|
509
|
+
"failedToLoadFile": "Failed to load file",
|
|
510
|
+
"failedToLoadDependencies": "Failed to load dependencies",
|
|
511
|
+
"failedToReResolveDependencies": "Failed to re-resolve dependencies",
|
|
512
|
+
"failedToAnalyzeDependencies": "Failed to analyze dependencies",
|
|
513
|
+
"failedToUninstallComponent": "Failed to uninstall component",
|
|
514
|
+
"cycle": "Cycle",
|
|
515
|
+
"missing": "Missing",
|
|
516
|
+
"maxDepth": "Max depth",
|
|
517
|
+
"confirmImport": "Confirm Import",
|
|
518
|
+
"importFromArchive": "Import Plugins from Archive",
|
|
519
|
+
"analyzingArchive": "Analyzing archive...",
|
|
520
|
+
"clickToUploadOrDrag": "Click to upload or drag and drop",
|
|
521
|
+
"supportedFormats": ".zip, .tar, .gz, .gzip, or .tgz files",
|
|
522
|
+
"invalidFileType": "Invalid file type. Please upload a .zip, .tar, .gz, .gzip, or .tgz file.",
|
|
523
|
+
"automaticOrganization": "Automatic Organization:",
|
|
524
|
+
"itemsToImport": "Items to import",
|
|
525
|
+
"archiveAnalyzed": "Archive analyzed successfully. Click Import to add these plugins to your Agent Factory.",
|
|
526
|
+
"importingPlugins": "Importing plugins...",
|
|
527
|
+
"importGlobally": "Import Globally"
|
|
246
528
|
},
|
|
247
529
|
"shells": {
|
|
248
530
|
"newShell": "New Shell",
|
|
@@ -250,7 +532,17 @@
|
|
|
250
532
|
"exited": "Exited",
|
|
251
533
|
"restart": "Restart",
|
|
252
534
|
"kill": "Kill",
|
|
253
|
-
"clearOutput": "Clear Output"
|
|
535
|
+
"clearOutput": "Clear Output",
|
|
536
|
+
"creatingTerminal": "Creating terminal...",
|
|
537
|
+
"failedToCreateTerminal": "Failed to create terminal",
|
|
538
|
+
"copiedToClipboard": "Copied to clipboard",
|
|
539
|
+
"failedToCopy": "Failed to copy",
|
|
540
|
+
"stopShell": "Stop shell",
|
|
541
|
+
"selectionMode": "Selection mode",
|
|
542
|
+
"newTerminal": "New Terminal",
|
|
543
|
+
"sendCtrlC": "Send Ctrl+C (SIGINT)",
|
|
544
|
+
"closePanel": "Close Panel",
|
|
545
|
+
"clipboardDenied": "Clipboard access denied — use the shortcut bar Paste button on mobile"
|
|
254
546
|
},
|
|
255
547
|
"chat": {
|
|
256
548
|
"taskCompleted": "Task completed!",
|
|
@@ -289,7 +581,19 @@
|
|
|
289
581
|
"commandsHint": "commands",
|
|
290
582
|
"filesHint": "files",
|
|
291
583
|
"pasteImageHint": "paste image",
|
|
292
|
-
"cancelled": "Cancelled"
|
|
584
|
+
"cancelled": "Cancelled",
|
|
585
|
+
"detachToFloating": "Detach to floating window",
|
|
586
|
+
"maximizeToPanel": "Maximize to panel",
|
|
587
|
+
"clearConversation": "Clear Conversation",
|
|
588
|
+
"clearConversationConfirm": "Are you sure you want to clear all messages? This cannot be undone.",
|
|
589
|
+
"compactConversation": "Compact Conversation",
|
|
590
|
+
"compactConversationConfirm": "This will summarize the conversation to save context space. Continue?",
|
|
591
|
+
"compact": "Compact",
|
|
592
|
+
"typeYourAnswer": "Type your answer...",
|
|
593
|
+
"rewoundToCheckpoint": "Rewound conversation & files to checkpoint",
|
|
594
|
+
"rewoundConversationOnly": "Rewound conversation only",
|
|
595
|
+
"rewoundConversation": "Rewound conversation to checkpoint",
|
|
596
|
+
"waitForUpload": "Please wait for files to finish uploading"
|
|
293
597
|
},
|
|
294
598
|
"agentProvider": {
|
|
295
599
|
"configureTitle": "Configure Agent Provider",
|
|
@@ -299,7 +603,49 @@
|
|
|
299
603
|
"currentConfiguration": "Current Configuration",
|
|
300
604
|
"loading": "Loading...",
|
|
301
605
|
"activeProcessEnv": "Active process.env values:",
|
|
302
|
-
"noProviderConfig": "No provider configuration loaded"
|
|
606
|
+
"noProviderConfig": "No provider configuration loaded",
|
|
607
|
+
"loginWithClaude": "Login with Claude Account",
|
|
608
|
+
"forClaudeSubscribers": "For Claude Pro, Max, Team, or Enterprise subscribers",
|
|
609
|
+
"anthropicConsole": "Anthropic Console Account",
|
|
610
|
+
"payAsYouGo": "Pay-as-you-go API usage billing",
|
|
611
|
+
"claudeCodeSettings": "Claude Code Settings",
|
|
612
|
+
"useSettingsJson": "Use settings.json configuration",
|
|
613
|
+
"customApiKey": "Custom API Key",
|
|
614
|
+
"useOwnApiKey": "Use your own Anthropic API key",
|
|
615
|
+
"howToLoginOAuth": "How to login with OAuth:",
|
|
616
|
+
"ensureSubscription": "Make sure you have a Claude Pro, Max, Team, or Enterprise subscription",
|
|
617
|
+
"openTerminal": "Open a terminal on your server",
|
|
618
|
+
"runClaudeLogin": "Run:",
|
|
619
|
+
"chooseOAuthOption": "1. Claude account with subscription · Pro, Max, Team, or Enterprise",
|
|
620
|
+
"followAuthFlow": "Follow the browser authentication flow",
|
|
621
|
+
"restartAfterLogin": "Restart the application after login",
|
|
622
|
+
"loggedInReload": "I've Logged In - Reload",
|
|
623
|
+
"howToUseConsole": "How to use Anthropic Console account:",
|
|
624
|
+
"chooseConsoleOption": "2. Anthropic Console account · API usage billing",
|
|
625
|
+
"usingClaudeCodeSettings": "Using Claude Code Settings",
|
|
626
|
+
"settingsFileDescription": "This method uses the configuration from your Claude Code settings file:",
|
|
627
|
+
"linuxMacOs": "Linux/macOS:",
|
|
628
|
+
"windows": "Windows:",
|
|
629
|
+
"envVarsDescription": "The following environment variables are read from the env section:",
|
|
630
|
+
"required": "required",
|
|
631
|
+
"settingsConfigured": "Settings.json is configured and will be used for authentication.",
|
|
632
|
+
"settingsNotConfigured": "Settings.json does not contain ANTHROPIC_AUTH_TOKEN. Add it to use this method.",
|
|
633
|
+
"reloadToApply": "Reload to Apply",
|
|
634
|
+
"leaveEmptyToKeep": "Leave empty to keep existing key",
|
|
635
|
+
"existingKeyHint": "An API key is already configured. Leave empty to keep it, or enter a new one to replace it.",
|
|
636
|
+
"fillDefaultValues": "Fill Default Values",
|
|
637
|
+
"baseUrl": "Base URL",
|
|
638
|
+
"defaultModel": "Default Model",
|
|
639
|
+
"haikuModel": "Haiku Model",
|
|
640
|
+
"sonnetModel": "Sonnet Model",
|
|
641
|
+
"opusModel": "Opus Model",
|
|
642
|
+
"apiTimeout": "API Timeout (ms)",
|
|
643
|
+
"configSavedToEnv": "Configuration will be saved to .env file in the app directory. Empty fields will use default values.",
|
|
644
|
+
"dismissProvider": "Dismiss This Provider",
|
|
645
|
+
"areYouSure": "Are you sure?",
|
|
646
|
+
"yesDismiss": "Yes, Dismiss",
|
|
647
|
+
"saveConfiguration": "Save Configuration",
|
|
648
|
+
"afterLoginHint": "After logging in on claude.ai, run \"claude login\" in your terminal to authenticate."
|
|
303
649
|
},
|
|
304
650
|
"accessAnywhere": {
|
|
305
651
|
"title": "Access Anywhere",
|
|
@@ -395,6 +741,22 @@
|
|
|
395
741
|
"apiKeyRequired": "API key is required",
|
|
396
742
|
"cancel": "Cancel",
|
|
397
743
|
"saving": "Saving...",
|
|
398
|
-
"saveAndContinue": "Save & Continue"
|
|
744
|
+
"saveAndContinue": "Save & Continue",
|
|
745
|
+
"failedToSaveApiKey": "Failed to save API key",
|
|
746
|
+
"noTunnelConfig": "No tunnel configuration found. Please set up Access Anywhere first.",
|
|
747
|
+
"failedToStartTunnel": "Failed to start tunnel",
|
|
748
|
+
"failedToRegisterSubdomain": "Failed to register subdomain",
|
|
749
|
+
"failedToConfirmSubdomain": "Failed to confirm subdomain",
|
|
750
|
+
"confirmationCodeIsRequired": "Confirmation code is required"
|
|
751
|
+
},
|
|
752
|
+
"notFound": {
|
|
753
|
+
"title": "404 - Page Not Found",
|
|
754
|
+
"description": "The page you're looking for doesn't exist.",
|
|
755
|
+
"goHome": "Go back home"
|
|
756
|
+
},
|
|
757
|
+
"globalError": {
|
|
758
|
+
"title": "Something went wrong!",
|
|
759
|
+
"fallbackMessage": "An unexpected error occurred",
|
|
760
|
+
"tryAgain": "Try again"
|
|
399
761
|
}
|
|
400
762
|
}
|