diff options
| author | adamelmore <[email protected]> | 2026-01-26 12:18:10 -0600 |
|---|---|---|
| committer | adamelmore <[email protected]> | 2026-01-26 13:03:34 -0600 |
| commit | 97aec21cb3e74cabcae77fd89a2e8be67376b3a5 (patch) | |
| tree | a240cd9c215664563d60da9943cf5264226635c1 /packages/app/src/i18n | |
| parent | 319ad2a3916862adaedcc52a8b88d8e131516b1f (diff) | |
| download | opencode-97aec21cb3e74cabcae77fd89a2e8be67376b3a5.tar.gz opencode-97aec21cb3e74cabcae77fd89a2e8be67376b3a5.zip | |
chore(app): missing i18n strings
Diffstat (limited to 'packages/app/src/i18n')
| -rw-r--r-- | packages/app/src/i18n/en.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/app/src/i18n/en.ts b/packages/app/src/i18n/en.ts index 770b02136..44f8f8505 100644 --- a/packages/app/src/i18n/en.ts +++ b/packages/app/src/i18n/en.ts @@ -8,6 +8,7 @@ export const dict = { "command.category.theme": "Theme", "command.category.language": "Language", "command.category.file": "File", + "command.category.context": "Context", "command.category.terminal": "Terminal", "command.category.model": "Model", "command.category.mcp": "MCP", @@ -42,7 +43,10 @@ export const dict = { "command.session.new": "New session", "command.file.open": "Open file", "command.file.open.description": "Search files and commands", + "command.context.addSelection": "Add selection to context", + "command.context.addSelection.description": "Add selected lines from the current file", "command.terminal.toggle": "Toggle terminal", + "command.fileTree.toggle": "Toggle file tree", "command.review.toggle": "Toggle review", "command.terminal.new": "New terminal", "command.terminal.new.description": "Create a new terminal tab", @@ -172,6 +176,8 @@ export const dict = { "prompt.placeholder.shell": "Enter shell command...", "prompt.placeholder.normal": 'Ask anything... "{{example}}"', + "prompt.placeholder.summarizeComments": "Summarize comments…", + "prompt.placeholder.summarizeComment": "Summarize comment…", "prompt.mode.shell": "Shell", "prompt.mode.shell.exit": "esc to exit", @@ -342,6 +348,10 @@ export const dict = { "toast.model.none.description": "Connect a provider to summarize this session", "toast.file.loadFailed.title": "Failed to load file", + "toast.file.listFailed.title": "Failed to list files", + + "toast.context.noLineSelection.title": "No line selection", + "toast.context.noLineSelection.description": "Select a line range in a file tab first.", "toast.session.share.copyFailed.title": "Failed to copy URL to clipboard", "toast.session.share.success.title": "Session shared", @@ -417,8 +427,15 @@ export const dict = { "session.tab.context": "Context", "session.panel.reviewAndFiles": "Review and files", "session.review.filesChanged": "{{count}} Files Changed", + "session.review.change.one": "Change", + "session.review.change.other": "Changes", "session.review.loadingChanges": "Loading changes...", "session.review.empty": "No changes in this session yet", + "session.review.noChanges": "No changes", + + "session.files.selectToOpen": "Select a file to open", + "session.files.all": "All files", + "session.messages.renderEarlier": "Render earlier messages", "session.messages.loadingEarlier": "Loading earlier messages...", "session.messages.loadEarlier": "Load earlier messages", @@ -495,6 +512,8 @@ export const dict = { "sidebar.project.recentSessions": "Recent sessions", "sidebar.project.viewAllSessions": "View all sessions", + "app.name.desktop": "OpenCode Desktop", + "settings.section.desktop": "Desktop", "settings.section.server": "Server", "settings.tab.general": "General", @@ -678,6 +697,7 @@ export const dict = { "workspace.reset.failed.title": "Failed to reset workspace", "workspace.reset.success.title": "Workspace reset", "workspace.reset.success.description": "Workspace now matches the default branch.", + "workspace.error.stillPreparing": "Workspace is still preparing", "workspace.status.checking": "Checking for unmerged changes...", "workspace.status.error": "Unable to verify git status.", "workspace.status.clean": "No unmerged changes detected.", |
