reigncode-app 1.3.2
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/AGENTS.md +30 -0
- package/Dockerfile +21 -0
- package/README.md +51 -0
- package/bunfig.toml +3 -0
- package/create-effect-simplification-spec.md +515 -0
- package/e2e/AGENTS.md +226 -0
- package/e2e/actions.ts +1018 -0
- package/e2e/app/home.spec.ts +24 -0
- package/e2e/app/navigation.spec.ts +10 -0
- package/e2e/app/palette.spec.ts +20 -0
- package/e2e/app/server-default.spec.ts +58 -0
- package/e2e/app/session.spec.ts +16 -0
- package/e2e/app/titlebar-history.spec.ts +120 -0
- package/e2e/commands/input-focus.spec.ts +15 -0
- package/e2e/commands/panels.spec.ts +33 -0
- package/e2e/commands/tab-close.spec.ts +32 -0
- package/e2e/files/file-open.spec.ts +31 -0
- package/e2e/files/file-tree.spec.ts +56 -0
- package/e2e/files/file-viewer.spec.ts +156 -0
- package/e2e/fixtures.ts +154 -0
- package/e2e/models/model-picker.spec.ts +48 -0
- package/e2e/models/models-visibility.spec.ts +61 -0
- package/e2e/projects/project-edit.spec.ts +43 -0
- package/e2e/projects/projects-close.spec.ts +54 -0
- package/e2e/projects/projects-switch.spec.ts +116 -0
- package/e2e/projects/workspace-new-session.spec.ts +94 -0
- package/e2e/projects/workspaces.spec.ts +375 -0
- package/e2e/prompt/context.spec.ts +95 -0
- package/e2e/prompt/prompt-async.spec.ts +76 -0
- package/e2e/prompt/prompt-drop-file-uri.spec.ts +22 -0
- package/e2e/prompt/prompt-drop-file.spec.ts +30 -0
- package/e2e/prompt/prompt-history.spec.ts +184 -0
- package/e2e/prompt/prompt-mention.spec.ts +26 -0
- package/e2e/prompt/prompt-multiline.spec.ts +24 -0
- package/e2e/prompt/prompt-shell.spec.ts +62 -0
- package/e2e/prompt/prompt-slash-open.spec.ts +22 -0
- package/e2e/prompt/prompt-slash-share.spec.ts +64 -0
- package/e2e/prompt/prompt-slash-terminal.spec.ts +18 -0
- package/e2e/prompt/prompt.spec.ts +55 -0
- package/e2e/selectors.ts +75 -0
- package/e2e/session/session-child-navigation.spec.ts +37 -0
- package/e2e/session/session-composer-dock.spec.ts +530 -0
- package/e2e/session/session-model-persistence.spec.ts +359 -0
- package/e2e/session/session-review.spec.ts +426 -0
- package/e2e/session/session-undo-redo.spec.ts +233 -0
- package/e2e/session/session.spec.ts +174 -0
- package/e2e/settings/settings-keybinds.spec.ts +389 -0
- package/e2e/settings/settings-models.spec.ts +122 -0
- package/e2e/settings/settings-providers.spec.ts +136 -0
- package/e2e/settings/settings.spec.ts +519 -0
- package/e2e/sidebar/sidebar-popover-actions.spec.ts +118 -0
- package/e2e/sidebar/sidebar-session-links.spec.ts +30 -0
- package/e2e/sidebar/sidebar.spec.ts +40 -0
- package/e2e/status/status-popover.spec.ts +94 -0
- package/e2e/terminal/terminal-init.spec.ts +28 -0
- package/e2e/terminal/terminal-reconnect.spec.ts +46 -0
- package/e2e/terminal/terminal-tabs.spec.ts +168 -0
- package/e2e/terminal/terminal.spec.ts +18 -0
- package/e2e/thinking-level.spec.ts +25 -0
- package/e2e/tsconfig.json +9 -0
- package/e2e/utils.ts +63 -0
- package/happydom.ts +75 -0
- package/index.html +23 -0
- package/package.json +77 -0
- package/playwright.config.ts +45 -0
- package/public/_headers +17 -0
- package/public/oc-theme-preload.js +35 -0
- package/script/e2e-local.ts +180 -0
- package/src/addons/serialize.test.ts +319 -0
- package/src/addons/serialize.ts +634 -0
- package/src/app.tsx +308 -0
- package/src/components/debug-bar.tsx +443 -0
- package/src/components/dialog-connect-provider.tsx +617 -0
- package/src/components/dialog-custom-provider-form.ts +158 -0
- package/src/components/dialog-custom-provider.test.ts +80 -0
- package/src/components/dialog-custom-provider.tsx +329 -0
- package/src/components/dialog-edit-project.tsx +255 -0
- package/src/components/dialog-fork.tsx +108 -0
- package/src/components/dialog-manage-models.tsx +101 -0
- package/src/components/dialog-release-notes.tsx +144 -0
- package/src/components/dialog-select-directory.tsx +392 -0
- package/src/components/dialog-select-file.tsx +466 -0
- package/src/components/dialog-select-mcp.tsx +107 -0
- package/src/components/dialog-select-model-unpaid.tsx +137 -0
- package/src/components/dialog-select-model.tsx +220 -0
- package/src/components/dialog-select-provider.tsx +86 -0
- package/src/components/dialog-select-server.tsx +649 -0
- package/src/components/dialog-settings.tsx +73 -0
- package/src/components/file-tree.test.ts +78 -0
- package/src/components/file-tree.tsx +507 -0
- package/src/components/link.tsx +26 -0
- package/src/components/model-tooltip.tsx +91 -0
- package/src/components/prompt-input/attachments.test.ts +44 -0
- package/src/components/prompt-input/attachments.ts +201 -0
- package/src/components/prompt-input/build-request-parts.test.ts +312 -0
- package/src/components/prompt-input/build-request-parts.ts +175 -0
- package/src/components/prompt-input/context-items.tsx +88 -0
- package/src/components/prompt-input/drag-overlay.tsx +25 -0
- package/src/components/prompt-input/editor-dom.test.ts +99 -0
- package/src/components/prompt-input/editor-dom.ts +148 -0
- package/src/components/prompt-input/files.ts +66 -0
- package/src/components/prompt-input/history.test.ts +153 -0
- package/src/components/prompt-input/history.ts +256 -0
- package/src/components/prompt-input/image-attachments.tsx +58 -0
- package/src/components/prompt-input/paste.ts +24 -0
- package/src/components/prompt-input/placeholder.test.ts +48 -0
- package/src/components/prompt-input/placeholder.ts +15 -0
- package/src/components/prompt-input/slash-popover.tsx +141 -0
- package/src/components/prompt-input/submit.test.ts +346 -0
- package/src/components/prompt-input/submit.ts +579 -0
- package/src/components/prompt-input.tsx +1595 -0
- package/src/components/server/server-row.tsx +130 -0
- package/src/components/session/index.ts +5 -0
- package/src/components/session/session-context-breakdown.test.ts +61 -0
- package/src/components/session/session-context-breakdown.ts +132 -0
- package/src/components/session/session-context-format.ts +20 -0
- package/src/components/session/session-context-metrics.test.ts +101 -0
- package/src/components/session/session-context-metrics.ts +82 -0
- package/src/components/session/session-context-tab.tsx +339 -0
- package/src/components/session/session-header.tsx +486 -0
- package/src/components/session/session-new-view.tsx +91 -0
- package/src/components/session/session-sortable-tab.tsx +70 -0
- package/src/components/session/session-sortable-terminal-tab.tsx +193 -0
- package/src/components/session-context-usage.tsx +122 -0
- package/src/components/settings-general.tsx +585 -0
- package/src/components/settings-keybinds.tsx +453 -0
- package/src/components/settings-list.tsx +5 -0
- package/src/components/settings-models.tsx +137 -0
- package/src/components/settings-providers.tsx +251 -0
- package/src/components/status-popover.tsx +419 -0
- package/src/components/terminal.tsx +653 -0
- package/src/components/titlebar-history.test.ts +63 -0
- package/src/components/titlebar-history.ts +57 -0
- package/src/components/titlebar.tsx +312 -0
- package/src/constants/file-picker.ts +89 -0
- package/src/context/command-keybind.test.ts +69 -0
- package/src/context/command.test.ts +25 -0
- package/src/context/command.tsx +437 -0
- package/src/context/comments.test.ts +186 -0
- package/src/context/comments.tsx +243 -0
- package/src/context/file/content-cache.ts +88 -0
- package/src/context/file/path.test.ts +360 -0
- package/src/context/file/path.ts +151 -0
- package/src/context/file/tree-store.ts +170 -0
- package/src/context/file/types.ts +41 -0
- package/src/context/file/view-cache.ts +146 -0
- package/src/context/file/watcher.test.ts +149 -0
- package/src/context/file/watcher.ts +53 -0
- package/src/context/file-content-eviction-accounting.test.ts +65 -0
- package/src/context/file.tsx +280 -0
- package/src/context/global-sdk.tsx +232 -0
- package/src/context/global-sync/bootstrap.ts +206 -0
- package/src/context/global-sync/child-store.test.ts +38 -0
- package/src/context/global-sync/child-store.ts +281 -0
- package/src/context/global-sync/event-reducer.test.ts +552 -0
- package/src/context/global-sync/event-reducer.ts +359 -0
- package/src/context/global-sync/eviction.ts +28 -0
- package/src/context/global-sync/queue.ts +83 -0
- package/src/context/global-sync/session-cache.test.ts +102 -0
- package/src/context/global-sync/session-cache.ts +62 -0
- package/src/context/global-sync/session-load.ts +25 -0
- package/src/context/global-sync/session-prefetch.test.ts +96 -0
- package/src/context/global-sync/session-prefetch.ts +100 -0
- package/src/context/global-sync/session-trim.test.ts +59 -0
- package/src/context/global-sync/session-trim.ts +56 -0
- package/src/context/global-sync/types.ts +133 -0
- package/src/context/global-sync/utils.ts +25 -0
- package/src/context/global-sync.test.ts +122 -0
- package/src/context/global-sync.tsx +408 -0
- package/src/context/highlights.tsx +233 -0
- package/src/context/language.tsx +248 -0
- package/src/context/layout-scroll.test.ts +64 -0
- package/src/context/layout-scroll.ts +126 -0
- package/src/context/layout.test.ts +69 -0
- package/src/context/layout.tsx +937 -0
- package/src/context/local.tsx +422 -0
- package/src/context/model-variant.test.ts +86 -0
- package/src/context/model-variant.ts +52 -0
- package/src/context/models.tsx +163 -0
- package/src/context/notification.tsx +373 -0
- package/src/context/permission-auto-respond.test.ts +102 -0
- package/src/context/permission-auto-respond.ts +51 -0
- package/src/context/permission.tsx +277 -0
- package/src/context/platform.tsx +99 -0
- package/src/context/prompt.tsx +297 -0
- package/src/context/sdk.tsx +49 -0
- package/src/context/server.tsx +295 -0
- package/src/context/settings.tsx +241 -0
- package/src/context/sync-optimistic.test.ts +123 -0
- package/src/context/sync.tsx +618 -0
- package/src/context/terminal-title.ts +51 -0
- package/src/context/terminal.test.ts +82 -0
- package/src/context/terminal.tsx +437 -0
- package/src/entry.tsx +144 -0
- package/src/env.d.ts +18 -0
- package/src/hooks/use-providers.ts +44 -0
- package/src/i18n/ar.ts +855 -0
- package/src/i18n/br.ts +867 -0
- package/src/i18n/bs.ts +943 -0
- package/src/i18n/da.ts +937 -0
- package/src/i18n/de.ts +879 -0
- package/src/i18n/en.ts +948 -0
- package/src/i18n/es.ts +950 -0
- package/src/i18n/fr.ts +878 -0
- package/src/i18n/ja.ts +861 -0
- package/src/i18n/ko.ts +860 -0
- package/src/i18n/no.ts +944 -0
- package/src/i18n/parity.test.ts +32 -0
- package/src/i18n/pl.ts +865 -0
- package/src/i18n/ru.ts +946 -0
- package/src/i18n/th.ts +933 -0
- package/src/i18n/tr.ts +952 -0
- package/src/i18n/zh.ts +930 -0
- package/src/i18n/zht.ts +925 -0
- package/src/index.css +29 -0
- package/src/index.ts +6 -0
- package/src/pages/directory-layout.tsx +88 -0
- package/src/pages/error.tsx +327 -0
- package/src/pages/home.tsx +131 -0
- package/src/pages/layout/deep-links.ts +50 -0
- package/src/pages/layout/helpers.test.ts +211 -0
- package/src/pages/layout/helpers.ts +98 -0
- package/src/pages/layout/inline-editor.tsx +126 -0
- package/src/pages/layout/sidebar-items.tsx +437 -0
- package/src/pages/layout/sidebar-project.tsx +384 -0
- package/src/pages/layout/sidebar-shell.tsx +125 -0
- package/src/pages/layout/sidebar-workspace.tsx +504 -0
- package/src/pages/layout.tsx +2509 -0
- package/src/pages/session/composer/index.ts +2 -0
- package/src/pages/session/composer/session-composer-region.tsx +255 -0
- package/src/pages/session/composer/session-composer-state.test.ts +128 -0
- package/src/pages/session/composer/session-composer-state.ts +249 -0
- package/src/pages/session/composer/session-followup-dock.tsx +109 -0
- package/src/pages/session/composer/session-permission-dock.tsx +74 -0
- package/src/pages/session/composer/session-question-dock.tsx +449 -0
- package/src/pages/session/composer/session-request-tree.ts +52 -0
- package/src/pages/session/composer/session-revert-dock.tsx +99 -0
- package/src/pages/session/composer/session-todo-dock.tsx +330 -0
- package/src/pages/session/file-tab-scroll.test.ts +40 -0
- package/src/pages/session/file-tab-scroll.ts +67 -0
- package/src/pages/session/file-tabs.tsx +456 -0
- package/src/pages/session/handoff.ts +36 -0
- package/src/pages/session/helpers.test.ts +181 -0
- package/src/pages/session/helpers.ts +198 -0
- package/src/pages/session/message-gesture.test.ts +62 -0
- package/src/pages/session/message-gesture.ts +21 -0
- package/src/pages/session/message-id-from-hash.ts +6 -0
- package/src/pages/session/message-timeline.tsx +1013 -0
- package/src/pages/session/review-tab.tsx +170 -0
- package/src/pages/session/session-layout.ts +20 -0
- package/src/pages/session/session-model-helpers.test.ts +51 -0
- package/src/pages/session/session-model-helpers.ts +16 -0
- package/src/pages/session/session-side-panel.tsx +453 -0
- package/src/pages/session/terminal-label.ts +16 -0
- package/src/pages/session/terminal-panel.test.ts +25 -0
- package/src/pages/session/terminal-panel.tsx +326 -0
- package/src/pages/session/use-session-commands.tsx +495 -0
- package/src/pages/session/use-session-hash-scroll.test.ts +16 -0
- package/src/pages/session/use-session-hash-scroll.ts +197 -0
- package/src/pages/session.tsx +1841 -0
- package/src/sst-env.d.ts +12 -0
- package/src/testing/model-selection.ts +80 -0
- package/src/testing/prompt.ts +56 -0
- package/src/testing/session-composer.ts +84 -0
- package/src/testing/terminal.ts +118 -0
- package/src/theme-preload.test.ts +46 -0
- package/src/utils/agent.ts +23 -0
- package/src/utils/aim.ts +138 -0
- package/src/utils/base64.ts +10 -0
- package/src/utils/comment-note.ts +88 -0
- package/src/utils/id.ts +99 -0
- package/src/utils/notification-click.test.ts +27 -0
- package/src/utils/notification-click.ts +13 -0
- package/src/utils/persist.test.ts +115 -0
- package/src/utils/persist.ts +476 -0
- package/src/utils/prompt.test.ts +44 -0
- package/src/utils/prompt.ts +203 -0
- package/src/utils/runtime-adapters.test.ts +62 -0
- package/src/utils/runtime-adapters.ts +39 -0
- package/src/utils/same.ts +6 -0
- package/src/utils/scoped-cache.test.ts +69 -0
- package/src/utils/scoped-cache.ts +104 -0
- package/src/utils/server-errors.test.ts +131 -0
- package/src/utils/server-errors.ts +80 -0
- package/src/utils/server-health.test.ts +123 -0
- package/src/utils/server-health.ts +91 -0
- package/src/utils/server.ts +22 -0
- package/src/utils/solid-dnd.tsx +49 -0
- package/src/utils/sound.ts +117 -0
- package/src/utils/terminal-writer.test.ts +64 -0
- package/src/utils/terminal-writer.ts +65 -0
- package/src/utils/time.ts +22 -0
- package/src/utils/uuid.test.ts +78 -0
- package/src/utils/uuid.ts +12 -0
- package/src/utils/worktree.test.ts +46 -0
- package/src/utils/worktree.ts +73 -0
- package/sst-env.d.ts +10 -0
- package/tsconfig.json +26 -0
- package/vite.config.ts +15 -0
- package/vite.js +26 -0
package/src/i18n/en.ts
ADDED
|
@@ -0,0 +1,948 @@
|
|
|
1
|
+
export const dict = {
|
|
2
|
+
"command.category.suggested": "Suggested",
|
|
3
|
+
"command.category.view": "View",
|
|
4
|
+
"command.category.project": "Project",
|
|
5
|
+
"command.category.provider": "Provider",
|
|
6
|
+
"command.category.server": "Server",
|
|
7
|
+
"command.category.session": "Session",
|
|
8
|
+
"command.category.theme": "Theme",
|
|
9
|
+
"command.category.language": "Language",
|
|
10
|
+
"command.category.file": "File",
|
|
11
|
+
"command.category.context": "Context",
|
|
12
|
+
"command.category.terminal": "Terminal",
|
|
13
|
+
"command.category.model": "Model",
|
|
14
|
+
"command.category.mcp": "MCP",
|
|
15
|
+
"command.category.agent": "Agent",
|
|
16
|
+
"command.category.permissions": "Permissions",
|
|
17
|
+
"command.category.workspace": "Workspace",
|
|
18
|
+
"command.category.settings": "Settings",
|
|
19
|
+
|
|
20
|
+
"theme.scheme.system": "System",
|
|
21
|
+
"theme.scheme.light": "Light",
|
|
22
|
+
"theme.scheme.dark": "Dark",
|
|
23
|
+
|
|
24
|
+
"command.sidebar.toggle": "Toggle sidebar",
|
|
25
|
+
"command.project.open": "Open project",
|
|
26
|
+
"command.project.previous": "Previous project",
|
|
27
|
+
"command.project.next": "Next project",
|
|
28
|
+
"command.provider.connect": "Connect provider",
|
|
29
|
+
"command.server.switch": "Switch server",
|
|
30
|
+
"command.settings.open": "Open settings",
|
|
31
|
+
"command.session.previous": "Previous session",
|
|
32
|
+
"command.session.next": "Next session",
|
|
33
|
+
"command.session.previous.unseen": "Previous unread session",
|
|
34
|
+
"command.session.next.unseen": "Next unread session",
|
|
35
|
+
"command.session.archive": "Archive session",
|
|
36
|
+
|
|
37
|
+
"command.palette": "Command palette",
|
|
38
|
+
|
|
39
|
+
"command.theme.cycle": "Cycle theme",
|
|
40
|
+
"command.theme.set": "Use theme: {{theme}}",
|
|
41
|
+
"command.theme.scheme.cycle": "Cycle color scheme",
|
|
42
|
+
"command.theme.scheme.set": "Use color scheme: {{scheme}}",
|
|
43
|
+
|
|
44
|
+
"command.language.cycle": "Cycle language",
|
|
45
|
+
"command.language.set": "Use language: {{language}}",
|
|
46
|
+
|
|
47
|
+
"command.session.new": "New session",
|
|
48
|
+
"command.file.open": "Open file",
|
|
49
|
+
"command.tab.close": "Close tab",
|
|
50
|
+
"command.context.addSelection": "Add selection to context",
|
|
51
|
+
"command.context.addSelection.description": "Add selected lines from the current file",
|
|
52
|
+
"command.input.focus": "Focus input",
|
|
53
|
+
"command.terminal.toggle": "Toggle terminal",
|
|
54
|
+
"command.fileTree.toggle": "Toggle file tree",
|
|
55
|
+
"command.review.toggle": "Toggle review",
|
|
56
|
+
"command.terminal.new": "New terminal",
|
|
57
|
+
"command.terminal.new.description": "Create a new terminal tab",
|
|
58
|
+
"command.steps.toggle": "Toggle steps",
|
|
59
|
+
"command.steps.toggle.description": "Show or hide steps for the current message",
|
|
60
|
+
"command.message.previous": "Previous message",
|
|
61
|
+
"command.message.previous.description": "Go to the previous user message",
|
|
62
|
+
"command.message.next": "Next message",
|
|
63
|
+
"command.message.next.description": "Go to the next user message",
|
|
64
|
+
"command.model.choose": "Choose model",
|
|
65
|
+
"command.model.choose.description": "Select a different model",
|
|
66
|
+
"command.mcp.toggle": "Toggle MCPs",
|
|
67
|
+
"command.mcp.toggle.description": "Toggle MCPs",
|
|
68
|
+
"command.agent.cycle": "Cycle agent",
|
|
69
|
+
"command.agent.cycle.description": "Switch to the next agent",
|
|
70
|
+
"command.agent.cycle.reverse": "Cycle agent backwards",
|
|
71
|
+
"command.agent.cycle.reverse.description": "Switch to the previous agent",
|
|
72
|
+
"command.model.variant.cycle": "Cycle thinking effort",
|
|
73
|
+
"command.model.variant.cycle.description": "Switch to the next effort level",
|
|
74
|
+
"command.prompt.mode.shell": "Shell",
|
|
75
|
+
"command.prompt.mode.normal": "Prompt",
|
|
76
|
+
"command.permissions.autoaccept.enable": "Auto-accept permissions",
|
|
77
|
+
"command.permissions.autoaccept.disable": "Stop auto-accepting permissions",
|
|
78
|
+
"command.workspace.toggle": "Toggle workspaces",
|
|
79
|
+
"command.workspace.toggle.description": "Enable or disable multiple workspaces in the sidebar",
|
|
80
|
+
"command.session.undo": "Undo",
|
|
81
|
+
"command.session.undo.description": "Undo the last message",
|
|
82
|
+
"command.session.redo": "Redo",
|
|
83
|
+
"command.session.redo.description": "Redo the last undone message",
|
|
84
|
+
"command.session.compact": "Compact session",
|
|
85
|
+
"command.session.compact.description": "Summarize the session to reduce context size",
|
|
86
|
+
"command.session.fork": "Fork from message",
|
|
87
|
+
"command.session.fork.description": "Create a new session from a previous message",
|
|
88
|
+
"command.session.share": "Share session",
|
|
89
|
+
"command.session.share.description": "Share this session and copy the URL to clipboard",
|
|
90
|
+
"command.session.unshare": "Unshare session",
|
|
91
|
+
"command.session.unshare.description": "Stop sharing this session",
|
|
92
|
+
|
|
93
|
+
"palette.search.placeholder": "Search files, commands, and sessions",
|
|
94
|
+
"palette.empty": "No results found",
|
|
95
|
+
"palette.group.commands": "Commands",
|
|
96
|
+
"palette.group.files": "Files",
|
|
97
|
+
|
|
98
|
+
"dialog.provider.search.placeholder": "Search providers",
|
|
99
|
+
"dialog.provider.empty": "No providers found",
|
|
100
|
+
"dialog.provider.group.popular": "Popular",
|
|
101
|
+
"dialog.provider.group.other": "Other",
|
|
102
|
+
"dialog.provider.tag.recommended": "Recommended",
|
|
103
|
+
"dialog.provider.opencode.note": "Curated models including Claude, GPT, Gemini and more",
|
|
104
|
+
"dialog.provider.opencode.tagline": "Reliable optimized models",
|
|
105
|
+
"dialog.provider.opencodeGo.tagline": "Low cost subscription for everyone",
|
|
106
|
+
"dialog.provider.anthropic.note": "Direct access to Claude models, including Pro and Max",
|
|
107
|
+
"dialog.provider.copilot.note": "AI models for coding assistance via GitHub Copilot",
|
|
108
|
+
"dialog.provider.openai.note": "GPT models for fast, capable general AI tasks",
|
|
109
|
+
"dialog.provider.google.note": "Gemini models for fast, structured responses",
|
|
110
|
+
"dialog.provider.openrouter.note": "Access all supported models from one provider",
|
|
111
|
+
"dialog.provider.vercel.note": "Unified access to AI models with smart routing",
|
|
112
|
+
|
|
113
|
+
"dialog.model.select.title": "Select model",
|
|
114
|
+
"dialog.model.search.placeholder": "Search models",
|
|
115
|
+
"dialog.model.empty": "No model results",
|
|
116
|
+
"dialog.model.manage": "Manage models",
|
|
117
|
+
"dialog.model.manage.description": "Customize which models appear in the model selector.",
|
|
118
|
+
"dialog.model.manage.provider.toggle": "Toggle all {{provider}} models",
|
|
119
|
+
|
|
120
|
+
"dialog.model.unpaid.freeModels.title": "Free models provided by OpenCode",
|
|
121
|
+
"dialog.model.unpaid.addMore.title": "Add more models from popular providers",
|
|
122
|
+
|
|
123
|
+
"dialog.provider.viewAll": "Show more providers",
|
|
124
|
+
|
|
125
|
+
"provider.connect.title": "Connect {{provider}}",
|
|
126
|
+
"provider.connect.title.anthropicProMax": "Login with Claude Pro/Max",
|
|
127
|
+
"provider.connect.selectMethod": "Select login method for {{provider}}.",
|
|
128
|
+
"provider.connect.method.apiKey": "API key",
|
|
129
|
+
"provider.connect.status.inProgress": "Authorization in progress...",
|
|
130
|
+
"provider.connect.status.waiting": "Waiting for authorization...",
|
|
131
|
+
"provider.connect.status.failed": "Authorization failed: {{error}}",
|
|
132
|
+
"provider.connect.apiKey.description":
|
|
133
|
+
"Enter your {{provider}} API key to connect your account and use {{provider}} models in OpenCode.",
|
|
134
|
+
"provider.connect.apiKey.label": "{{provider}} API key",
|
|
135
|
+
"provider.connect.apiKey.placeholder": "API key",
|
|
136
|
+
"provider.connect.apiKey.required": "API key is required",
|
|
137
|
+
"provider.connect.opencodeZen.line1":
|
|
138
|
+
"OpenCode Zen gives you access to a curated set of reliable optimized models for coding agents.",
|
|
139
|
+
"provider.connect.opencodeZen.line2":
|
|
140
|
+
"With a single API key you'll get access to models such as Claude, GPT, Gemini, GLM and more.",
|
|
141
|
+
"provider.connect.opencodeZen.visit.prefix": "Visit ",
|
|
142
|
+
"provider.connect.opencodeZen.visit.link": "code.reign-labs.com/zen",
|
|
143
|
+
"provider.connect.opencodeZen.visit.suffix": " to collect your API key.",
|
|
144
|
+
"provider.connect.oauth.code.visit.prefix": "Visit ",
|
|
145
|
+
"provider.connect.oauth.code.visit.link": "this link",
|
|
146
|
+
"provider.connect.oauth.code.visit.suffix":
|
|
147
|
+
" to collect your authorization code to connect your account and use {{provider}} models in OpenCode.",
|
|
148
|
+
"provider.connect.oauth.code.label": "{{method}} authorization code",
|
|
149
|
+
"provider.connect.oauth.code.placeholder": "Authorization code",
|
|
150
|
+
"provider.connect.oauth.code.required": "Authorization code is required",
|
|
151
|
+
"provider.connect.oauth.code.invalid": "Invalid authorization code",
|
|
152
|
+
"provider.connect.oauth.auto.visit.prefix": "Visit ",
|
|
153
|
+
"provider.connect.oauth.auto.visit.link": "this link",
|
|
154
|
+
"provider.connect.oauth.auto.visit.suffix":
|
|
155
|
+
" and enter the code below to connect your account and use {{provider}} models in OpenCode.",
|
|
156
|
+
"provider.connect.oauth.auto.confirmationCode": "Confirmation code",
|
|
157
|
+
"provider.connect.toast.connected.title": "{{provider}} connected",
|
|
158
|
+
"provider.connect.toast.connected.description": "{{provider}} models are now available to use.",
|
|
159
|
+
|
|
160
|
+
"provider.custom.title": "Custom provider",
|
|
161
|
+
"provider.custom.description.prefix": "Configure an OpenAI-compatible provider. See the ",
|
|
162
|
+
"provider.custom.description.link": "provider config docs",
|
|
163
|
+
"provider.custom.description.suffix": ".",
|
|
164
|
+
"provider.custom.field.providerID.label": "Provider ID",
|
|
165
|
+
"provider.custom.field.providerID.placeholder": "myprovider",
|
|
166
|
+
"provider.custom.field.providerID.description": "Lowercase letters, numbers, hyphens, or underscores",
|
|
167
|
+
"provider.custom.field.name.label": "Display name",
|
|
168
|
+
"provider.custom.field.name.placeholder": "My AI Provider",
|
|
169
|
+
"provider.custom.field.baseURL.label": "Base URL",
|
|
170
|
+
"provider.custom.field.baseURL.placeholder": "https://api.myprovider.com/v1",
|
|
171
|
+
"provider.custom.field.apiKey.label": "API key",
|
|
172
|
+
"provider.custom.field.apiKey.placeholder": "API key",
|
|
173
|
+
"provider.custom.field.apiKey.description": "Optional. Leave empty if you manage auth via headers.",
|
|
174
|
+
"provider.custom.models.label": "Models",
|
|
175
|
+
"provider.custom.models.id.label": "ID",
|
|
176
|
+
"provider.custom.models.id.placeholder": "model-id",
|
|
177
|
+
"provider.custom.models.name.label": "Name",
|
|
178
|
+
"provider.custom.models.name.placeholder": "Display Name",
|
|
179
|
+
"provider.custom.models.remove": "Remove model",
|
|
180
|
+
"provider.custom.models.add": "Add model",
|
|
181
|
+
"provider.custom.headers.label": "Headers (optional)",
|
|
182
|
+
"provider.custom.headers.key.label": "Header",
|
|
183
|
+
"provider.custom.headers.key.placeholder": "Header-Name",
|
|
184
|
+
"provider.custom.headers.value.label": "Value",
|
|
185
|
+
"provider.custom.headers.value.placeholder": "value",
|
|
186
|
+
"provider.custom.headers.remove": "Remove header",
|
|
187
|
+
"provider.custom.headers.add": "Add header",
|
|
188
|
+
"provider.custom.error.providerID.required": "Provider ID is required",
|
|
189
|
+
"provider.custom.error.providerID.format": "Use lowercase letters, numbers, hyphens, or underscores",
|
|
190
|
+
"provider.custom.error.providerID.exists": "That provider ID already exists",
|
|
191
|
+
"provider.custom.error.name.required": "Display name is required",
|
|
192
|
+
"provider.custom.error.baseURL.required": "Base URL is required",
|
|
193
|
+
"provider.custom.error.baseURL.format": "Must start with http:// or https://",
|
|
194
|
+
"provider.custom.error.required": "Required",
|
|
195
|
+
"provider.custom.error.duplicate": "Duplicate",
|
|
196
|
+
|
|
197
|
+
"provider.disconnect.toast.disconnected.title": "{{provider}} disconnected",
|
|
198
|
+
"provider.disconnect.toast.disconnected.description": "{{provider}} models are no longer available.",
|
|
199
|
+
|
|
200
|
+
"model.tag.free": "Free",
|
|
201
|
+
"model.tag.latest": "Latest",
|
|
202
|
+
"model.provider.anthropic": "Anthropic",
|
|
203
|
+
"model.provider.openai": "OpenAI",
|
|
204
|
+
"model.provider.google": "Google",
|
|
205
|
+
"model.provider.xai": "xAI",
|
|
206
|
+
"model.provider.meta": "Meta",
|
|
207
|
+
"model.input.text": "text",
|
|
208
|
+
"model.input.image": "image",
|
|
209
|
+
"model.input.audio": "audio",
|
|
210
|
+
"model.input.video": "video",
|
|
211
|
+
"model.input.pdf": "pdf",
|
|
212
|
+
"model.tooltip.allows": "Allows: {{inputs}}",
|
|
213
|
+
"model.tooltip.reasoning.allowed": "Allows reasoning",
|
|
214
|
+
"model.tooltip.reasoning.none": "No reasoning",
|
|
215
|
+
"model.tooltip.context": "Context limit {{limit}}",
|
|
216
|
+
|
|
217
|
+
"common.search.placeholder": "Search",
|
|
218
|
+
"common.goBack": "Navigate back",
|
|
219
|
+
"common.goForward": "Navigate forward",
|
|
220
|
+
"common.loading": "Loading",
|
|
221
|
+
"common.loading.ellipsis": "...",
|
|
222
|
+
"common.cancel": "Cancel",
|
|
223
|
+
"common.open": "Open",
|
|
224
|
+
"common.connect": "Connect",
|
|
225
|
+
"common.disconnect": "Disconnect",
|
|
226
|
+
"common.continue": "Continue",
|
|
227
|
+
"common.submit": "Submit",
|
|
228
|
+
"common.save": "Save",
|
|
229
|
+
"common.saving": "Saving...",
|
|
230
|
+
"common.default": "Default",
|
|
231
|
+
"common.attachment": "attachment",
|
|
232
|
+
|
|
233
|
+
"prompt.placeholder.shell": "Enter shell command...",
|
|
234
|
+
"prompt.placeholder.normal": 'Ask anything... "{{example}}"',
|
|
235
|
+
"prompt.placeholder.simple": "Ask anything...",
|
|
236
|
+
"prompt.placeholder.summarizeComments": "Summarize comments…",
|
|
237
|
+
"prompt.placeholder.summarizeComment": "Summarize comment…",
|
|
238
|
+
"prompt.mode.shell": "Shell",
|
|
239
|
+
"prompt.mode.normal": "Prompt",
|
|
240
|
+
"prompt.mode.shell.exit": "esc to exit",
|
|
241
|
+
|
|
242
|
+
"prompt.example.1": "Fix a TODO in the codebase",
|
|
243
|
+
"prompt.example.2": "What is the tech stack of this project?",
|
|
244
|
+
"prompt.example.3": "Fix broken tests",
|
|
245
|
+
"prompt.example.4": "Explain how authentication works",
|
|
246
|
+
"prompt.example.5": "Find and fix security vulnerabilities",
|
|
247
|
+
"prompt.example.6": "Add unit tests for the user service",
|
|
248
|
+
"prompt.example.7": "Refactor this function to be more readable",
|
|
249
|
+
"prompt.example.8": "What does this error mean?",
|
|
250
|
+
"prompt.example.9": "Help me debug this issue",
|
|
251
|
+
"prompt.example.10": "Generate API documentation",
|
|
252
|
+
"prompt.example.11": "Optimize database queries",
|
|
253
|
+
"prompt.example.12": "Add input validation",
|
|
254
|
+
"prompt.example.13": "Create a new component for...",
|
|
255
|
+
"prompt.example.14": "How do I deploy this project?",
|
|
256
|
+
"prompt.example.15": "Review my code for best practices",
|
|
257
|
+
"prompt.example.16": "Add error handling to this function",
|
|
258
|
+
"prompt.example.17": "Explain this regex pattern",
|
|
259
|
+
"prompt.example.18": "Convert this to TypeScript",
|
|
260
|
+
"prompt.example.19": "Add logging throughout the codebase",
|
|
261
|
+
"prompt.example.20": "What dependencies are outdated?",
|
|
262
|
+
"prompt.example.21": "Help me write a migration script",
|
|
263
|
+
"prompt.example.22": "Implement caching for this endpoint",
|
|
264
|
+
"prompt.example.23": "Add pagination to this list",
|
|
265
|
+
"prompt.example.24": "Create a CLI command for...",
|
|
266
|
+
"prompt.example.25": "How do environment variables work here?",
|
|
267
|
+
|
|
268
|
+
"prompt.popover.emptyResults": "No matching results",
|
|
269
|
+
"prompt.popover.emptyCommands": "No matching commands",
|
|
270
|
+
"prompt.dropzone.label": "Drop images, PDFs, or text files here",
|
|
271
|
+
"prompt.dropzone.file.label": "Drop to @mention file",
|
|
272
|
+
"prompt.slash.badge.custom": "custom",
|
|
273
|
+
"prompt.slash.badge.skill": "skill",
|
|
274
|
+
"prompt.slash.badge.mcp": "mcp",
|
|
275
|
+
"prompt.context.active": "active",
|
|
276
|
+
"prompt.context.includeActiveFile": "Include active file",
|
|
277
|
+
"prompt.context.removeActiveFile": "Remove active file from context",
|
|
278
|
+
"prompt.context.removeFile": "Remove file from context",
|
|
279
|
+
"prompt.action.attachFile": "Add files",
|
|
280
|
+
"prompt.attachment.remove": "Remove attachment",
|
|
281
|
+
"prompt.action.send": "Send",
|
|
282
|
+
"prompt.action.stop": "Stop",
|
|
283
|
+
|
|
284
|
+
"prompt.toast.pasteUnsupported.title": "Unsupported attachment",
|
|
285
|
+
"prompt.toast.pasteUnsupported.description": "Only images, PDFs, or text files can be attached here.",
|
|
286
|
+
"prompt.toast.modelAgentRequired.title": "Select an agent and model",
|
|
287
|
+
"prompt.toast.modelAgentRequired.description": "Choose an agent and model before sending a prompt.",
|
|
288
|
+
"prompt.toast.worktreeCreateFailed.title": "Failed to create worktree",
|
|
289
|
+
"prompt.toast.sessionCreateFailed.title": "Failed to create session",
|
|
290
|
+
"prompt.toast.shellSendFailed.title": "Failed to send shell command",
|
|
291
|
+
"prompt.toast.commandSendFailed.title": "Failed to send command",
|
|
292
|
+
"prompt.toast.promptSendFailed.title": "Failed to send prompt",
|
|
293
|
+
"prompt.toast.promptSendFailed.description": "Unable to retrieve session",
|
|
294
|
+
|
|
295
|
+
"dialog.mcp.title": "MCPs",
|
|
296
|
+
"dialog.mcp.description": "{{enabled}} of {{total}} enabled",
|
|
297
|
+
"dialog.mcp.empty": "No MCPs configured",
|
|
298
|
+
|
|
299
|
+
"dialog.lsp.empty": "LSPs auto-detected from file types",
|
|
300
|
+
"dialog.plugins.empty": "Plugins configured in reigncode.json",
|
|
301
|
+
|
|
302
|
+
"mcp.status.connected": "connected",
|
|
303
|
+
"mcp.status.failed": "failed",
|
|
304
|
+
"mcp.status.needs_auth": "needs auth",
|
|
305
|
+
"mcp.status.disabled": "disabled",
|
|
306
|
+
|
|
307
|
+
"dialog.fork.empty": "No messages to fork from",
|
|
308
|
+
|
|
309
|
+
"dialog.directory.search.placeholder": "Search folders",
|
|
310
|
+
"dialog.directory.empty": "No folders found",
|
|
311
|
+
|
|
312
|
+
"app.server.unreachable": "Could not reach {{server}}",
|
|
313
|
+
"app.server.retrying": "Retrying automatically...",
|
|
314
|
+
"app.server.otherServers": "Other servers",
|
|
315
|
+
|
|
316
|
+
"dialog.server.title": "Servers",
|
|
317
|
+
"dialog.server.description": "Switch which OpenCode server this app connects to.",
|
|
318
|
+
"dialog.server.search.placeholder": "Search servers",
|
|
319
|
+
"dialog.server.empty": "No servers yet",
|
|
320
|
+
"dialog.server.add.title": "Add server",
|
|
321
|
+
"dialog.server.add.url": "Server address",
|
|
322
|
+
"dialog.server.add.placeholder": "http://localhost:4096",
|
|
323
|
+
"dialog.server.add.error": "Could not connect to server",
|
|
324
|
+
"dialog.server.add.checking": "Checking...",
|
|
325
|
+
"dialog.server.add.button": "Add server",
|
|
326
|
+
"dialog.server.add.name": "Server name (optional)",
|
|
327
|
+
"dialog.server.add.namePlaceholder": "Localhost",
|
|
328
|
+
"dialog.server.add.username": "Username (optional)",
|
|
329
|
+
"dialog.server.add.usernamePlaceholder": "username",
|
|
330
|
+
"dialog.server.add.password": "Password (optional)",
|
|
331
|
+
"dialog.server.add.passwordPlaceholder": "password",
|
|
332
|
+
"dialog.server.edit.title": "Edit server",
|
|
333
|
+
"dialog.server.default.title": "Default server",
|
|
334
|
+
"dialog.server.default.description":
|
|
335
|
+
"Connect to this server on app launch instead of starting a local server. Requires restart.",
|
|
336
|
+
"dialog.server.default.none": "No server selected",
|
|
337
|
+
"dialog.server.default.set": "Set current server as default",
|
|
338
|
+
"dialog.server.default.clear": "Clear",
|
|
339
|
+
"dialog.server.action.remove": "Remove server",
|
|
340
|
+
|
|
341
|
+
"dialog.server.menu.edit": "Edit",
|
|
342
|
+
"dialog.server.menu.default": "Set as default",
|
|
343
|
+
"dialog.server.menu.defaultRemove": "Remove default",
|
|
344
|
+
"dialog.server.menu.delete": "Delete",
|
|
345
|
+
"dialog.server.current": "Current Server",
|
|
346
|
+
"dialog.server.status.default": "Default",
|
|
347
|
+
"server.row.noUsername": "no username",
|
|
348
|
+
|
|
349
|
+
"dialog.project.edit.title": "Edit project",
|
|
350
|
+
"dialog.project.edit.name": "Name",
|
|
351
|
+
"dialog.project.edit.icon": "Icon",
|
|
352
|
+
"dialog.project.edit.icon.alt": "Project icon",
|
|
353
|
+
"dialog.project.edit.icon.hint": "Click or drag an image",
|
|
354
|
+
"dialog.project.edit.icon.recommended": "Recommended: 128x128px",
|
|
355
|
+
"dialog.project.edit.color": "Color",
|
|
356
|
+
"dialog.project.edit.color.select": "Select {{color}} color",
|
|
357
|
+
"dialog.project.edit.worktree.startup": "Workspace startup script",
|
|
358
|
+
"dialog.project.edit.worktree.startup.description": "Runs after creating a new workspace (worktree).",
|
|
359
|
+
"dialog.project.edit.worktree.startup.placeholder": "e.g. bun install",
|
|
360
|
+
|
|
361
|
+
"dialog.releaseNotes.action.getStarted": "Get started",
|
|
362
|
+
"dialog.releaseNotes.action.next": "Next",
|
|
363
|
+
"dialog.releaseNotes.action.hideFuture": "Don't show these in the future",
|
|
364
|
+
"dialog.releaseNotes.media.alt": "Release preview",
|
|
365
|
+
|
|
366
|
+
"context.breakdown.title": "Context Breakdown",
|
|
367
|
+
"context.breakdown.note": 'Approximate breakdown of input tokens. "Other" includes tool definitions and overhead.',
|
|
368
|
+
"context.breakdown.system": "System",
|
|
369
|
+
"context.breakdown.user": "User",
|
|
370
|
+
"context.breakdown.assistant": "Assistant",
|
|
371
|
+
"context.breakdown.tool": "Tool Calls",
|
|
372
|
+
"context.breakdown.other": "Other",
|
|
373
|
+
|
|
374
|
+
"context.systemPrompt.title": "System Prompt",
|
|
375
|
+
"context.rawMessages.title": "Raw messages",
|
|
376
|
+
|
|
377
|
+
"context.stats.session": "Session",
|
|
378
|
+
"context.stats.messages": "Messages",
|
|
379
|
+
"context.stats.provider": "Provider",
|
|
380
|
+
"context.stats.model": "Model",
|
|
381
|
+
"context.stats.limit": "Context Limit",
|
|
382
|
+
"context.stats.totalTokens": "Total Tokens",
|
|
383
|
+
"context.stats.usage": "Usage",
|
|
384
|
+
"context.stats.inputTokens": "Input Tokens",
|
|
385
|
+
"context.stats.outputTokens": "Output Tokens",
|
|
386
|
+
"context.stats.reasoningTokens": "Reasoning Tokens",
|
|
387
|
+
"context.stats.cacheTokens": "Cache Tokens (read/write)",
|
|
388
|
+
"context.stats.userMessages": "User Messages",
|
|
389
|
+
"context.stats.assistantMessages": "Assistant Messages",
|
|
390
|
+
"context.stats.totalCost": "Total Cost",
|
|
391
|
+
"context.stats.sessionCreated": "Session Created",
|
|
392
|
+
"context.stats.lastActivity": "Last Activity",
|
|
393
|
+
|
|
394
|
+
"context.usage.tokens": "Tokens",
|
|
395
|
+
"context.usage.usage": "Usage",
|
|
396
|
+
"context.usage.cost": "Cost",
|
|
397
|
+
"context.usage.clickToView": "Click to view context",
|
|
398
|
+
"context.usage.view": "View context usage",
|
|
399
|
+
|
|
400
|
+
"language.en": "English",
|
|
401
|
+
"language.zh": "简体中文",
|
|
402
|
+
"language.zht": "繁體中文",
|
|
403
|
+
"language.ko": "한국어",
|
|
404
|
+
"language.de": "Deutsch",
|
|
405
|
+
"language.es": "Español",
|
|
406
|
+
"language.fr": "Français",
|
|
407
|
+
"language.da": "Dansk",
|
|
408
|
+
"language.ja": "日本語",
|
|
409
|
+
"language.pl": "Polski",
|
|
410
|
+
"language.ru": "Русский",
|
|
411
|
+
"language.ar": "العربية",
|
|
412
|
+
"language.no": "Norsk",
|
|
413
|
+
"language.br": "Português (Brasil)",
|
|
414
|
+
"language.bs": "Bosanski",
|
|
415
|
+
"language.th": "ไทย",
|
|
416
|
+
"language.tr": "Türkçe",
|
|
417
|
+
|
|
418
|
+
"toast.language.title": "Language",
|
|
419
|
+
"toast.language.description": "Switched to {{language}}",
|
|
420
|
+
|
|
421
|
+
"toast.theme.title": "Theme switched",
|
|
422
|
+
"toast.scheme.title": "Color scheme",
|
|
423
|
+
|
|
424
|
+
"toast.workspace.enabled.title": "Workspaces enabled",
|
|
425
|
+
"toast.workspace.enabled.description": "Multiple worktrees are now shown in the sidebar",
|
|
426
|
+
"toast.workspace.disabled.title": "Workspaces disabled",
|
|
427
|
+
"toast.workspace.disabled.description": "Only the main worktree is shown in the sidebar",
|
|
428
|
+
|
|
429
|
+
"toast.permissions.autoaccept.on.title": "Auto-accepting permissions",
|
|
430
|
+
"toast.permissions.autoaccept.on.description": "Permission requests will be automatically approved",
|
|
431
|
+
"toast.permissions.autoaccept.off.title": "Stopped auto-accepting permissions",
|
|
432
|
+
"toast.permissions.autoaccept.off.description": "Permission requests will require approval",
|
|
433
|
+
|
|
434
|
+
"toast.model.none.title": "No model selected",
|
|
435
|
+
"toast.model.none.description": "Connect a provider to summarize this session",
|
|
436
|
+
|
|
437
|
+
"toast.file.loadFailed.title": "Failed to load file",
|
|
438
|
+
"toast.file.listFailed.title": "Failed to list files",
|
|
439
|
+
|
|
440
|
+
"toast.context.noLineSelection.title": "No line selection",
|
|
441
|
+
"toast.context.noLineSelection.description": "Select a line range in a file tab first.",
|
|
442
|
+
|
|
443
|
+
"toast.session.share.copyFailed.title": "Failed to copy URL to clipboard",
|
|
444
|
+
"toast.session.share.success.title": "Session shared",
|
|
445
|
+
"toast.session.share.success.description": "Share URL copied to clipboard!",
|
|
446
|
+
"toast.session.share.failed.title": "Failed to share session",
|
|
447
|
+
"toast.session.share.failed.description": "An error occurred while sharing the session",
|
|
448
|
+
|
|
449
|
+
"toast.session.unshare.success.title": "Session unshared",
|
|
450
|
+
"toast.session.unshare.success.description": "Session unshared successfully!",
|
|
451
|
+
"toast.session.unshare.failed.title": "Failed to unshare session",
|
|
452
|
+
"toast.session.unshare.failed.description": "An error occurred while unsharing the session",
|
|
453
|
+
|
|
454
|
+
"toast.session.listFailed.title": "Failed to load sessions for {{project}}",
|
|
455
|
+
"toast.project.reloadFailed.title": "Failed to reload {{project}}",
|
|
456
|
+
|
|
457
|
+
"toast.update.title": "Update available",
|
|
458
|
+
"toast.update.description": "A new version of OpenCode ({{version}}) is now available to install.",
|
|
459
|
+
"toast.update.action.installRestart": "Install and restart",
|
|
460
|
+
"toast.update.action.notYet": "Not yet",
|
|
461
|
+
|
|
462
|
+
"error.page.title": "Something went wrong",
|
|
463
|
+
"error.page.description": "An error occurred while loading the application.",
|
|
464
|
+
"error.page.details.label": "Error Details",
|
|
465
|
+
"error.page.action.restart": "Restart",
|
|
466
|
+
"error.page.action.checking": "Checking...",
|
|
467
|
+
"error.page.action.checkUpdates": "Check for updates",
|
|
468
|
+
"error.page.action.updateTo": "Update to {{version}}",
|
|
469
|
+
"error.page.circular": "[Circular]",
|
|
470
|
+
"error.page.report.prefix": "Please report this error to the OpenCode team",
|
|
471
|
+
"error.page.report.discord": "on Discord",
|
|
472
|
+
"error.page.version": "Version: {{version}}",
|
|
473
|
+
|
|
474
|
+
"error.dev.rootNotFound":
|
|
475
|
+
"Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?",
|
|
476
|
+
|
|
477
|
+
"error.globalSync.connectFailed": "Could not connect to server. Is there a server running at `{{url}}`?",
|
|
478
|
+
"error.globalSDK.noServerAvailable": "No server available",
|
|
479
|
+
"error.globalSDK.serverNotAvailable": "Server not available",
|
|
480
|
+
"error.childStore.persistedCacheCreateFailed": "Failed to create persisted cache",
|
|
481
|
+
"error.childStore.persistedProjectMetadataCreateFailed": "Failed to create persisted project metadata",
|
|
482
|
+
"error.childStore.persistedProjectIconCreateFailed": "Failed to create persisted project icon",
|
|
483
|
+
"error.childStore.storeCreateFailed": "Failed to create store",
|
|
484
|
+
"directory.error.invalidUrl": "Invalid directory in URL.",
|
|
485
|
+
|
|
486
|
+
"error.chain.unknown": "Unknown error",
|
|
487
|
+
"error.server.invalidConfiguration": "Invalid configuration",
|
|
488
|
+
"error.chain.causedBy": "Caused by:",
|
|
489
|
+
"error.chain.apiError": "API error",
|
|
490
|
+
"error.chain.status": "Status: {{status}}",
|
|
491
|
+
"error.chain.retryable": "Retryable: {{retryable}}",
|
|
492
|
+
"error.chain.responseBody": "Response body:\n{{body}}",
|
|
493
|
+
"error.chain.didYouMean": "Did you mean: {{suggestions}}",
|
|
494
|
+
"error.chain.modelNotFound": "Model not found: {{provider}}/{{model}}",
|
|
495
|
+
"error.chain.checkConfig": "Check your config (reigncode.json) provider/model names",
|
|
496
|
+
"error.chain.mcpFailed": 'MCP server "{{name}}" failed. Note, OpenCode does not support MCP authentication yet.',
|
|
497
|
+
"error.chain.providerAuthFailed": "Provider authentication failed ({{provider}}): {{message}}",
|
|
498
|
+
"error.chain.providerInitFailed":
|
|
499
|
+
'Failed to initialize provider "{{provider}}". Check credentials and configuration.',
|
|
500
|
+
"error.chain.configJsonInvalid": "Config file at {{path}} is not valid JSON(C)",
|
|
501
|
+
"error.chain.configJsonInvalidWithMessage": "Config file at {{path}} is not valid JSON(C): {{message}}",
|
|
502
|
+
"error.chain.configDirectoryTypo":
|
|
503
|
+
'Directory "{{dir}}" in {{path}} is not valid. Rename the directory to "{{suggestion}}" or remove it. This is a common typo.',
|
|
504
|
+
"error.chain.configFrontmatterError": "Failed to parse frontmatter in {{path}}:\n{{message}}",
|
|
505
|
+
"error.chain.configInvalid": "Config file at {{path}} is invalid",
|
|
506
|
+
"error.chain.configInvalidWithMessage": "Config file at {{path}} is invalid: {{message}}",
|
|
507
|
+
|
|
508
|
+
"notification.permission.title": "Permission required",
|
|
509
|
+
"notification.permission.description": "{{sessionTitle}} in {{projectName}} needs permission",
|
|
510
|
+
"notification.question.title": "Question",
|
|
511
|
+
"notification.question.description": "{{sessionTitle}} in {{projectName}} has a question",
|
|
512
|
+
"notification.action.goToSession": "Go to session",
|
|
513
|
+
|
|
514
|
+
"notification.session.responseReady.title": "Response ready",
|
|
515
|
+
"notification.session.error.title": "Session error",
|
|
516
|
+
"notification.session.error.fallbackDescription": "An error occurred",
|
|
517
|
+
|
|
518
|
+
"home.recentProjects": "Recent projects",
|
|
519
|
+
"home.empty.title": "No recent projects",
|
|
520
|
+
"home.empty.description": "Get started by opening a local project",
|
|
521
|
+
|
|
522
|
+
"session.tab.session": "Session",
|
|
523
|
+
"session.tab.review": "Review",
|
|
524
|
+
"session.tab.context": "Context",
|
|
525
|
+
"session.panel.reviewAndFiles": "Review and files",
|
|
526
|
+
"session.review.filesChanged": "{{count}} Files Changed",
|
|
527
|
+
"session.review.change.one": "Change",
|
|
528
|
+
"session.review.change.other": "Changes",
|
|
529
|
+
"session.review.loadingChanges": "Loading changes...",
|
|
530
|
+
"session.review.empty": "No changes in this session yet",
|
|
531
|
+
"session.review.noVcs": "No Git Version Control System detected, changes not displayed",
|
|
532
|
+
"session.review.noVcs.createGit.title": "Create a Git repository",
|
|
533
|
+
"session.review.noVcs.createGit.description": "Track, review, and undo changes in this project",
|
|
534
|
+
"session.review.noVcs.createGit.actionLoading": "Creating Git repository...",
|
|
535
|
+
"session.review.noVcs.createGit.action": "Create Git repository",
|
|
536
|
+
"session.review.noSnapshot": "Snapshot tracking is disabled in config, so session changes are unavailable",
|
|
537
|
+
"session.review.noChanges": "No changes",
|
|
538
|
+
|
|
539
|
+
"session.files.selectToOpen": "Select a file to open",
|
|
540
|
+
"session.files.all": "All files",
|
|
541
|
+
"session.files.empty": "No files",
|
|
542
|
+
"session.files.binaryContent": "Binary file (content cannot be displayed)",
|
|
543
|
+
|
|
544
|
+
"session.messages.renderEarlier": "Render earlier messages",
|
|
545
|
+
"session.messages.loadingEarlier": "Loading earlier messages...",
|
|
546
|
+
"session.messages.loadEarlier": "Load earlier messages",
|
|
547
|
+
"session.messages.loading": "Loading messages...",
|
|
548
|
+
"session.messages.jumpToLatest": "Jump to latest",
|
|
549
|
+
|
|
550
|
+
"session.context.addToContext": "Add {{selection}} to context",
|
|
551
|
+
"session.todo.title": "Todos",
|
|
552
|
+
"session.todo.collapse": "Collapse",
|
|
553
|
+
"session.todo.expand": "Expand",
|
|
554
|
+
"session.todo.progress": "{{done}} of {{total}} todos completed",
|
|
555
|
+
"session.question.progress": "{{current}} of {{total}} questions",
|
|
556
|
+
"session.followupDock.summary.one": "{{count}} queued message",
|
|
557
|
+
"session.followupDock.summary.other": "{{count}} queued messages",
|
|
558
|
+
"session.followupDock.sendNow": "Send now",
|
|
559
|
+
"session.followupDock.edit": "Edit",
|
|
560
|
+
"session.followupDock.collapse": "Collapse queued messages",
|
|
561
|
+
"session.followupDock.expand": "Expand queued messages",
|
|
562
|
+
"session.revertDock.summary.one": "{{count}} rolled back message",
|
|
563
|
+
"session.revertDock.summary.other": "{{count}} rolled back messages",
|
|
564
|
+
"session.revertDock.collapse": "Collapse rolled back messages",
|
|
565
|
+
"session.revertDock.expand": "Expand rolled back messages",
|
|
566
|
+
"session.revertDock.restore": "Restore message",
|
|
567
|
+
|
|
568
|
+
"session.new.title": "Build anything",
|
|
569
|
+
"session.new.worktree.main": "Main branch",
|
|
570
|
+
"session.new.worktree.mainWithBranch": "Main branch ({{branch}})",
|
|
571
|
+
"session.new.worktree.create": "Create new worktree",
|
|
572
|
+
"session.new.lastModified": "Last modified",
|
|
573
|
+
|
|
574
|
+
"session.header.search.placeholder": "Search {{project}}",
|
|
575
|
+
"session.header.searchFiles": "Search files",
|
|
576
|
+
"session.header.openIn": "Open in",
|
|
577
|
+
"session.header.open.action": "Open {{app}}",
|
|
578
|
+
"session.header.open.ariaLabel": "Open in {{app}}",
|
|
579
|
+
"session.header.open.menu": "Open options",
|
|
580
|
+
"session.header.open.copyPath": "Copy path",
|
|
581
|
+
"session.header.open.finder": "Finder",
|
|
582
|
+
"session.header.open.fileExplorer": "File Explorer",
|
|
583
|
+
"session.header.open.fileManager": "File Manager",
|
|
584
|
+
"session.header.open.app.vscode": "VS Code",
|
|
585
|
+
"session.header.open.app.cursor": "Cursor",
|
|
586
|
+
"session.header.open.app.zed": "Zed",
|
|
587
|
+
"session.header.open.app.textmate": "TextMate",
|
|
588
|
+
"session.header.open.app.antigravity": "Antigravity",
|
|
589
|
+
"session.header.open.app.terminal": "Terminal",
|
|
590
|
+
"session.header.open.app.iterm2": "iTerm2",
|
|
591
|
+
"session.header.open.app.ghostty": "Ghostty",
|
|
592
|
+
"session.header.open.app.warp": "Warp",
|
|
593
|
+
"session.header.open.app.xcode": "Xcode",
|
|
594
|
+
"session.header.open.app.androidStudio": "Android Studio",
|
|
595
|
+
"session.header.open.app.powershell": "PowerShell",
|
|
596
|
+
"session.header.open.app.sublimeText": "Sublime Text",
|
|
597
|
+
|
|
598
|
+
"status.popover.trigger": "Status",
|
|
599
|
+
"status.popover.ariaLabel": "Server configurations",
|
|
600
|
+
"status.popover.tab.servers": "Servers",
|
|
601
|
+
"status.popover.tab.mcp": "MCP",
|
|
602
|
+
"status.popover.tab.lsp": "LSP",
|
|
603
|
+
"status.popover.tab.plugins": "Plugins",
|
|
604
|
+
"status.popover.action.manageServers": "Manage servers",
|
|
605
|
+
|
|
606
|
+
"session.share.popover.title": "Publish on web",
|
|
607
|
+
"session.share.popover.description.shared":
|
|
608
|
+
"This session is public on the web. It is accessible to anyone with the link.",
|
|
609
|
+
"session.share.popover.description.unshared":
|
|
610
|
+
"Share session publicly on the web. It will be accessible to anyone with the link.",
|
|
611
|
+
"session.share.action.share": "Share",
|
|
612
|
+
"session.share.action.publish": "Publish",
|
|
613
|
+
"session.share.action.publishing": "Publishing...",
|
|
614
|
+
"session.share.action.unpublish": "Unpublish",
|
|
615
|
+
"session.share.action.unpublishing": "Unpublishing...",
|
|
616
|
+
"session.share.action.view": "View",
|
|
617
|
+
"session.share.copy.copied": "Copied",
|
|
618
|
+
"session.share.copy.copyLink": "Copy link",
|
|
619
|
+
|
|
620
|
+
"lsp.tooltip.none": "No LSP servers",
|
|
621
|
+
"lsp.label.connected": "{{count}} LSP",
|
|
622
|
+
|
|
623
|
+
"prompt.loading": "Loading prompt...",
|
|
624
|
+
"terminal.loading": "Loading terminal...",
|
|
625
|
+
"terminal.title": "Terminal",
|
|
626
|
+
"terminal.title.numbered": "Terminal {{number}}",
|
|
627
|
+
"terminal.close": "Close terminal",
|
|
628
|
+
"terminal.connectionLost.title": "Connection Lost",
|
|
629
|
+
"terminal.connectionLost.abnormalClose": "WebSocket closed abnormally: {{code}}",
|
|
630
|
+
"terminal.connectionLost.description":
|
|
631
|
+
"The terminal connection was interrupted. This can happen when the server restarts.",
|
|
632
|
+
|
|
633
|
+
"common.closeTab": "Close tab",
|
|
634
|
+
"common.dismiss": "Dismiss",
|
|
635
|
+
"common.moreCountSuffix": " (+{{count}} more)",
|
|
636
|
+
"common.requestFailed": "Request failed",
|
|
637
|
+
"common.moreOptions": "More options",
|
|
638
|
+
"common.learnMore": "Learn more",
|
|
639
|
+
"common.rename": "Rename",
|
|
640
|
+
"common.reset": "Reset",
|
|
641
|
+
"common.archive": "Archive",
|
|
642
|
+
"common.delete": "Delete",
|
|
643
|
+
"common.close": "Close",
|
|
644
|
+
"common.edit": "Edit",
|
|
645
|
+
"common.loadMore": "Load more",
|
|
646
|
+
"common.key.esc": "ESC",
|
|
647
|
+
"common.key.ctrl": "Ctrl",
|
|
648
|
+
"common.key.alt": "Alt",
|
|
649
|
+
"common.key.shift": "Shift",
|
|
650
|
+
"common.key.meta": "Meta",
|
|
651
|
+
"common.key.space": "Space",
|
|
652
|
+
"common.key.backspace": "Backspace",
|
|
653
|
+
"common.key.enter": "Enter",
|
|
654
|
+
"common.key.tab": "Tab",
|
|
655
|
+
"common.key.delete": "Delete",
|
|
656
|
+
"common.key.home": "Home",
|
|
657
|
+
"common.key.end": "End",
|
|
658
|
+
"common.key.pageUp": "Page Up",
|
|
659
|
+
"common.key.pageDown": "Page Down",
|
|
660
|
+
"common.key.insert": "Insert",
|
|
661
|
+
"common.unknown": "unknown",
|
|
662
|
+
|
|
663
|
+
"common.time.justNow": "Just now",
|
|
664
|
+
"common.time.minutesAgo.short": "{{count}}m ago",
|
|
665
|
+
"common.time.hoursAgo.short": "{{count}}h ago",
|
|
666
|
+
"common.time.daysAgo.short": "{{count}}d ago",
|
|
667
|
+
|
|
668
|
+
"sidebar.menu.toggle": "Toggle menu",
|
|
669
|
+
"sidebar.nav.projectsAndSessions": "Projects and sessions",
|
|
670
|
+
"sidebar.settings": "Settings",
|
|
671
|
+
"sidebar.help": "Help",
|
|
672
|
+
"sidebar.workspaces.enable": "Enable workspaces",
|
|
673
|
+
"sidebar.workspaces.disable": "Disable workspaces",
|
|
674
|
+
"sidebar.gettingStarted.title": "Getting started",
|
|
675
|
+
"sidebar.gettingStarted.line1": "OpenCode includes free models so you can start immediately.",
|
|
676
|
+
"sidebar.gettingStarted.line2": "Connect any provider to use models, inc. Claude, GPT, Gemini etc.",
|
|
677
|
+
"sidebar.project.recentSessions": "Recent sessions",
|
|
678
|
+
"sidebar.project.viewAllSessions": "View all sessions",
|
|
679
|
+
"sidebar.project.clearNotifications": "Clear notifications",
|
|
680
|
+
"sidebar.empty.title": "No projects open",
|
|
681
|
+
"sidebar.empty.description": "Open a project to get started",
|
|
682
|
+
|
|
683
|
+
"debugBar.ariaLabel": "Development performance diagnostics",
|
|
684
|
+
"debugBar.na": "n/a",
|
|
685
|
+
"debugBar.nav.label": "NAV",
|
|
686
|
+
"debugBar.nav.tip":
|
|
687
|
+
"Last completed route transition touching a session page, measured from router start until the first paint after it settles.",
|
|
688
|
+
"debugBar.fps.label": "FPS",
|
|
689
|
+
"debugBar.fps.tip": "Rolling frames per second over the last 5 seconds.",
|
|
690
|
+
"debugBar.frame.label": "FRAME",
|
|
691
|
+
"debugBar.frame.tip": "Worst frame time over the last 5 seconds.",
|
|
692
|
+
"debugBar.jank.label": "JANK",
|
|
693
|
+
"debugBar.jank.tip": "Frames over 32ms in the last 5 seconds.",
|
|
694
|
+
"debugBar.long.label": "LONG",
|
|
695
|
+
"debugBar.long.tip": "Blocked time and long-task count in the last 5 seconds. Max task: {{max}}.",
|
|
696
|
+
"debugBar.delay.label": "DELAY",
|
|
697
|
+
"debugBar.delay.tip": "Worst observed input delay in the last 5 seconds.",
|
|
698
|
+
"debugBar.inp.label": "INP",
|
|
699
|
+
"debugBar.inp.tip":
|
|
700
|
+
"Approximate interaction duration over the last 5 seconds. This is INP-like, not the official Web Vitals INP.",
|
|
701
|
+
"debugBar.cls.label": "CLS",
|
|
702
|
+
"debugBar.cls.tip": "Cumulative layout shift for the current app lifetime.",
|
|
703
|
+
"debugBar.mem.label": "MEM",
|
|
704
|
+
"debugBar.mem.tipUnavailable": "Used JS heap vs heap limit. Chromium only.",
|
|
705
|
+
"debugBar.mem.tip": "Used JS heap vs heap limit. {{used}} of {{limit}}.",
|
|
706
|
+
|
|
707
|
+
"app.name.desktop": "OpenCode Desktop",
|
|
708
|
+
|
|
709
|
+
"settings.section.desktop": "Desktop",
|
|
710
|
+
"settings.section.server": "Server",
|
|
711
|
+
"settings.tab.general": "General",
|
|
712
|
+
"settings.tab.shortcuts": "Shortcuts",
|
|
713
|
+
"settings.desktop.section.wsl": "WSL",
|
|
714
|
+
"settings.desktop.wsl.title": "WSL integration",
|
|
715
|
+
"settings.desktop.wsl.description": "Run the OpenCode server inside WSL on Windows.",
|
|
716
|
+
|
|
717
|
+
"settings.general.section.appearance": "Appearance",
|
|
718
|
+
"settings.general.section.notifications": "System notifications",
|
|
719
|
+
"settings.general.section.updates": "Updates",
|
|
720
|
+
"settings.general.section.sounds": "Sound effects",
|
|
721
|
+
"settings.general.section.feed": "Feed",
|
|
722
|
+
"settings.general.section.display": "Display",
|
|
723
|
+
|
|
724
|
+
"settings.general.row.language.title": "Language",
|
|
725
|
+
"settings.general.row.language.description": "Change the display language for OpenCode",
|
|
726
|
+
"settings.general.row.appearance.title": "Appearance",
|
|
727
|
+
"settings.general.row.appearance.description": "Customise how OpenCode looks on your device",
|
|
728
|
+
"settings.general.row.colorScheme.title": "Color scheme",
|
|
729
|
+
"settings.general.row.colorScheme.description": "Choose whether OpenCode follows the system, light, or dark theme",
|
|
730
|
+
"settings.general.row.theme.title": "Theme",
|
|
731
|
+
"settings.general.row.theme.description": "Customise how OpenCode is themed.",
|
|
732
|
+
"settings.general.row.font.title": "Font",
|
|
733
|
+
"settings.general.row.font.description": "Customise the mono font used in code blocks",
|
|
734
|
+
"settings.general.row.followup.title": "Follow-up behavior",
|
|
735
|
+
"settings.general.row.followup.description": "Choose whether follow-up prompts steer immediately or wait in a queue",
|
|
736
|
+
"settings.general.row.followup.option.queue": "Queue",
|
|
737
|
+
"settings.general.row.followup.option.steer": "Steer",
|
|
738
|
+
"settings.general.row.reasoningSummaries.title": "Show reasoning summaries",
|
|
739
|
+
"settings.general.row.reasoningSummaries.description": "Display model reasoning summaries in the timeline",
|
|
740
|
+
"settings.general.row.shellToolPartsExpanded.title": "Expand shell tool parts",
|
|
741
|
+
"settings.general.row.shellToolPartsExpanded.description":
|
|
742
|
+
"Show shell tool parts expanded by default in the timeline",
|
|
743
|
+
"settings.general.row.editToolPartsExpanded.title": "Expand edit tool parts",
|
|
744
|
+
"settings.general.row.editToolPartsExpanded.description":
|
|
745
|
+
"Show edit, write, and patch tool parts expanded by default in the timeline",
|
|
746
|
+
|
|
747
|
+
"settings.general.row.wayland.title": "Use native Wayland",
|
|
748
|
+
"settings.general.row.wayland.description": "Disable X11 fallback on Wayland. Requires restart.",
|
|
749
|
+
"settings.general.row.wayland.tooltip":
|
|
750
|
+
"On Linux with mixed refresh-rate monitors, native Wayland can be more stable.",
|
|
751
|
+
|
|
752
|
+
"settings.general.row.releaseNotes.title": "Release notes",
|
|
753
|
+
"settings.general.row.releaseNotes.description": "Show What's New popups after updates",
|
|
754
|
+
|
|
755
|
+
"settings.updates.row.startup.title": "Check for updates on startup",
|
|
756
|
+
"settings.updates.row.startup.description": "Automatically check for updates when OpenCode launches",
|
|
757
|
+
"settings.updates.row.check.title": "Check for updates",
|
|
758
|
+
"settings.updates.row.check.description": "Manually check for updates and install if available",
|
|
759
|
+
"settings.updates.action.checkNow": "Check now",
|
|
760
|
+
"settings.updates.action.checking": "Checking...",
|
|
761
|
+
"settings.updates.toast.latest.title": "You're up to date",
|
|
762
|
+
"settings.updates.toast.latest.description": "You're running the latest version of OpenCode.",
|
|
763
|
+
"font.option.ibmPlexMono": "IBM Plex Mono",
|
|
764
|
+
"font.option.cascadiaCode": "Cascadia Code",
|
|
765
|
+
"font.option.firaCode": "Fira Code",
|
|
766
|
+
"font.option.hack": "Hack",
|
|
767
|
+
"font.option.inconsolata": "Inconsolata",
|
|
768
|
+
"font.option.intelOneMono": "Intel One Mono",
|
|
769
|
+
"font.option.iosevka": "Iosevka",
|
|
770
|
+
"font.option.jetbrainsMono": "JetBrains Mono",
|
|
771
|
+
"font.option.mesloLgs": "Meslo LGS",
|
|
772
|
+
"font.option.robotoMono": "Roboto Mono",
|
|
773
|
+
"font.option.sourceCodePro": "Source Code Pro",
|
|
774
|
+
"font.option.ubuntuMono": "Ubuntu Mono",
|
|
775
|
+
"font.option.geistMono": "Geist Mono",
|
|
776
|
+
"sound.option.none": "None",
|
|
777
|
+
"sound.option.alert01": "Alert 01",
|
|
778
|
+
"sound.option.alert02": "Alert 02",
|
|
779
|
+
"sound.option.alert03": "Alert 03",
|
|
780
|
+
"sound.option.alert04": "Alert 04",
|
|
781
|
+
"sound.option.alert05": "Alert 05",
|
|
782
|
+
"sound.option.alert06": "Alert 06",
|
|
783
|
+
"sound.option.alert07": "Alert 07",
|
|
784
|
+
"sound.option.alert08": "Alert 08",
|
|
785
|
+
"sound.option.alert09": "Alert 09",
|
|
786
|
+
"sound.option.alert10": "Alert 10",
|
|
787
|
+
"sound.option.bipbop01": "Bip-bop 01",
|
|
788
|
+
"sound.option.bipbop02": "Bip-bop 02",
|
|
789
|
+
"sound.option.bipbop03": "Bip-bop 03",
|
|
790
|
+
"sound.option.bipbop04": "Bip-bop 04",
|
|
791
|
+
"sound.option.bipbop05": "Bip-bop 05",
|
|
792
|
+
"sound.option.bipbop06": "Bip-bop 06",
|
|
793
|
+
"sound.option.bipbop07": "Bip-bop 07",
|
|
794
|
+
"sound.option.bipbop08": "Bip-bop 08",
|
|
795
|
+
"sound.option.bipbop09": "Bip-bop 09",
|
|
796
|
+
"sound.option.bipbop10": "Bip-bop 10",
|
|
797
|
+
"sound.option.staplebops01": "Staplebops 01",
|
|
798
|
+
"sound.option.staplebops02": "Staplebops 02",
|
|
799
|
+
"sound.option.staplebops03": "Staplebops 03",
|
|
800
|
+
"sound.option.staplebops04": "Staplebops 04",
|
|
801
|
+
"sound.option.staplebops05": "Staplebops 05",
|
|
802
|
+
"sound.option.staplebops06": "Staplebops 06",
|
|
803
|
+
"sound.option.staplebops07": "Staplebops 07",
|
|
804
|
+
"sound.option.nope01": "Nope 01",
|
|
805
|
+
"sound.option.nope02": "Nope 02",
|
|
806
|
+
"sound.option.nope03": "Nope 03",
|
|
807
|
+
"sound.option.nope04": "Nope 04",
|
|
808
|
+
"sound.option.nope05": "Nope 05",
|
|
809
|
+
"sound.option.nope06": "Nope 06",
|
|
810
|
+
"sound.option.nope07": "Nope 07",
|
|
811
|
+
"sound.option.nope08": "Nope 08",
|
|
812
|
+
"sound.option.nope09": "Nope 09",
|
|
813
|
+
"sound.option.nope10": "Nope 10",
|
|
814
|
+
"sound.option.nope11": "Nope 11",
|
|
815
|
+
"sound.option.nope12": "Nope 12",
|
|
816
|
+
"sound.option.yup01": "Yup 01",
|
|
817
|
+
"sound.option.yup02": "Yup 02",
|
|
818
|
+
"sound.option.yup03": "Yup 03",
|
|
819
|
+
"sound.option.yup04": "Yup 04",
|
|
820
|
+
"sound.option.yup05": "Yup 05",
|
|
821
|
+
"sound.option.yup06": "Yup 06",
|
|
822
|
+
|
|
823
|
+
"settings.general.notifications.agent.title": "Agent",
|
|
824
|
+
"settings.general.notifications.agent.description":
|
|
825
|
+
"Show system notification when the agent is complete or needs attention",
|
|
826
|
+
"settings.general.notifications.permissions.title": "Permissions",
|
|
827
|
+
"settings.general.notifications.permissions.description": "Show system notification when a permission is required",
|
|
828
|
+
"settings.general.notifications.errors.title": "Errors",
|
|
829
|
+
"settings.general.notifications.errors.description": "Show system notification when an error occurs",
|
|
830
|
+
|
|
831
|
+
"settings.general.sounds.agent.title": "Agent",
|
|
832
|
+
"settings.general.sounds.agent.description": "Play sound when the agent is complete or needs attention",
|
|
833
|
+
"settings.general.sounds.permissions.title": "Permissions",
|
|
834
|
+
"settings.general.sounds.permissions.description": "Play sound when a permission is required",
|
|
835
|
+
"settings.general.sounds.errors.title": "Errors",
|
|
836
|
+
"settings.general.sounds.errors.description": "Play sound when an error occurs",
|
|
837
|
+
|
|
838
|
+
"settings.shortcuts.title": "Keyboard shortcuts",
|
|
839
|
+
"settings.shortcuts.reset.button": "Reset to defaults",
|
|
840
|
+
"settings.shortcuts.reset.toast.title": "Shortcuts reset",
|
|
841
|
+
"settings.shortcuts.reset.toast.description": "Keyboard shortcuts have been reset to defaults.",
|
|
842
|
+
"settings.shortcuts.conflict.title": "Shortcut already in use",
|
|
843
|
+
"settings.shortcuts.conflict.description": "{{keybind}} is already assigned to {{titles}}.",
|
|
844
|
+
"settings.shortcuts.unassigned": "Unassigned",
|
|
845
|
+
"settings.shortcuts.pressKeys": "Press keys",
|
|
846
|
+
"settings.shortcuts.search.placeholder": "Search shortcuts",
|
|
847
|
+
"settings.shortcuts.search.empty": "No shortcuts found",
|
|
848
|
+
|
|
849
|
+
"settings.shortcuts.group.general": "General",
|
|
850
|
+
"settings.shortcuts.group.session": "Session",
|
|
851
|
+
"settings.shortcuts.group.navigation": "Navigation",
|
|
852
|
+
"settings.shortcuts.group.modelAndAgent": "Model and agent",
|
|
853
|
+
"settings.shortcuts.group.terminal": "Terminal",
|
|
854
|
+
"settings.shortcuts.group.prompt": "Prompt",
|
|
855
|
+
|
|
856
|
+
"settings.providers.title": "Providers",
|
|
857
|
+
"settings.providers.description": "Provider settings will be configurable here.",
|
|
858
|
+
"settings.providers.section.connected": "Connected providers",
|
|
859
|
+
"settings.providers.connected.empty": "No connected providers",
|
|
860
|
+
"settings.providers.connected.environmentDescription": "Connected from your environment variables",
|
|
861
|
+
"settings.providers.section.popular": "Popular providers",
|
|
862
|
+
"settings.providers.custom.description": "Add an OpenAI-compatible provider by base URL.",
|
|
863
|
+
"settings.providers.tag.environment": "Environment",
|
|
864
|
+
"settings.providers.tag.config": "Config",
|
|
865
|
+
"settings.providers.tag.custom": "Custom",
|
|
866
|
+
"settings.providers.tag.other": "Other",
|
|
867
|
+
"settings.models.title": "Models",
|
|
868
|
+
"settings.models.description": "Model settings will be configurable here.",
|
|
869
|
+
"settings.agents.title": "Agents",
|
|
870
|
+
"settings.agents.description": "Agent settings will be configurable here.",
|
|
871
|
+
"settings.commands.title": "Commands",
|
|
872
|
+
"settings.commands.description": "Command settings will be configurable here.",
|
|
873
|
+
"settings.mcp.title": "MCP",
|
|
874
|
+
"settings.mcp.description": "MCP settings will be configurable here.",
|
|
875
|
+
|
|
876
|
+
"settings.permissions.title": "Permissions",
|
|
877
|
+
"settings.permissions.description": "Control what tools the server can use by default.",
|
|
878
|
+
"settings.permissions.section.tools": "Tools",
|
|
879
|
+
"settings.permissions.toast.updateFailed.title": "Failed to update permissions",
|
|
880
|
+
|
|
881
|
+
"settings.permissions.action.allow": "Allow",
|
|
882
|
+
"settings.permissions.action.ask": "Ask",
|
|
883
|
+
"settings.permissions.action.deny": "Deny",
|
|
884
|
+
|
|
885
|
+
"settings.permissions.tool.read.title": "Read",
|
|
886
|
+
"settings.permissions.tool.read.description": "Reading a file (matches the file path)",
|
|
887
|
+
"settings.permissions.tool.edit.title": "Edit",
|
|
888
|
+
"settings.permissions.tool.edit.description": "Modify files, including edits, writes, patches, and multi-edits",
|
|
889
|
+
"settings.permissions.tool.glob.title": "Glob",
|
|
890
|
+
"settings.permissions.tool.glob.description": "Match files using glob patterns",
|
|
891
|
+
"settings.permissions.tool.grep.title": "Grep",
|
|
892
|
+
"settings.permissions.tool.grep.description": "Search file contents using regular expressions",
|
|
893
|
+
"settings.permissions.tool.list.title": "List",
|
|
894
|
+
"settings.permissions.tool.list.description": "List files within a directory",
|
|
895
|
+
"settings.permissions.tool.bash.title": "Bash",
|
|
896
|
+
"settings.permissions.tool.bash.description": "Run shell commands",
|
|
897
|
+
"settings.permissions.tool.task.title": "Task",
|
|
898
|
+
"settings.permissions.tool.task.description": "Launch sub-agents",
|
|
899
|
+
"settings.permissions.tool.skill.title": "Skill",
|
|
900
|
+
"settings.permissions.tool.skill.description": "Load a skill by name",
|
|
901
|
+
"settings.permissions.tool.lsp.title": "LSP",
|
|
902
|
+
"settings.permissions.tool.lsp.description": "Run language server queries",
|
|
903
|
+
"settings.permissions.tool.todoread.title": "Todo Read",
|
|
904
|
+
"settings.permissions.tool.todoread.description": "Read the todo list",
|
|
905
|
+
"settings.permissions.tool.todowrite.title": "Todo Write",
|
|
906
|
+
"settings.permissions.tool.todowrite.description": "Update the todo list",
|
|
907
|
+
"settings.permissions.tool.webfetch.title": "Web Fetch",
|
|
908
|
+
"settings.permissions.tool.webfetch.description": "Fetch content from a URL",
|
|
909
|
+
"settings.permissions.tool.websearch.title": "Web Search",
|
|
910
|
+
"settings.permissions.tool.websearch.description": "Search the web",
|
|
911
|
+
"settings.permissions.tool.codesearch.title": "Code Search",
|
|
912
|
+
"settings.permissions.tool.codesearch.description": "Search code on the web",
|
|
913
|
+
"settings.permissions.tool.external_directory.title": "External Directory",
|
|
914
|
+
"settings.permissions.tool.external_directory.description": "Access files outside the project directory",
|
|
915
|
+
"settings.permissions.tool.doom_loop.title": "Doom Loop",
|
|
916
|
+
"settings.permissions.tool.doom_loop.description": "Detect repeated tool calls with identical input",
|
|
917
|
+
|
|
918
|
+
"session.delete.failed.title": "Failed to delete session",
|
|
919
|
+
"session.delete.title": "Delete session",
|
|
920
|
+
"session.delete.confirm": 'Delete session "{{name}}"?',
|
|
921
|
+
"session.delete.button": "Delete session",
|
|
922
|
+
|
|
923
|
+
"workspace.new": "New workspace",
|
|
924
|
+
"workspace.type.local": "local",
|
|
925
|
+
"workspace.type.sandbox": "sandbox",
|
|
926
|
+
"workspace.create.failed.title": "Failed to create workspace",
|
|
927
|
+
"workspace.delete.failed.title": "Failed to delete workspace",
|
|
928
|
+
"workspace.resetting.title": "Resetting workspace",
|
|
929
|
+
"workspace.resetting.description": "This may take a minute.",
|
|
930
|
+
"workspace.reset.failed.title": "Failed to reset workspace",
|
|
931
|
+
"workspace.reset.success.title": "Workspace reset",
|
|
932
|
+
"workspace.reset.success.description": "Workspace now matches the default branch.",
|
|
933
|
+
"workspace.error.stillPreparing": "Workspace is still preparing",
|
|
934
|
+
"workspace.status.checking": "Checking for unmerged changes...",
|
|
935
|
+
"workspace.status.error": "Unable to verify git status.",
|
|
936
|
+
"workspace.status.clean": "No unmerged changes detected.",
|
|
937
|
+
"workspace.status.dirty": "Unmerged changes detected in this workspace.",
|
|
938
|
+
"workspace.delete.title": "Delete workspace",
|
|
939
|
+
"workspace.delete.confirm": 'Delete workspace "{{name}}"?',
|
|
940
|
+
"workspace.delete.button": "Delete workspace",
|
|
941
|
+
"workspace.reset.title": "Reset workspace",
|
|
942
|
+
"workspace.reset.confirm": 'Reset workspace "{{name}}"?',
|
|
943
|
+
"workspace.reset.button": "Reset workspace",
|
|
944
|
+
"workspace.reset.archived.none": "No active sessions will be archived.",
|
|
945
|
+
"workspace.reset.archived.one": "1 session will be archived.",
|
|
946
|
+
"workspace.reset.archived.many": "{{count}} sessions will be archived.",
|
|
947
|
+
"workspace.reset.note": "This will reset the workspace to match the default branch.",
|
|
948
|
+
}
|