@ruimte/agents-react 0.0.0 → 0.7.0
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/LICENSE +110 -0
- package/README.md +142 -1
- package/dist/agents/AccountDot.d.ts +4 -0
- package/dist/agents/AccountDot.js +8 -0
- package/dist/agents/AgentIcon.d.ts +6 -0
- package/dist/agents/AgentIcon.js +20 -0
- package/dist/agents/ProviderLogo.d.ts +8 -0
- package/dist/agents/ProviderLogo.js +8 -0
- package/dist/agents/account-limits.d.ts +7 -0
- package/dist/agents/account-limits.js +26 -0
- package/dist/agents/accounts.d.ts +22 -0
- package/dist/agents/accounts.js +103 -0
- package/dist/agents/model-name.d.ts +6 -0
- package/dist/agents/model-name.js +44 -0
- package/dist/agents/provider-paths.d.ts +2 -0
- package/dist/agents/provider-paths.js +8 -0
- package/dist/agents/status-look.d.ts +13 -0
- package/dist/agents/status-look.js +22 -0
- package/dist/chat/account-choice.d.ts +11 -0
- package/dist/chat/account-choice.js +30 -0
- package/dist/chat/actions.d.ts +6 -0
- package/dist/chat/actions.js +64 -0
- package/dist/chat/activity.d.ts +5 -0
- package/dist/chat/activity.js +4 -0
- package/dist/chat/attachments.d.ts +23 -0
- package/dist/chat/attachments.js +70 -0
- package/dist/chat/bookmarks.d.ts +14 -0
- package/dist/chat/bookmarks.js +73 -0
- package/dist/chat/chat-client.d.ts +53 -0
- package/dist/chat/chat-client.js +232 -0
- package/dist/chat/chat-references.d.ts +5 -0
- package/dist/chat/chat-references.js +5 -0
- package/dist/chat/drafts.d.ts +29 -0
- package/dist/chat/drafts.js +104 -0
- package/dist/chat/forks.d.ts +2 -0
- package/dist/chat/forks.js +26 -0
- package/dist/chat/guards.d.ts +12 -0
- package/dist/chat/guards.js +63 -0
- package/dist/chat/logic/answers.d.ts +3 -0
- package/dist/chat/logic/answers.js +14 -0
- package/dist/chat/logic/bookmarks.d.ts +5 -0
- package/dist/chat/logic/bookmarks.js +31 -0
- package/dist/chat/logic/context-usage.d.ts +12 -0
- package/dist/chat/logic/context-usage.js +20 -0
- package/dist/chat/logic/fork.d.ts +44 -0
- package/dist/chat/logic/fork.js +138 -0
- package/dist/chat/logic/handback.d.ts +2 -0
- package/dist/chat/logic/handback.js +8 -0
- package/dist/chat/logic/json.d.ts +1 -0
- package/dist/chat/logic/json.js +2 -0
- package/dist/chat/logic/limit.d.ts +7 -0
- package/dist/chat/logic/limit.js +34 -0
- package/dist/chat/logic/resume-compaction.d.ts +14 -0
- package/dist/chat/logic/resume-compaction.js +47 -0
- package/dist/chat/logic/scrubber.d.ts +50 -0
- package/dist/chat/logic/scrubber.js +216 -0
- package/dist/chat/logic/timeline-copy.d.ts +4 -0
- package/dist/chat/logic/timeline-copy.js +51 -0
- package/dist/chat/logic/timeline-target.d.ts +12 -0
- package/dist/chat/logic/timeline-target.js +34 -0
- package/dist/chat/logic/timeline.d.ts +110 -0
- package/dist/chat/logic/timeline.js +339 -0
- package/dist/chat/logic/tool-catalog.d.ts +10 -0
- package/dist/chat/logic/tool-catalog.js +40 -0
- package/dist/chat/logic/tools.d.ts +15 -0
- package/dist/chat/logic/tools.js +79 -0
- package/dist/chat/logic/workflow.d.ts +14 -0
- package/dist/chat/logic/workflow.js +47 -0
- package/dist/chat/mentions.d.ts +46 -0
- package/dist/chat/mentions.js +128 -0
- package/dist/chat/persisted-json.d.ts +5 -0
- package/dist/chat/persisted-json.js +24 -0
- package/dist/chat/preferences.d.ts +23 -0
- package/dist/chat/preferences.js +110 -0
- package/dist/chat/quote.d.ts +2 -0
- package/dist/chat/quote.js +25 -0
- package/dist/chat/recent-messages.d.ts +17 -0
- package/dist/chat/recent-messages.js +28 -0
- package/dist/chat/resume-compaction-dismissals.d.ts +3 -0
- package/dist/chat/resume-compaction-dismissals.js +14 -0
- package/dist/chat/runtime-modes.d.ts +4 -0
- package/dist/chat/runtime-modes.js +11 -0
- package/dist/chat/stash.d.ts +24 -0
- package/dist/chat/stash.js +88 -0
- package/dist/chat/subagent-conversation.d.ts +38 -0
- package/dist/chat/subagent-conversation.js +150 -0
- package/dist/chat/subagent-list.d.ts +16 -0
- package/dist/chat/subagent-list.js +76 -0
- package/dist/chat/subagent-support.d.ts +6 -0
- package/dist/chat/subagent-support.js +14 -0
- package/dist/chat/subagent-view.d.ts +33 -0
- package/dist/chat/subagent-view.js +65 -0
- package/dist/chat/thumbnails.d.ts +10 -0
- package/dist/chat/thumbnails.js +87 -0
- package/dist/chat/timeline-scroll.d.ts +16 -0
- package/dist/chat/timeline-scroll.js +100 -0
- package/dist/chat/ui/AccountPill.d.ts +3 -0
- package/dist/chat/ui/AccountPill.js +24 -0
- package/dist/chat/ui/BookmarkMarker.d.ts +8 -0
- package/dist/chat/ui/BookmarkMarker.js +59 -0
- package/dist/chat/ui/BookmarkSubmenu.d.ts +3 -0
- package/dist/chat/ui/BookmarkSubmenu.js +44 -0
- package/dist/chat/ui/ChatActivity.d.ts +3 -0
- package/dist/chat/ui/ChatActivity.js +87 -0
- package/dist/chat/ui/ChatReferenceChip.d.ts +4 -0
- package/dist/chat/ui/ChatReferenceChip.js +17 -0
- package/dist/chat/ui/CodeBlock.d.ts +4 -0
- package/dist/chat/ui/CodeBlock.js +130 -0
- package/dist/chat/ui/Composer.d.ts +14 -0
- package/dist/chat/ui/Composer.js +821 -0
- package/dist/chat/ui/ComposerInput.d.ts +28 -0
- package/dist/chat/ui/ComposerInput.js +118 -0
- package/dist/chat/ui/DiffPool.d.ts +5 -0
- package/dist/chat/ui/DiffPool.js +26 -0
- package/dist/chat/ui/EditDiff.d.ts +4 -0
- package/dist/chat/ui/EditDiff.js +21 -0
- package/dist/chat/ui/FadingWords.d.ts +3 -0
- package/dist/chat/ui/FadingWords.js +5 -0
- package/dist/chat/ui/ImageView.d.ts +6 -0
- package/dist/chat/ui/ImageView.js +85 -0
- package/dist/chat/ui/LimitState.d.ts +8 -0
- package/dist/chat/ui/LimitState.js +117 -0
- package/dist/chat/ui/Markdown.d.ts +18 -0
- package/dist/chat/ui/Markdown.js +158 -0
- package/dist/chat/ui/MessageActions.d.ts +9 -0
- package/dist/chat/ui/MessageActions.js +56 -0
- package/dist/chat/ui/Pickers.d.ts +15 -0
- package/dist/chat/ui/Pickers.js +110 -0
- package/dist/chat/ui/PromptComposer.d.ts +13 -0
- package/dist/chat/ui/PromptComposer.js +48 -0
- package/dist/chat/ui/QuoteButton.d.ts +7 -0
- package/dist/chat/ui/QuoteButton.js +76 -0
- package/dist/chat/ui/ResumeCompactionDock.d.ts +5 -0
- package/dist/chat/ui/ResumeCompactionDock.js +15 -0
- package/dist/chat/ui/RunSettings.d.ts +25 -0
- package/dist/chat/ui/RunSettings.js +148 -0
- package/dist/chat/ui/Scrubber.d.ts +17 -0
- package/dist/chat/ui/Scrubber.js +121 -0
- package/dist/chat/ui/SubagentControls.d.ts +11 -0
- package/dist/chat/ui/SubagentControls.js +37 -0
- package/dist/chat/ui/SubagentStopButton.d.ts +7 -0
- package/dist/chat/ui/SubagentStopButton.js +36 -0
- package/dist/chat/ui/SubagentTimeline.d.ts +4 -0
- package/dist/chat/ui/SubagentTimeline.js +92 -0
- package/dist/chat/ui/Timeline.d.ts +5 -0
- package/dist/chat/ui/Timeline.js +318 -0
- package/dist/chat/ui/TimelineMenu.d.ts +12 -0
- package/dist/chat/ui/TimelineMenu.js +61 -0
- package/dist/chat/ui/UnifiedDiff.d.ts +8 -0
- package/dist/chat/ui/UnifiedDiff.js +51 -0
- package/dist/chat/ui/UploadThumb.d.ts +4 -0
- package/dist/chat/ui/UploadThumb.js +11 -0
- package/dist/chat/ui/chips.d.ts +4 -0
- package/dist/chat/ui/chips.js +11 -0
- package/dist/chat/ui/code-lines.d.ts +18 -0
- package/dist/chat/ui/code-lines.js +46 -0
- package/dist/chat/ui/code-streaming.d.ts +1 -0
- package/dist/chat/ui/code-streaming.js +3 -0
- package/dist/chat/ui/code-theme.d.ts +3 -0
- package/dist/chat/ui/code-theme.js +10 -0
- package/dist/chat/ui/composer/chips.d.ts +6 -0
- package/dist/chat/ui/composer/chips.js +29 -0
- package/dist/chat/ui/composer/editor.d.ts +11 -0
- package/dist/chat/ui/composer/editor.js +94 -0
- package/dist/chat/ui/composer/keys.d.ts +30 -0
- package/dist/chat/ui/composer/keys.js +98 -0
- package/dist/chat/ui/diff-theme.d.ts +2 -0
- package/dist/chat/ui/diff-theme.js +20 -0
- package/dist/chat/ui/file-links.d.ts +5 -0
- package/dist/chat/ui/file-links.js +18 -0
- package/dist/chat/ui/find-reveal.d.ts +7 -0
- package/dist/chat/ui/find-reveal.js +13 -0
- package/dist/chat/ui/icons.d.ts +4 -0
- package/dist/chat/ui/icons.js +20 -0
- package/dist/chat/ui/markdown-blocks.d.ts +6 -0
- package/dist/chat/ui/markdown-blocks.js +101 -0
- package/dist/chat/ui/quote-selection.d.ts +3 -0
- package/dist/chat/ui/quote-selection.js +44 -0
- package/dist/chat/ui/rehype-chips.d.ts +23 -0
- package/dist/chat/ui/rehype-chips.js +28 -0
- package/dist/chat/ui/rehype-fade.d.ts +23 -0
- package/dist/chat/ui/rehype-fade.js +30 -0
- package/dist/chat/ui/remark-html-as-text.d.ts +8 -0
- package/dist/chat/ui/remark-html-as-text.js +24 -0
- package/dist/chat/ui/reveal.d.ts +13 -0
- package/dist/chat/ui/reveal.js +112 -0
- package/dist/chat/ui/rows/ForksRow.d.ts +4 -0
- package/dist/chat/ui/rows/ForksRow.js +40 -0
- package/dist/chat/ui/rows/MessageRows.d.ts +36 -0
- package/dist/chat/ui/rows/MessageRows.js +190 -0
- package/dist/chat/ui/rows/Rows.d.ts +12 -0
- package/dist/chat/ui/rows/Rows.js +49 -0
- package/dist/chat/ui/rows/SubagentRow.d.ts +15 -0
- package/dist/chat/ui/rows/SubagentRow.js +98 -0
- package/dist/chat/ui/rows/WorkRows.d.ts +46 -0
- package/dist/chat/ui/rows/WorkRows.js +143 -0
- package/dist/chat/ui/rows/WorkflowRow.d.ts +7 -0
- package/dist/chat/ui/rows/WorkflowRow.js +37 -0
- package/dist/chat/ui/rows/row-rhythm.d.ts +3 -0
- package/dist/chat/ui/rows/row-rhythm.js +14 -0
- package/dist/chat/ui/useToggleSet.d.ts +6 -0
- package/dist/chat/ui/useToggleSet.js +25 -0
- package/dist/host.d.ts +167 -0
- package/dist/host.js +41 -0
- package/dist/lazy.d.ts +5 -0
- package/dist/lazy.js +35 -0
- package/dist/locales/en/agent-chat.json +417 -0
- package/dist/locales/en/agent-prompts.json +42 -0
- package/dist/locales/en/agent-providers.json +131 -0
- package/dist/locales/en/agent-usage.json +131 -0
- package/dist/locales/nl/agent-chat.json +417 -0
- package/dist/locales/nl/agent-prompts.json +42 -0
- package/dist/locales/nl/agent-providers.json +131 -0
- package/dist/locales/nl/agent-usage.json +131 -0
- package/dist/locales.d.ts +5 -0
- package/dist/locales.js +18 -0
- package/dist/mounted-registry.d.ts +7 -0
- package/dist/mounted-registry.js +39 -0
- package/dist/port-transport.d.ts +6 -0
- package/dist/port-transport.js +120 -0
- package/dist/prompts/logic/focus.d.ts +1 -0
- package/dist/prompts/logic/focus.js +17 -0
- package/dist/prompts/logic/keys.d.ts +42 -0
- package/dist/prompts/logic/keys.js +84 -0
- package/dist/prompts/logic/prompts.d.ts +34 -0
- package/dist/prompts/logic/prompts.fixtures.d.ts +5 -0
- package/dist/prompts/logic/prompts.fixtures.js +73 -0
- package/dist/prompts/logic/prompts.js +22 -0
- package/dist/prompts/logic/subjects.d.ts +49 -0
- package/dist/prompts/logic/subjects.js +56 -0
- package/dist/prompts/logic/useFocusAfterAnswer.d.ts +6 -0
- package/dist/prompts/logic/useFocusAfterAnswer.js +28 -0
- package/dist/prompts/logic/usePromptSession.d.ts +24 -0
- package/dist/prompts/logic/usePromptSession.js +87 -0
- package/dist/prompts/ui/ApprovalBody.d.ts +13 -0
- package/dist/prompts/ui/ApprovalBody.js +35 -0
- package/dist/prompts/ui/PromptActions.d.ts +26 -0
- package/dist/prompts/ui/PromptActions.js +19 -0
- package/dist/prompts/ui/PromptCard.d.ts +16 -0
- package/dist/prompts/ui/PromptCard.js +50 -0
- package/dist/prompts/ui/PromptView.d.ts +2 -0
- package/dist/prompts/ui/PromptView.js +47 -0
- package/dist/prompts/ui/QuestionBody.d.ts +9 -0
- package/dist/prompts/ui/QuestionBody.js +87 -0
- package/dist/providers/AccountColors.d.ts +5 -0
- package/dist/providers/AccountColors.js +8 -0
- package/dist/providers/AccountDetail.d.ts +12 -0
- package/dist/providers/AccountDetail.js +76 -0
- package/dist/providers/AccountVariables.d.ts +8 -0
- package/dist/providers/AccountVariables.js +48 -0
- package/dist/providers/AddAccountForm.d.ts +10 -0
- package/dist/providers/AddAccountForm.js +58 -0
- package/dist/providers/CliDetail.d.ts +11 -0
- package/dist/providers/CliDetail.js +62 -0
- package/dist/providers/ProvidersPane.d.ts +8 -0
- package/dist/providers/ProvidersPane.js +90 -0
- package/dist/providers/account-actions.d.ts +7 -0
- package/dist/providers/account-actions.js +53 -0
- package/dist/providers/parts.d.ts +9 -0
- package/dist/providers/parts.js +18 -0
- package/dist/providers/provider-abilities.d.ts +2 -0
- package/dist/providers/provider-abilities.js +7 -0
- package/dist/providers/variables.d.ts +13 -0
- package/dist/providers/variables.js +53 -0
- package/dist/scope.d.ts +11 -0
- package/dist/scope.js +10 -0
- package/dist/settings/sections.d.ts +13 -0
- package/dist/settings/sections.js +30 -0
- package/dist/state/chats.d.ts +32 -0
- package/dist/state/chats.js +124 -0
- package/dist/state/provider-accounts.d.ts +17 -0
- package/dist/state/provider-accounts.js +63 -0
- package/dist/state/providers.d.ts +17 -0
- package/dist/state/providers.js +29 -0
- package/dist/state/usage.d.ts +41 -0
- package/dist/state/usage.js +100 -0
- package/dist/theme.css +186 -0
- package/dist/transport.d.ts +24 -0
- package/dist/transport.js +16 -0
- package/dist/ui/PlainTextarea.d.ts +2 -0
- package/dist/ui/PlainTextarea.js +5 -0
- package/dist/usage/LimitsList.d.ts +18 -0
- package/dist/usage/LimitsList.js +69 -0
- package/dist/usage/UsageBreakdown.d.ts +9 -0
- package/dist/usage/UsageBreakdown.js +69 -0
- package/dist/usage/UsageChart.d.ts +10 -0
- package/dist/usage/UsageChart.js +49 -0
- package/dist/usage/UsageDialog.d.ts +6 -0
- package/dist/usage/UsageDialog.js +15 -0
- package/dist/usage/UsageLimits.d.ts +1 -0
- package/dist/usage/UsageLimits.js +62 -0
- package/dist/usage/UsageLimitsCard.d.ts +4 -0
- package/dist/usage/UsageLimitsCard.js +27 -0
- package/dist/usage/UsagePage.d.ts +7 -0
- package/dist/usage/UsagePage.js +161 -0
- package/dist/usage/UsagePane.d.ts +3 -0
- package/dist/usage/UsagePane.js +24 -0
- package/dist/usage/UsageSummary.d.ts +12 -0
- package/dist/usage/UsageSummary.js +15 -0
- package/dist/usage/UsageTiles.d.ts +7 -0
- package/dist/usage/UsageTiles.js +19 -0
- package/dist/usage/format.d.ts +14 -0
- package/dist/usage/format.js +50 -0
- package/dist/usage/limit-groups.d.ts +22 -0
- package/dist/usage/limit-groups.js +78 -0
- package/dist/usage/limits.d.ts +4 -0
- package/dist/usage/limits.js +58 -0
- package/dist/usage/money.d.ts +1 -0
- package/dist/usage/money.js +13 -0
- package/dist/usage/summary.d.ts +34 -0
- package/dist/usage/summary.js +90 -0
- package/package.json +639 -2
|
@@ -0,0 +1,417 @@
|
|
|
1
|
+
{
|
|
2
|
+
"transport": {
|
|
3
|
+
"notConnected": "The agents are not reachable",
|
|
4
|
+
"closedBeforeAnswer": "The connection to the agents closed before they answered",
|
|
5
|
+
"badReply": "The answer to {{type}} does not match its contract"
|
|
6
|
+
},
|
|
7
|
+
"attachments": {
|
|
8
|
+
"rejected": {
|
|
9
|
+
"empty": "The file is empty",
|
|
10
|
+
"tooLarge": "Larger than {{size}}",
|
|
11
|
+
"tooMany_one": "At most {{count}} file per message",
|
|
12
|
+
"tooMany_other": "At most {{count}} files per message",
|
|
13
|
+
"tooHeavy": "Attachments must total at most {{size}} per message"
|
|
14
|
+
},
|
|
15
|
+
"unreadable": "Could not read {{name}}",
|
|
16
|
+
"unreadableThumbnail": "Could not read the thumbnail"
|
|
17
|
+
},
|
|
18
|
+
"chatReference": {
|
|
19
|
+
"gone": "Chat not in this project",
|
|
20
|
+
"untitled": "Untitled chat",
|
|
21
|
+
"remove": "Remove {{title}}"
|
|
22
|
+
},
|
|
23
|
+
"fork": {
|
|
24
|
+
"refusal": {
|
|
25
|
+
"notInConversation": "This turn is not in the conversation",
|
|
26
|
+
"cliCannotFork": "This CLI has no conversation that can be forked",
|
|
27
|
+
"noConversation": "The CLI never started a conversation here",
|
|
28
|
+
"turnRunning": "Wait for the turn to end",
|
|
29
|
+
"originalGone": "The original is no longer in this project"
|
|
30
|
+
},
|
|
31
|
+
"point": {
|
|
32
|
+
"afterLast": "After the last turn",
|
|
33
|
+
"afterTurn": "After turn {{number}} of {{total}}",
|
|
34
|
+
"about": "{{where}}: \"{{prompt}}\""
|
|
35
|
+
},
|
|
36
|
+
"branch": {
|
|
37
|
+
"unnamed": "Name the branch",
|
|
38
|
+
"taken": "A branch with this name exists already"
|
|
39
|
+
},
|
|
40
|
+
"pill": {
|
|
41
|
+
"label": "Fork"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"resumeCompaction": {
|
|
45
|
+
"title": "Resume with less context",
|
|
46
|
+
"carried": "{{tokens}} tokens from earlier",
|
|
47
|
+
"keep": "Keep full history",
|
|
48
|
+
"compact": "Compact"
|
|
49
|
+
},
|
|
50
|
+
"limit": {
|
|
51
|
+
"usage": {
|
|
52
|
+
"pill": "Limited",
|
|
53
|
+
"pillUntil": "Limited until {{time}}",
|
|
54
|
+
"pillResumes": "Resumes {{time}}",
|
|
55
|
+
"title": "Stopped on a usage limit",
|
|
56
|
+
"resets": "The limit resets at {{time}}.",
|
|
57
|
+
"resumes": "Goes on by itself at {{time}}, when the limit resets."
|
|
58
|
+
},
|
|
59
|
+
"overload": {
|
|
60
|
+
"pill": "Overloaded",
|
|
61
|
+
"pillRetry": "Retry {{time}}",
|
|
62
|
+
"title": "The model was overloaded",
|
|
63
|
+
"sendAgain": "Send a message to try again.",
|
|
64
|
+
"retries": "Tries again by itself at {{time}}."
|
|
65
|
+
},
|
|
66
|
+
"toggle": "Resume at reset",
|
|
67
|
+
"machineOff": "Turned off for this machine. Turn it on in Settings, Agents.",
|
|
68
|
+
"continueOn": "Continue on",
|
|
69
|
+
"continueOnAria": "Continue on {{account}}",
|
|
70
|
+
"continueOnTip": "Goes on under {{account}}, which has the most room left. The interrupted turn is sent again.",
|
|
71
|
+
"continueFailed": "Could not continue on {{account}}"
|
|
72
|
+
},
|
|
73
|
+
"contextMeter": {
|
|
74
|
+
"aria": "{{percent}}% of the context used",
|
|
75
|
+
"title": "Context",
|
|
76
|
+
"of": "{{used}} of {{window}}",
|
|
77
|
+
"used": "{{tokens}} used",
|
|
78
|
+
"percentUsed": "{{percent}} used",
|
|
79
|
+
"estimate": "≈{{tokens}}",
|
|
80
|
+
"parts": {
|
|
81
|
+
"toolOutput": "Tool output",
|
|
82
|
+
"filesRead": "Files read",
|
|
83
|
+
"conversation": "Conversation",
|
|
84
|
+
"system": "System"
|
|
85
|
+
},
|
|
86
|
+
"compactNow": "Compact now"
|
|
87
|
+
},
|
|
88
|
+
"rows": {
|
|
89
|
+
"user": {
|
|
90
|
+
"heading": "You",
|
|
91
|
+
"showAll": "Show all",
|
|
92
|
+
"showLess": "Show less"
|
|
93
|
+
},
|
|
94
|
+
"report": {
|
|
95
|
+
"heading": "Report"
|
|
96
|
+
},
|
|
97
|
+
"reply": {
|
|
98
|
+
"agent": "Agent",
|
|
99
|
+
"writing": "Writing…"
|
|
100
|
+
},
|
|
101
|
+
"thinking": {
|
|
102
|
+
"live": "Thinking…",
|
|
103
|
+
"thoughtFor": "Thought for {{duration}}"
|
|
104
|
+
},
|
|
105
|
+
"note": {
|
|
106
|
+
"hide": "Hide",
|
|
107
|
+
"show": "Show",
|
|
108
|
+
"openFork": "Open fork"
|
|
109
|
+
},
|
|
110
|
+
"compaction": {
|
|
111
|
+
"plain": "Context compacted",
|
|
112
|
+
"from": "Context compacted from {{tokens}} tokens",
|
|
113
|
+
"summary": "Everything above reaches the agent only as a summary"
|
|
114
|
+
},
|
|
115
|
+
"approval": {
|
|
116
|
+
"allow": "Allowed",
|
|
117
|
+
"allow-always": "Always allowed",
|
|
118
|
+
"deny": "Declined",
|
|
119
|
+
"cancelled": "No longer needed"
|
|
120
|
+
},
|
|
121
|
+
"question": {
|
|
122
|
+
"notAnswered": "(not answered)",
|
|
123
|
+
"dismissed": "(dismissed)"
|
|
124
|
+
},
|
|
125
|
+
"subagent": {
|
|
126
|
+
"task": "Task",
|
|
127
|
+
"label": "Sub-agent",
|
|
128
|
+
"background": "background",
|
|
129
|
+
"doneIn": "done in {{duration}}",
|
|
130
|
+
"failedIn": "failed in {{duration}}",
|
|
131
|
+
"nothingYet": "Nothing to show yet.",
|
|
132
|
+
"truncated": "Only the beginning of this agent's work is kept.",
|
|
133
|
+
"showResult": "Show result",
|
|
134
|
+
"hideResult": "Hide result"
|
|
135
|
+
},
|
|
136
|
+
"workflow": {
|
|
137
|
+
"notStarted": "not started",
|
|
138
|
+
"waiting": "waiting",
|
|
139
|
+
"stopped": "stopped"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"work": {
|
|
143
|
+
"moreCharacters_one": "[{{count}} more character]",
|
|
144
|
+
"moreCharacters_other": "[{{count}} more characters]",
|
|
145
|
+
"loadingDiff": "Loading diff",
|
|
146
|
+
"runningFor": "running for {{elapsed}}",
|
|
147
|
+
"forksAfter_one": "A fork goes on after this turn",
|
|
148
|
+
"forksAfter_other": "{{count}} forks go on after this turn",
|
|
149
|
+
"omitted": {
|
|
150
|
+
"binary": "Binary file, no diff",
|
|
151
|
+
"tooLarge": "Too large to show"
|
|
152
|
+
},
|
|
153
|
+
"changedFiles_one": "{{count}} changed file",
|
|
154
|
+
"changedFiles_other": "{{count}} changed files",
|
|
155
|
+
"andMore": "and more, truncated",
|
|
156
|
+
"edits_one": "{{count}} edit",
|
|
157
|
+
"edits_other": "{{count}} edits",
|
|
158
|
+
"workingFor": "Working for"
|
|
159
|
+
},
|
|
160
|
+
"timeline": {
|
|
161
|
+
"empty": {
|
|
162
|
+
"ready": "{{model}} is ready. Ask it anything.",
|
|
163
|
+
"ask": "Ask anything.",
|
|
164
|
+
"canRead": "It can read",
|
|
165
|
+
"worksIn": "It works in"
|
|
166
|
+
},
|
|
167
|
+
"stripFailed": "The message strip failed to render",
|
|
168
|
+
"actions": {
|
|
169
|
+
"label": "Message actions",
|
|
170
|
+
"copied": "Copied"
|
|
171
|
+
},
|
|
172
|
+
"menu": {
|
|
173
|
+
"copyMessage": "Copy message",
|
|
174
|
+
"copyCode": "Copy code",
|
|
175
|
+
"copyMarkdown": "Copy as markdown",
|
|
176
|
+
"forkFromHere": "Fork from here",
|
|
177
|
+
"openInPreview": "Open in preview"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"group": {
|
|
181
|
+
"tools": {
|
|
182
|
+
"Read_one": "Read {{count}} file",
|
|
183
|
+
"Read_other": "Read {{count}} files",
|
|
184
|
+
"Write_one": "Wrote {{count}} file",
|
|
185
|
+
"Write_other": "Wrote {{count}} files",
|
|
186
|
+
"NotebookEdit_one": "Edited {{count}} notebook",
|
|
187
|
+
"NotebookEdit_other": "Edited {{count}} notebooks",
|
|
188
|
+
"Bash_one": "Ran {{count}} command",
|
|
189
|
+
"Bash_other": "Ran {{count}} commands",
|
|
190
|
+
"Grep_one": "Searched {{count}} pattern",
|
|
191
|
+
"Grep_other": "Searched {{count}} patterns",
|
|
192
|
+
"Glob_one": "Listed {{count}} pattern",
|
|
193
|
+
"Glob_other": "Listed {{count}} patterns",
|
|
194
|
+
"WebFetch_one": "Fetched {{count}} page",
|
|
195
|
+
"WebFetch_other": "Fetched {{count}} pages",
|
|
196
|
+
"WebSearch_one": "Searched the web {{count}} query",
|
|
197
|
+
"WebSearch_other": "Searched the web {{count}} queries",
|
|
198
|
+
"Task_one": "Delegated {{count}} task",
|
|
199
|
+
"Task_other": "Delegated {{count}} tasks",
|
|
200
|
+
"Agent_one": "Delegated {{count}} task",
|
|
201
|
+
"Agent_other": "Delegated {{count}} tasks",
|
|
202
|
+
"Skill_one": "Used {{count}} skill",
|
|
203
|
+
"Skill_other": "Used {{count}} skills",
|
|
204
|
+
"TodoWrite_one": "Updated {{count}} plan",
|
|
205
|
+
"TodoWrite_other": "Updated {{count}} plans"
|
|
206
|
+
},
|
|
207
|
+
"calls_one": "{{name}} {{count}} call",
|
|
208
|
+
"calls_other": "{{name}} {{count}} calls",
|
|
209
|
+
"edited_one": "Edited {{count}} file",
|
|
210
|
+
"edited_other": "Edited {{count}} files",
|
|
211
|
+
"toolCalls_one": "{{count}} tool call",
|
|
212
|
+
"toolCalls_other": "{{count}} tool calls",
|
|
213
|
+
"otherCalls_one": "{{count}} other tool call",
|
|
214
|
+
"otherCalls_other": "{{count}} other tool calls"
|
|
215
|
+
},
|
|
216
|
+
"turn": {
|
|
217
|
+
"about": "{{what}}: {{label}}",
|
|
218
|
+
"wokenByTask_one": "Woken by a task",
|
|
219
|
+
"wokenByTask_other": "Woken by {{count}} tasks",
|
|
220
|
+
"wokenByMessage_one": "Woken by a message",
|
|
221
|
+
"wokenByMessage_other": "Woken by {{count}} messages",
|
|
222
|
+
"subagentFinished": "Sub-agent finished: {{label}}",
|
|
223
|
+
"continued": "Continued on its own",
|
|
224
|
+
"stopped": "Stopped after {{duration}}",
|
|
225
|
+
"youStopped": "You stopped after {{duration}}",
|
|
226
|
+
"failed": "Failed after {{duration}}",
|
|
227
|
+
"worked": "Worked for {{duration}}"
|
|
228
|
+
},
|
|
229
|
+
"composer": {
|
|
230
|
+
"commands": {
|
|
231
|
+
"model": "Switch the model",
|
|
232
|
+
"compact": "Compact the context",
|
|
233
|
+
"clear": "Start a new context",
|
|
234
|
+
"skill": "Skill",
|
|
235
|
+
"cli": "{{cli}} command",
|
|
236
|
+
"anyCli": "CLI"
|
|
237
|
+
},
|
|
238
|
+
"notice": {
|
|
239
|
+
"clearFailed": "The thread could not be cleared",
|
|
240
|
+
"compactFailed": "The context could not be compacted",
|
|
241
|
+
"noAttachments": "{{agent}} takes no attachments",
|
|
242
|
+
"thisAgent": "This agent",
|
|
243
|
+
"rejected": "{{name}}: {{reason}}",
|
|
244
|
+
"queuedDoesNotFit": "{{name}} does not fit beside this draft ({{reason}}). The message stays queued.",
|
|
245
|
+
"thatFile": "That file",
|
|
246
|
+
"unreadable": "That file could not be read"
|
|
247
|
+
},
|
|
248
|
+
"placeholder": {
|
|
249
|
+
"disconnected": "Not connected to the machine",
|
|
250
|
+
"lead": "Ask anything",
|
|
251
|
+
"joiner": ", or",
|
|
252
|
+
"commands": "commands",
|
|
253
|
+
"files": "files",
|
|
254
|
+
"skills": "skills"
|
|
255
|
+
},
|
|
256
|
+
"jumpToEnd": "Jump to the end",
|
|
257
|
+
"mentions": {
|
|
258
|
+
"here": "Files in this folder",
|
|
259
|
+
"files": "Files",
|
|
260
|
+
"chats": "Chats in this project",
|
|
261
|
+
"noMatch": "No files or chats match",
|
|
262
|
+
"empty": "No files here"
|
|
263
|
+
},
|
|
264
|
+
"queue": {
|
|
265
|
+
"attachments_one": "{{count}} attachment",
|
|
266
|
+
"attachments_other": "{{count}} attachments",
|
|
267
|
+
"alreadySent": "That message was already sent",
|
|
268
|
+
"editFailed": "The message could not be taken back to edit",
|
|
269
|
+
"sendNow": "Send now"
|
|
270
|
+
},
|
|
271
|
+
"quote": {
|
|
272
|
+
"add": "Quote",
|
|
273
|
+
"remove": "Remove quote"
|
|
274
|
+
},
|
|
275
|
+
"removeAttachment": "Remove {{name}}",
|
|
276
|
+
"attach": "Attach files",
|
|
277
|
+
"tooLong": "characters, too long to send",
|
|
278
|
+
"stop": "Stop, Shift-click to also stop its sub-agents",
|
|
279
|
+
"queueButton": "Queue",
|
|
280
|
+
"send": "Send",
|
|
281
|
+
"clear": {
|
|
282
|
+
"title": "Clear the thread?",
|
|
283
|
+
"description": "A turn is running. Stop it and clear the thread?",
|
|
284
|
+
"confirm": "Stop and clear"
|
|
285
|
+
},
|
|
286
|
+
"waitingBelow": "Waiting for your answer below"
|
|
287
|
+
},
|
|
288
|
+
"activity": {
|
|
289
|
+
"subagents_one": "{{count}} sub-agent",
|
|
290
|
+
"subagents_other": "{{count}} sub-agents",
|
|
291
|
+
"shells_one": "{{count}} shell",
|
|
292
|
+
"shells_other": "{{count}} shells",
|
|
293
|
+
"monitors_one": "{{count}} monitor",
|
|
294
|
+
"monitors_other": "{{count}} monitors",
|
|
295
|
+
"pausedUntil": "paused until {{time}}",
|
|
296
|
+
"took": {
|
|
297
|
+
"done": "done in {{duration}}",
|
|
298
|
+
"failed": "failed after {{duration}}",
|
|
299
|
+
"cancelled": "cancelled after {{duration}}"
|
|
300
|
+
},
|
|
301
|
+
"shell": "Shell",
|
|
302
|
+
"monitor": "Monitor",
|
|
303
|
+
"stop": "Stop",
|
|
304
|
+
"stopFailed": "The task could not be stopped"
|
|
305
|
+
},
|
|
306
|
+
"subagents": {
|
|
307
|
+
"stop": {
|
|
308
|
+
"task": "Stop this task",
|
|
309
|
+
"mark": "Mark as stopped. The CLI cannot stop one sub-agent, so it may keep working until the chat's process ends."
|
|
310
|
+
},
|
|
311
|
+
"title": "Sub-agents",
|
|
312
|
+
"backToMain": "Back to the main agent",
|
|
313
|
+
"loading": "Loading the conversation…",
|
|
314
|
+
"loadEarlier": "Load earlier",
|
|
315
|
+
"loadingEarlier": "Loading…",
|
|
316
|
+
"working": "Working…",
|
|
317
|
+
"unsupported": "This machine cannot open a sub-agent's conversation. Update Ruimte there to read it.",
|
|
318
|
+
"unreadable": "The conversation could not be read.",
|
|
319
|
+
"noAnswer": "The machine did not answer",
|
|
320
|
+
"stopFailed": "The sub-agent could not be stopped"
|
|
321
|
+
},
|
|
322
|
+
"modes": {
|
|
323
|
+
"supervised": {
|
|
324
|
+
"label": "Supervised",
|
|
325
|
+
"hint": "Asks before commands and file changes",
|
|
326
|
+
"short": "Ask"
|
|
327
|
+
},
|
|
328
|
+
"auto-accept-edits": {
|
|
329
|
+
"label": "Auto-accept edits",
|
|
330
|
+
"hint": "File edits go through, commands still ask",
|
|
331
|
+
"short": "Edits"
|
|
332
|
+
},
|
|
333
|
+
"auto": {
|
|
334
|
+
"label": "Auto",
|
|
335
|
+
"hint": "The agent reviews routine actions itself",
|
|
336
|
+
"short": "Auto"
|
|
337
|
+
},
|
|
338
|
+
"full-access": {
|
|
339
|
+
"label": "Full access",
|
|
340
|
+
"hint": "Never asks for approval",
|
|
341
|
+
"short": "Full access"
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"pickers": {
|
|
345
|
+
"settings": {
|
|
346
|
+
"title": "Model and permissions"
|
|
347
|
+
},
|
|
348
|
+
"model": {
|
|
349
|
+
"choose": "Choose model",
|
|
350
|
+
"search": "Search models",
|
|
351
|
+
"noProvider": "No chat provider installed",
|
|
352
|
+
"noMatch": "No models match",
|
|
353
|
+
"legacyGroup_one": "Legacy models ({{count}})",
|
|
354
|
+
"legacyGroup_other": "Legacy models ({{count}})",
|
|
355
|
+
"legacy": "Legacy"
|
|
356
|
+
},
|
|
357
|
+
"stash": {
|
|
358
|
+
"title": "Stashed prompts",
|
|
359
|
+
"noText": "No text",
|
|
360
|
+
"files_one": "{{count}} file, not kept",
|
|
361
|
+
"files_other": "{{count}} files, not kept"
|
|
362
|
+
},
|
|
363
|
+
"mode": {
|
|
364
|
+
"label": "Permissions"
|
|
365
|
+
},
|
|
366
|
+
"account": {
|
|
367
|
+
"label": "Account",
|
|
368
|
+
"manage": "Manage accounts…",
|
|
369
|
+
"resets": "resets {{time}}",
|
|
370
|
+
"forkToSwitch": "This conversation is kept in another folder than {{account}} reads. Fork the chat to go on under {{account}}."
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"scrubber": {
|
|
374
|
+
"strip": "Messages in this thread",
|
|
375
|
+
"tasks": "Tasks"
|
|
376
|
+
},
|
|
377
|
+
"bookmarks": {
|
|
378
|
+
"menu": "Bookmarks",
|
|
379
|
+
"add": "Bookmark message",
|
|
380
|
+
"rename": "Rename bookmark",
|
|
381
|
+
"remove": "Remove bookmark",
|
|
382
|
+
"unnamed": "Bookmark",
|
|
383
|
+
"nameLabel": "Bookmark name",
|
|
384
|
+
"namePlaceholder": "Name it, or leave it empty",
|
|
385
|
+
"removed": "Bookmark removed",
|
|
386
|
+
"addFailed": "The bookmark could not be placed",
|
|
387
|
+
"renameFailed": "The bookmark could not be renamed",
|
|
388
|
+
"removeFailed": "The bookmark could not be removed"
|
|
389
|
+
},
|
|
390
|
+
"image": {
|
|
391
|
+
"zoomIn": "Zoom in",
|
|
392
|
+
"zoomOut": "Zoom out",
|
|
393
|
+
"reset": "Reset"
|
|
394
|
+
},
|
|
395
|
+
"account": {
|
|
396
|
+
"pill": "{{provider}} account {{account}}"
|
|
397
|
+
},
|
|
398
|
+
"common": {
|
|
399
|
+
"action": {
|
|
400
|
+
"close": "Close",
|
|
401
|
+
"copy": "Copy",
|
|
402
|
+
"delete": "Delete",
|
|
403
|
+
"dismiss": "Dismiss",
|
|
404
|
+
"edit": "Edit",
|
|
405
|
+
"remove": "Remove",
|
|
406
|
+
"selectAll": "Select all",
|
|
407
|
+
"undo": "Undo"
|
|
408
|
+
},
|
|
409
|
+
"status": {
|
|
410
|
+
"running": "running",
|
|
411
|
+
"paused": "paused",
|
|
412
|
+
"done": "done",
|
|
413
|
+
"failed": "failed",
|
|
414
|
+
"cancelled": "cancelled"
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"card": {
|
|
3
|
+
"approval": "Permission request",
|
|
4
|
+
"question": "Question",
|
|
5
|
+
"waiting": "Waiting in the terminal"
|
|
6
|
+
},
|
|
7
|
+
"toolbar": "Actions",
|
|
8
|
+
"sending": "Sending…",
|
|
9
|
+
"error": {
|
|
10
|
+
"notConnected": "Not connected to the machine",
|
|
11
|
+
"noChoices": "A chat request has no choices of its own"
|
|
12
|
+
},
|
|
13
|
+
"approval": {
|
|
14
|
+
"runCommand": "Run command",
|
|
15
|
+
"allow": "Allow",
|
|
16
|
+
"deny": "Deny",
|
|
17
|
+
"addReason": "Add a reason",
|
|
18
|
+
"allChanges_one": "Allow applies to the {{count}} change in this request.",
|
|
19
|
+
"allChanges_other": "Allow applies to all {{count}} changes in this request.",
|
|
20
|
+
"loadingDiff": "Loading diff…",
|
|
21
|
+
"viewDiff": "View full diff",
|
|
22
|
+
"collapseDiff": "Collapse diff",
|
|
23
|
+
"details": "Details",
|
|
24
|
+
"reasonLabel": "Reason for declining",
|
|
25
|
+
"reasonPlaceholder": "Reason for declining, optional"
|
|
26
|
+
},
|
|
27
|
+
"question": {
|
|
28
|
+
"multiSelect": "Choose one or more",
|
|
29
|
+
"answerLabel": "Your answer",
|
|
30
|
+
"answerPlaceholder": "Your answer",
|
|
31
|
+
"somethingElse": "Something else…",
|
|
32
|
+
"previous": "Previous",
|
|
33
|
+
"next": "Next",
|
|
34
|
+
"answer": "Answer"
|
|
35
|
+
},
|
|
36
|
+
"meta": {
|
|
37
|
+
"waiting_one": "{{count}} request waiting",
|
|
38
|
+
"waiting_other": "{{count}} requests waiting",
|
|
39
|
+
"question": "Question {{index}} of {{total}}",
|
|
40
|
+
"draftSaved": "Draft saved"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"status": {
|
|
3
|
+
"checking": "Checking",
|
|
4
|
+
"disabled": "Turned off",
|
|
5
|
+
"notFound": "CLI not found",
|
|
6
|
+
"signedOut": "Not logged in",
|
|
7
|
+
"ready": "Logged in",
|
|
8
|
+
"readyPlan": "Logged in · {{plan}}",
|
|
9
|
+
"available": "Ready",
|
|
10
|
+
"folderMissing": "Folder missing",
|
|
11
|
+
"unavailable": "Not available",
|
|
12
|
+
"failed": "Check failed"
|
|
13
|
+
},
|
|
14
|
+
"failed": "The provider settings failed to render",
|
|
15
|
+
"list": {
|
|
16
|
+
"label": "Agent CLIs and their accounts",
|
|
17
|
+
"default": "Default",
|
|
18
|
+
"addAccount": "Add a {{provider}} account",
|
|
19
|
+
"notInstalled": "Not installed",
|
|
20
|
+
"missing": "Missing",
|
|
21
|
+
"notInstalledNote": "To add one, install it and restart Ruimte on that machine.",
|
|
22
|
+
"none": "No agent CLIs found on this machine.",
|
|
23
|
+
"noAccounts": "This machine keeps no accounts yet. Update Ruimte there to add one."
|
|
24
|
+
},
|
|
25
|
+
"abilities": {
|
|
26
|
+
"version": "Version {{version}}.",
|
|
27
|
+
"chatAndTerminal": "Chat and terminal.",
|
|
28
|
+
"terminalOnly": "Terminal only.",
|
|
29
|
+
"reportsStatus": "Reports agent status.",
|
|
30
|
+
"noStatus": "Does not report agent status."
|
|
31
|
+
},
|
|
32
|
+
"cli": {
|
|
33
|
+
"addAccount": "Add account",
|
|
34
|
+
"onlyDefault": "{{provider}} has no setting for its config folder, so it has only its default account.",
|
|
35
|
+
"defaults": {
|
|
36
|
+
"title": "Defaults for new chats",
|
|
37
|
+
"description": "Picking a model or account in a chat also changes its default here.",
|
|
38
|
+
"account": "Account",
|
|
39
|
+
"accountFor": "Default account for {{provider}}",
|
|
40
|
+
"model": "Model",
|
|
41
|
+
"modelFor": "Default model for {{provider}}",
|
|
42
|
+
"shared": "Shared by every {{provider}} account.",
|
|
43
|
+
"usesCliDefault": "Uses the CLI's own default model.",
|
|
44
|
+
"providerDefault": "Provider default",
|
|
45
|
+
"legacyModel": "{{name}} (legacy)"
|
|
46
|
+
},
|
|
47
|
+
"accounts": "Accounts"
|
|
48
|
+
},
|
|
49
|
+
"account": {
|
|
50
|
+
"kind": "{{provider}} account",
|
|
51
|
+
"enabled": {
|
|
52
|
+
"label": "Use this account",
|
|
53
|
+
"description": "Turned off, it is not offered for new chats and agents."
|
|
54
|
+
},
|
|
55
|
+
"showFolder": "Show folder",
|
|
56
|
+
"folderCopied": "Folder path copied",
|
|
57
|
+
"name": "Name",
|
|
58
|
+
"color": "Color",
|
|
59
|
+
"login": {
|
|
60
|
+
"title": "Login",
|
|
61
|
+
"signedInAs": "Logged in as {{email}}",
|
|
62
|
+
"signedIn": "Logged in",
|
|
63
|
+
"planDetail": "{{plan}} plan. Log in again opens a terminal node with the CLI's own login.",
|
|
64
|
+
"detail": "Log in again opens a terminal node with the CLI's own login.",
|
|
65
|
+
"signedOut": "Not logged in",
|
|
66
|
+
"signedOutDetail": "Opens a terminal node that runs the CLI's login with this folder.",
|
|
67
|
+
"logIn": "Log in",
|
|
68
|
+
"logInAgain": "Log in again"
|
|
69
|
+
},
|
|
70
|
+
"folder": {
|
|
71
|
+
"label": "Folder",
|
|
72
|
+
"detail": "Given to the CLI as <code>{{variable}}</code>. The CLI keeps its own login, settings and history here.",
|
|
73
|
+
"detailPlain": "The CLI keeps its own login, settings and history here."
|
|
74
|
+
},
|
|
75
|
+
"variables": {
|
|
76
|
+
"title": "Variables",
|
|
77
|
+
"description": "Extra environment for this account only. Sensitive values stay in the keychain.",
|
|
78
|
+
"add": "Add variable",
|
|
79
|
+
"name": "Name of variable {{index}}",
|
|
80
|
+
"value": "Value of {{name}}",
|
|
81
|
+
"kept": "Kept in the keychain",
|
|
82
|
+
"lock": "Keep {{name}} in the keychain",
|
|
83
|
+
"unlock": "Store {{name}} as plain text",
|
|
84
|
+
"noKeychain": "This machine has no keychain, so a value cannot be kept secret.",
|
|
85
|
+
"remove": "Remove {{name}}",
|
|
86
|
+
"none": "No variables",
|
|
87
|
+
"discard": "Discard",
|
|
88
|
+
"problem": {
|
|
89
|
+
"noName": "Every variable needs a name.",
|
|
90
|
+
"invalidName": "{{name}} is not a variable name.",
|
|
91
|
+
"duplicate": "{{name}} is set twice.",
|
|
92
|
+
"noValue": "{{name}} needs a value."
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"remove": {
|
|
96
|
+
"label": "Remove account",
|
|
97
|
+
"description": "Chats that use it ask for another account on their next turn. The folder stays on disk.",
|
|
98
|
+
"defaultNote": "The default account uses the CLI's own folder and cannot be removed. Turn it off above instead.",
|
|
99
|
+
"button": "Remove",
|
|
100
|
+
"confirmTitle": "Remove {{account}}?",
|
|
101
|
+
"confirmDescription": "Ruimte forgets this account. Its folder stays on disk at {{folder}}, with its login in it.",
|
|
102
|
+
"confirm": "Remove account"
|
|
103
|
+
},
|
|
104
|
+
"saveFailed": "Could not save the account"
|
|
105
|
+
},
|
|
106
|
+
"add": {
|
|
107
|
+
"title": "Add a {{provider}} account",
|
|
108
|
+
"description": "Ruimte makes a folder for it on the machine, then opens a terminal node where you log in.",
|
|
109
|
+
"name": "Name",
|
|
110
|
+
"namePlaceholder": "Work",
|
|
111
|
+
"color": "Color",
|
|
112
|
+
"advanced": "Advanced",
|
|
113
|
+
"link": {
|
|
114
|
+
"label": "Link an existing folder",
|
|
115
|
+
"description": "Use a config folder that is already on the machine instead of a new one. Ruimte never moves or deletes it.",
|
|
116
|
+
"placeholder": "Path on the machine"
|
|
117
|
+
},
|
|
118
|
+
"create": "Add account",
|
|
119
|
+
"linkButton": "Link folder",
|
|
120
|
+
"failed": "Could not add the account"
|
|
121
|
+
},
|
|
122
|
+
"section": {
|
|
123
|
+
"label": "Providers",
|
|
124
|
+
"description": "The agent CLIs on this machine and the accounts they sign in with."
|
|
125
|
+
},
|
|
126
|
+
"notAnswering": "Not answering. Change this once the machine is back.",
|
|
127
|
+
"common": {
|
|
128
|
+
"save": "Save",
|
|
129
|
+
"cancel": "Cancel"
|
|
130
|
+
}
|
|
131
|
+
}
|