@theia/core 1.70.0-next.71 → 1.70.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/README.md +6 -6
- package/i18n/nls.cs.json +90 -84
- package/i18n/nls.de.json +90 -84
- package/i18n/nls.es.json +90 -84
- package/i18n/nls.fr.json +90 -84
- package/i18n/nls.hu.json +90 -84
- package/i18n/nls.it.json +90 -84
- package/i18n/nls.ja.json +90 -84
- package/i18n/nls.json +98 -92
- package/i18n/nls.ko.json +90 -84
- package/i18n/nls.pl.json +90 -84
- package/i18n/nls.pt-br.json +90 -84
- package/i18n/nls.ru.json +90 -84
- package/i18n/nls.tr.json +90 -84
- package/i18n/nls.zh-cn.json +90 -84
- package/i18n/nls.zh-tw.json +90 -84
- package/lib/browser/menu/action-menu-node.d.ts +1 -0
- package/lib/browser/menu/action-menu-node.d.ts.map +1 -1
- package/lib/browser/menu/action-menu-node.js +1 -0
- package/lib/browser/menu/action-menu-node.js.map +1 -1
- package/lib/browser/menu/composite-menu-node.d.ts +2 -1
- package/lib/browser/menu/composite-menu-node.d.ts.map +1 -1
- package/lib/browser/menu/composite-menu-node.js +3 -1
- package/lib/browser/menu/composite-menu-node.js.map +1 -1
- package/lib/browser/menu/menu.spec.js +15 -0
- package/lib/browser/menu/menu.spec.js.map +1 -1
- package/lib/browser/menu/utils.d.ts +2 -0
- package/lib/browser/menu/utils.d.ts.map +1 -0
- package/lib/browser/menu/utils.js +29 -0
- package/lib/browser/menu/utils.js.map +1 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.d.ts +3 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.d.ts.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.js +10 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.js.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.d.ts +7 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.d.ts.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.js +35 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.js.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar.d.ts +2 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar.d.ts.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar.js +9 -3
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar.js.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-toolbar-item.d.ts +2 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-toolbar-item.d.ts.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-toolbar-item.js +3 -0
- package/lib/browser/shell/tab-bar-toolbar/tab-toolbar-item.js.map +1 -1
- package/lib/common/menu/menu-types.d.ts +4 -0
- package/lib/common/menu/menu-types.d.ts.map +1 -1
- package/lib/common/menu/menu-types.js.map +1 -1
- package/lib/common/types.d.ts +3 -0
- package/lib/common/types.d.ts.map +1 -1
- package/lib/common/types.js +14 -1
- package/lib/common/types.js.map +1 -1
- package/package.json +6 -6
- package/src/browser/menu/action-menu-node.ts +1 -0
- package/src/browser/menu/composite-menu-node.ts +4 -2
- package/src/browser/menu/menu.spec.ts +17 -0
- package/src/browser/menu/utils.ts +26 -0
- package/src/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.tsx +12 -0
- package/src/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.ts +40 -1
- package/src/browser/shell/tab-bar-toolbar/tab-bar-toolbar.tsx +8 -4
- package/src/browser/shell/tab-bar-toolbar/tab-toolbar-item.tsx +4 -0
- package/src/common/menu/menu-types.ts +4 -0
- package/src/common/types.ts +11 -0
package/i18n/nls.json
CHANGED
|
@@ -22,14 +22,28 @@
|
|
|
22
22
|
"theia": {
|
|
23
23
|
"ai": {
|
|
24
24
|
"agents": {
|
|
25
|
+
"capabilityOverrides": {
|
|
26
|
+
"mdDescription": "User overrides for template-based capabilities. Keys are capability fragment IDs, values are enabled (true) or disabled (false).",
|
|
27
|
+
"title": "Capability Overrides"
|
|
28
|
+
},
|
|
25
29
|
"completionNotification": {
|
|
26
|
-
"mdDescription": "Notification behavior when this agent completes a task. If not set, the global default notification setting will be used.\n
|
|
30
|
+
"mdDescription": "Notification behavior when this agent completes a task. If not set, the global default notification setting will be used.\n - `os-notification`: Show OS/system notifications\n - `message`: Show notifications in the status bar/message area\n - `blink`: Blink or highlight the UI\n - `off`: Disable notifications for this agent",
|
|
27
31
|
"title": "Completion Notification"
|
|
28
32
|
},
|
|
29
33
|
"enable": {
|
|
30
34
|
"mdDescription": "Specifies whether the agent should be enabled (true) or disabled (false).",
|
|
31
35
|
"title": "Enable Agent"
|
|
32
36
|
},
|
|
37
|
+
"genericCapabilitySelections": {
|
|
38
|
+
"agentDelegation": "Selected agent IDs for delegation",
|
|
39
|
+
"functions": "Selected function IDs",
|
|
40
|
+
"mcpFunctions": "Selected MCP function IDs",
|
|
41
|
+
"mdDescription": "User selections for generic capabilities such as skills, functions, and MCP tools.",
|
|
42
|
+
"promptFragments": "Selected prompt fragment IDs",
|
|
43
|
+
"skills": "Selected skill IDs",
|
|
44
|
+
"title": "Generic Capability Selections",
|
|
45
|
+
"variables": "Selected variable names"
|
|
46
|
+
},
|
|
33
47
|
"languageModelRequirements": {
|
|
34
48
|
"identifier": {
|
|
35
49
|
"mdDescription": "The identifier of the language model to be used."
|
|
@@ -187,6 +201,10 @@
|
|
|
187
201
|
"description": "Execute tools automatically without confirmation"
|
|
188
202
|
}
|
|
189
203
|
},
|
|
204
|
+
"toolConfirmationTimeout": {
|
|
205
|
+
"denialReason": "Confirmation timed out after {0} seconds",
|
|
206
|
+
"description": "Timeout in seconds for tool confirmation dialogs. When set to a positive value, tool confirmations will automatically be denied after the specified duration. Set to 0 to disable (default)."
|
|
207
|
+
},
|
|
190
208
|
"universal": {
|
|
191
209
|
"description": "This agent is designed to help software developers by providing concise and accurate answers to general programming and software development questions. It is also the fall-back for any generic questions the user might ask. The universal agent currently does not have any context by default, i.e. it cannot access the current user context or the workspace."
|
|
192
210
|
},
|
|
@@ -199,7 +217,6 @@
|
|
|
199
217
|
},
|
|
200
218
|
"chat-ui": {
|
|
201
219
|
"addContextVariable": "Add context variable",
|
|
202
|
-
"agent": "Agent",
|
|
203
220
|
"agentDelegationDescription": "Other AI agents that can be delegated to",
|
|
204
221
|
"aiDisabled": "AI features are disabled",
|
|
205
222
|
"applyAll": "Apply All",
|
|
@@ -219,12 +236,13 @@
|
|
|
219
236
|
"clearHistory": "Clear Input Prompt History",
|
|
220
237
|
"cycleMode": "Cycle Chat Mode",
|
|
221
238
|
"nextPrompt": "Next Prompt",
|
|
239
|
+
"pasteWithImageSupport": "Paste (with image support)",
|
|
222
240
|
"previousPrompt": "Previous Prompt",
|
|
223
241
|
"toggleCapabilities": "Toggle Capabilities Configuration"
|
|
224
242
|
},
|
|
225
243
|
"chatInputAriaLabel": "Type your message here",
|
|
226
244
|
"chatResponses": "Chat responses",
|
|
227
|
-
"clearAllSelections": "Clear search string and capability selections",
|
|
245
|
+
"clearAllSelections": "Clear search string and capability selections to saved defaults",
|
|
228
246
|
"code-part-renderer": {
|
|
229
247
|
"copied": "Copied",
|
|
230
248
|
"generatedCode": "Generated Code"
|
|
@@ -244,6 +262,7 @@
|
|
|
244
262
|
"response": {
|
|
245
263
|
"label": "Response:"
|
|
246
264
|
},
|
|
265
|
+
"restoredNotAvailable": "Response not available for restored sessions.",
|
|
247
266
|
"starting": "Starting delegation...",
|
|
248
267
|
"status": {
|
|
249
268
|
"canceled": "canceled",
|
|
@@ -269,7 +288,6 @@
|
|
|
269
288
|
"functions": "Functions",
|
|
270
289
|
"functionsDescription": "Built-in functions provided by Theia extensions",
|
|
271
290
|
"genericCapabilities": "Generic Capabilities",
|
|
272
|
-
"mcpFunctions": "MCP",
|
|
273
291
|
"mcpFunctionsDescription": "Model Context Protocol (MCP) functions from connected servers",
|
|
274
292
|
"noChatAgentsAvailable": "No chat agents available.",
|
|
275
293
|
"noMatchingCapabilities": "No matching capabilities",
|
|
@@ -278,12 +296,12 @@
|
|
|
278
296
|
"openOriginalFile": "Open Original File",
|
|
279
297
|
"performThisTask": "Perform this task.",
|
|
280
298
|
"persistedSession": "Persisted session (click to restore)",
|
|
281
|
-
"promptFragments": "Prompts",
|
|
282
299
|
"promptFragmentsDescription": "Custom prompt fragments to include in the conversation",
|
|
283
300
|
"removeChat": "Remove Chat",
|
|
284
301
|
"renameChat": "Rename Chat",
|
|
285
302
|
"requestNotFoundForRetry": "Request not found for retry",
|
|
286
303
|
"responseFrom": "Response from {0}",
|
|
304
|
+
"saveCurrentSelectionsToSettings": "Save capability settings",
|
|
287
305
|
"searchCapabilities": "Search capabilities",
|
|
288
306
|
"selectAgentQuickPickPlaceholder": "Select an agent for the new session",
|
|
289
307
|
"selectAllInCategory": "Select all in this category",
|
|
@@ -314,6 +332,7 @@
|
|
|
314
332
|
"alwaysAllowConfirm": "I understand, enable auto-approval",
|
|
315
333
|
"alwaysAllowGenericWarning": "This tool requires confirmation before auto-approval can be enabled. Once enabled, all future invocations will execute without confirmation. Only enable this if you trust this tool and understand the potential risks.",
|
|
316
334
|
"alwaysAllowTitle": "Enable Auto-Approval for \"{0}\"?",
|
|
335
|
+
"autoCancel": "Auto-cancels in {0}",
|
|
317
336
|
"canceled": "Tool execution canceled",
|
|
318
337
|
"denied": "Tool execution denied",
|
|
319
338
|
"deny-forever": "Always Deny",
|
|
@@ -560,11 +579,14 @@
|
|
|
560
579
|
"signIn": "Sign in to GitHub Copilot",
|
|
561
580
|
"signOut": "Sign out of GitHub Copilot"
|
|
562
581
|
},
|
|
582
|
+
"enabled": {
|
|
583
|
+
"mdDescription": "Enable the GitHub Copilot provider. When enabled, a status bar entry appears for authentication and available models are discovered from your Copilot subscription."
|
|
584
|
+
},
|
|
563
585
|
"enterpriseUrl": {
|
|
564
586
|
"mdDescription": "GitHub Enterprise domain for Copilot API (e.g., `github.mycompany.com`). Leave empty for GitHub.com."
|
|
565
587
|
},
|
|
566
|
-
"
|
|
567
|
-
"
|
|
588
|
+
"modelOverrides": {
|
|
589
|
+
"mdDescription": "Override the automatically discovered GitHub Copilot models. When empty (default), available models are discovered from your Copilot subscription. Set explicit model IDs to override auto-discovery."
|
|
568
590
|
},
|
|
569
591
|
"signOut": {
|
|
570
592
|
"confirmMessage": "Are you sure you want to sign out of GitHub Copilot?"
|
|
@@ -572,7 +594,8 @@
|
|
|
572
594
|
"statusBar": {
|
|
573
595
|
"signedIn": "Signed in to GitHub Copilot as {0}. Click to sign out.",
|
|
574
596
|
"signedOut": "Not signed in to GitHub Copilot. Click to sign in."
|
|
575
|
-
}
|
|
597
|
+
},
|
|
598
|
+
"tokenMigration": "Your GitHub Copilot session used an outdated authentication method and has been cleared. Please sign in again to access all available models."
|
|
576
599
|
},
|
|
577
600
|
"core": {
|
|
578
601
|
"agentConfiguration": {
|
|
@@ -601,7 +624,7 @@
|
|
|
601
624
|
"description": "Returns the list of agents available in the system"
|
|
602
625
|
},
|
|
603
626
|
"aiConfiguration": {
|
|
604
|
-
"label": "AI Configuration
|
|
627
|
+
"label": "AI Configuration"
|
|
605
628
|
},
|
|
606
629
|
"blinkTitle": {
|
|
607
630
|
"agentCompleted": "Theia - Agent Completed",
|
|
@@ -743,8 +766,7 @@
|
|
|
743
766
|
"variantsOfSystemPrompt": "Variants of this prompt variant set:"
|
|
744
767
|
},
|
|
745
768
|
"promptTemplates": {
|
|
746
|
-
"description": "Folder for storing customized prompt templates. If not customized the user config directory is used. Please consider to use a folder, which is under version control to manage your variants of prompt templates."
|
|
747
|
-
"openLabel": "Select Folder"
|
|
769
|
+
"description": "Folder for storing customized prompt templates. If not customized the user config directory is used. Please consider to use a folder, which is under version control to manage your variants of prompt templates."
|
|
748
770
|
},
|
|
749
771
|
"promptVariable": {
|
|
750
772
|
"argDescription": "The prompt template id to resolve",
|
|
@@ -877,16 +899,12 @@
|
|
|
877
899
|
},
|
|
878
900
|
"edited": "edited",
|
|
879
901
|
"exchange-card": {
|
|
880
|
-
"agentId": "Agent",
|
|
881
902
|
"timestamp": "Started"
|
|
882
903
|
},
|
|
883
904
|
"open-history-tooltip": "Open AI history...",
|
|
884
905
|
"request-card": {
|
|
885
|
-
"agent": "Agent",
|
|
886
|
-
"model": "Model",
|
|
887
906
|
"promptVariant": "Prompt Variant",
|
|
888
907
|
"request": "Request",
|
|
889
|
-
"response": "Response",
|
|
890
908
|
"timestamp": "Timestamp",
|
|
891
909
|
"title": "Request"
|
|
892
910
|
},
|
|
@@ -909,7 +927,7 @@
|
|
|
909
927
|
"tooltip": "Interpret newlines"
|
|
910
928
|
},
|
|
911
929
|
"view": {
|
|
912
|
-
"label": "AI Agent History
|
|
930
|
+
"label": "AI Agent History",
|
|
913
931
|
"noAgent": "No agent available.",
|
|
914
932
|
"noAgentSelected": "No agent selected.",
|
|
915
933
|
"noHistoryForAgent": "No history available for the selected agent '{0}'"
|
|
@@ -926,15 +944,34 @@
|
|
|
926
944
|
"ide": {
|
|
927
945
|
"agent-description": "Configure AI agent settings including enablement, LLM selection, prompt template customization, and custom agent creation in the [AI Configuration View]({0}).",
|
|
928
946
|
"agentConfiguration": {
|
|
929
|
-
"capabilityOn": "On",
|
|
930
947
|
"customAgentLocationQuickPick": {
|
|
931
948
|
"createNewFile": "Create new file",
|
|
932
949
|
"openExistingFile": "Open existing file",
|
|
933
950
|
"placeholder": "Choose where to create or open a custom agents file",
|
|
934
951
|
"title": "Select Location for Custom Agents File"
|
|
935
952
|
},
|
|
936
|
-
"
|
|
937
|
-
"
|
|
953
|
+
"genericCapabilitiesSettings": "Generic Capabilities",
|
|
954
|
+
"genericCapabilityType": {
|
|
955
|
+
"agentDelegation": "Agent Delegation",
|
|
956
|
+
"functions": "Functions",
|
|
957
|
+
"mcpFunctions": "MCP Functions",
|
|
958
|
+
"promptFragments": "Prompt Fragments"
|
|
959
|
+
},
|
|
960
|
+
"noDescription": "No description available",
|
|
961
|
+
"resetAllCapabilities": "Reset all capabilities to their default values",
|
|
962
|
+
"resetAllDefaults": "Reset All to Defaults",
|
|
963
|
+
"selections": "Selections"
|
|
964
|
+
},
|
|
965
|
+
"agentMode": {
|
|
966
|
+
"confirmed": {
|
|
967
|
+
"mdDescription": "Whether the user has confirmed the agent mode warning. Agent mode allows autonomous file modifications without further confirmation. Set to `false` to see the confirmation again on the next agent mode request."
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
"agentModeConfirmation": {
|
|
971
|
+
"confirm": "Confirm",
|
|
972
|
+
"msg": "This agent uses an **agentic mode**. To enable autonomous flow, it is capable of directly writing to your workspace files without further confirmation.\n\nIt is recommended to use version control (e.g. Git) so you can review and revert changes.\n\nYou can switch to **Edit Mode** using the mode selector in the chat input area below, or use the **Architect** agent for read-only planning.\n\nThis confirmation is saved for this workspace and won't be shown again. To reset or configure it globally, look for `ai-features.agentMode.confirmed` in the Settings.",
|
|
973
|
+
"question": "Do you want to proceed with Agent Mode?",
|
|
974
|
+
"waiting": "Waiting for confirmation..."
|
|
938
975
|
},
|
|
939
976
|
"app-tester": {
|
|
940
977
|
"errorCheckingDevToolsServerStatus": "Error checking DevTools MCP server status: {0}",
|
|
@@ -956,13 +993,10 @@
|
|
|
956
993
|
"question": "The Playwright MCP servers are not running. Would you like to start them now? This may install the Playwright MCP servers."
|
|
957
994
|
}
|
|
958
995
|
},
|
|
959
|
-
"appTester": {
|
|
960
|
-
"description": "Allows the agent to test browser applications end to end. For this, the agent can delegate to the AppTester agent, which automates browser interactions to verify the implementation.",
|
|
961
|
-
"name": "App Tester"
|
|
962
|
-
},
|
|
963
996
|
"architectAgent": {
|
|
964
997
|
"mode": {
|
|
965
998
|
"plan": "Plan Mode",
|
|
999
|
+
"planNext": "Plan Mode (Next)",
|
|
966
1000
|
"simple": "Simple Mode"
|
|
967
1001
|
},
|
|
968
1002
|
"suggestion": {
|
|
@@ -974,6 +1008,9 @@
|
|
|
974
1008
|
"chatDisabledMessage": {
|
|
975
1009
|
"title": "AI Features are Disabled"
|
|
976
1010
|
},
|
|
1011
|
+
"codeReviewerAgent": {
|
|
1012
|
+
"description": "A code review assistant that analyzes code changes and returns structured verdicts. Checks completion criteria, build/lint/test evidence, and code quality."
|
|
1013
|
+
},
|
|
977
1014
|
"coderAgent": {
|
|
978
1015
|
"mode": {
|
|
979
1016
|
"agentNext": "Agent Mode (Next)",
|
|
@@ -1017,7 +1054,10 @@
|
|
|
1017
1054
|
},
|
|
1018
1055
|
"deleteChat": "Delete Chat",
|
|
1019
1056
|
"enableAI": {
|
|
1020
|
-
"mdDescription": "This setting allows you to access the
|
|
1057
|
+
"mdDescription": "This setting allows you to access the AI capabilities of Theia IDE. \n Please be aware that AI features may generate continuous requests to the language models (LLMs) you provide access to. This might incur costs that you need to monitor closely. By enabling this option, you acknowledge these risks. \n **Please note! The settings below in this section will only take effect\n once the main feature setting is enabled. After enabling the feature, you need to configure at least one LLM provider below. Also see [the documentation](https://theia-ide.org/docs/user_ai/)**."
|
|
1058
|
+
},
|
|
1059
|
+
"exploreAgent": {
|
|
1060
|
+
"description": "A codebase exploration assistant that extracts and distills information from the codebase. Reports facts about what exists, provides code excerpts, and describes observed patterns."
|
|
1021
1061
|
},
|
|
1022
1062
|
"github": {
|
|
1023
1063
|
"configureGitHubServer": {
|
|
@@ -1078,9 +1118,6 @@
|
|
|
1078
1118
|
"name": "Shell Execution"
|
|
1079
1119
|
},
|
|
1080
1120
|
"skillsConfiguration": {
|
|
1081
|
-
"location": {
|
|
1082
|
-
"label": "Location"
|
|
1083
|
-
},
|
|
1084
1121
|
"noSkills": "No skills available",
|
|
1085
1122
|
"noSlashCommands": "No slash commands available",
|
|
1086
1123
|
"slashCommand": {
|
|
@@ -1123,7 +1160,6 @@
|
|
|
1123
1160
|
}
|
|
1124
1161
|
},
|
|
1125
1162
|
"tooltip": {
|
|
1126
|
-
"agent": "Agent",
|
|
1127
1163
|
"lastActivity": "Last activity",
|
|
1128
1164
|
"lastMessage": "Last message",
|
|
1129
1165
|
"messages": "Messages",
|
|
@@ -1133,8 +1169,7 @@
|
|
|
1133
1169
|
},
|
|
1134
1170
|
"variableConfiguration": {
|
|
1135
1171
|
"selectVariable": "Please select a Variable.",
|
|
1136
|
-
"usedByAgents": "Used by Agents"
|
|
1137
|
-
"variableArgs": "Arguments"
|
|
1172
|
+
"usedByAgents": "Used by Agents"
|
|
1138
1173
|
}
|
|
1139
1174
|
},
|
|
1140
1175
|
"llamaFile": {
|
|
@@ -1220,7 +1255,6 @@
|
|
|
1220
1255
|
}
|
|
1221
1256
|
},
|
|
1222
1257
|
"mcpConfiguration": {
|
|
1223
|
-
"arguments": "Arguments",
|
|
1224
1258
|
"autostart": "Autostart",
|
|
1225
1259
|
"connectServer": "Connect",
|
|
1226
1260
|
"connectingServer": "Connecting...",
|
|
@@ -1259,7 +1293,6 @@
|
|
|
1259
1293
|
"serverUrlRequired": "Server URL is required for remote servers"
|
|
1260
1294
|
},
|
|
1261
1295
|
"headers": "Headers",
|
|
1262
|
-
"noServers": "No MCP servers configured",
|
|
1263
1296
|
"saveServerError": "Failed to save MCP server configuration: {0}",
|
|
1264
1297
|
"serverAuthToken": "Auth Token",
|
|
1265
1298
|
"serverAuthTokenHeader": "Auth Header Name",
|
|
@@ -1352,16 +1385,19 @@
|
|
|
1352
1385
|
"in-progress": "SCANOSS - Performing scan...",
|
|
1353
1386
|
"match-count": "Found {0} match(es)",
|
|
1354
1387
|
"matched": "SCANOSS - Found {0} match",
|
|
1355
|
-
"no-match": "SCANOSS - No match"
|
|
1356
|
-
"summary": "Summary"
|
|
1388
|
+
"no-match": "SCANOSS - No match"
|
|
1357
1389
|
}
|
|
1358
1390
|
},
|
|
1359
1391
|
"session-settings-dialog": {
|
|
1360
1392
|
"advancedSettings": "Advanced Settings (JSON)",
|
|
1361
1393
|
"budgetTokens": "Budget tokens:",
|
|
1394
|
+
"confirmationTimeout": "Confirmation Timeout",
|
|
1395
|
+
"confirmationTimeoutNote": "Automatically deny tool confirmations after the specified time. Overrides the global preference for this session.",
|
|
1396
|
+
"enableConfirmationTimeout": "Enable confirmation timeout",
|
|
1362
1397
|
"enableThinking": "Enable extended thinking",
|
|
1363
1398
|
"thinkingMode": "Thinking Mode",
|
|
1364
1399
|
"thinkingModeNote": "Some models may ignore this setting.",
|
|
1400
|
+
"timeoutSeconds": "Timeout (seconds):",
|
|
1365
1401
|
"title": "Set Session Settings",
|
|
1366
1402
|
"tooltip": "Set Session Settings"
|
|
1367
1403
|
},
|
|
@@ -1387,7 +1423,6 @@
|
|
|
1387
1423
|
"askTerminalCommand": "Ask about a terminal command...",
|
|
1388
1424
|
"hitEnterConfirm": "Hit enter to confirm",
|
|
1389
1425
|
"howCanIHelp": "How can I help you?",
|
|
1390
|
-
"loading": "Loading",
|
|
1391
1426
|
"tryAgain": "Try again...",
|
|
1392
1427
|
"useArrowsAlternatives": " or use ⇅ to show alternatives..."
|
|
1393
1428
|
},
|
|
@@ -1398,14 +1433,12 @@
|
|
|
1398
1433
|
"inputTokens": "Input Tokens",
|
|
1399
1434
|
"label": "Token Usage",
|
|
1400
1435
|
"lastUsed": "Last Used",
|
|
1401
|
-
"model": "Model",
|
|
1402
1436
|
"noData": "No token usage data available yet.",
|
|
1403
1437
|
"note": "Token usage is tracked since the start of the application and is not persisted.",
|
|
1404
1438
|
"outputTokens": "Output Tokens",
|
|
1405
1439
|
"readCachedInputTokens": "Input Tokens Read From Cache",
|
|
1406
1440
|
"readCachedInputTokensTooltip": "Tracked additionally to 'Input Token'. Usually much less expensive than not cached. Usually does not count to rate limits.",
|
|
1407
1441
|
"total": "Total",
|
|
1408
|
-
"totalTokens": "Total Tokens",
|
|
1409
1442
|
"totalTokensTooltip": "'Input Tokens' + 'Output Tokens'"
|
|
1410
1443
|
},
|
|
1411
1444
|
"vercelai": {
|
|
@@ -1455,12 +1488,16 @@
|
|
|
1455
1488
|
"title": "Consider .gitignore"
|
|
1456
1489
|
},
|
|
1457
1490
|
"createSkillAgent": {
|
|
1458
|
-
"description": "An AI assistant for creating new skills. Skills provide reusable instructions and domain knowledge for AI agents. This agent helps you create well-structured skills in the .prompts/skills directory with proper YAML frontmatter and markdown content."
|
|
1491
|
+
"description": "An AI assistant for creating new skills. Skills provide reusable instructions and domain knowledge for AI agents. This agent helps you create well-structured skills in the .prompts/skills directory with proper YAML frontmatter and markdown content. This feature is still in an early stage and may undergo changes."
|
|
1459
1492
|
},
|
|
1460
1493
|
"excludedPattern": {
|
|
1461
1494
|
"description": "List of patterns (glob or regex) for files/folders to exclude.",
|
|
1462
1495
|
"title": "Excluded File Patterns"
|
|
1463
1496
|
},
|
|
1497
|
+
"fileContentMaxSizeKB": {
|
|
1498
|
+
"description": "Maximum size in kilobytes of the content returned by the getFileContent tool. When reading a full file (no offset/limit), files exceeding this limit return an error. When using offset and limit, only the requested range is checked against this limit.",
|
|
1499
|
+
"title": "File Content Max Size (KB)"
|
|
1500
|
+
},
|
|
1464
1501
|
"projectInfoAgent": {
|
|
1465
1502
|
"description": "An AI assistant for managing project information templates. This agent helps create, update, and review the .prompts/project-info.prompttemplate file which provides context about your project to other AI agents. It can analyze your workspace to suggest project information or update existing templates based on your requirements."
|
|
1466
1503
|
},
|
|
@@ -1477,6 +1514,7 @@
|
|
|
1477
1514
|
"fileChangeSetTitle": "Changes proposed"
|
|
1478
1515
|
},
|
|
1479
1516
|
"ai-chat-ui": {
|
|
1517
|
+
"confirm": "Confirm",
|
|
1480
1518
|
"deleteChat": "Delete Chat",
|
|
1481
1519
|
"initiate-session-task-context": "Task Context: Initiate Session",
|
|
1482
1520
|
"navigate-back": "Navigate Back",
|
|
@@ -1512,6 +1550,13 @@
|
|
|
1512
1550
|
"argumentHint": "<pr-number>",
|
|
1513
1551
|
"description": "Address review comments on a GitHub pull request"
|
|
1514
1552
|
},
|
|
1553
|
+
"appTester": {
|
|
1554
|
+
"description": "Delegates to AppTester agent for browser-based UI verification after implementation.",
|
|
1555
|
+
"name": "E2E Test"
|
|
1556
|
+
},
|
|
1557
|
+
"codeReview": {
|
|
1558
|
+
"description": "Delegates to code-reviewer agent after each implementation. Blocks next steps until review passes."
|
|
1559
|
+
},
|
|
1515
1560
|
"fixGhTicketCommand": {
|
|
1516
1561
|
"argumentHint": "<ticket-number>",
|
|
1517
1562
|
"description": "Analyze a GitHub ticket and implement the solution"
|
|
@@ -1620,7 +1665,8 @@
|
|
|
1620
1665
|
"about": {
|
|
1621
1666
|
"compatibility": "{0} Compatibility",
|
|
1622
1667
|
"defaultApi": "Default {0} API",
|
|
1623
|
-
"listOfExtensions": "List of extensions"
|
|
1668
|
+
"listOfExtensions": "List of extensions",
|
|
1669
|
+
"monacoEditor": "Monaco Editor Version"
|
|
1624
1670
|
},
|
|
1625
1671
|
"common": {
|
|
1626
1672
|
"closeAll": "Close All Tabs",
|
|
@@ -1717,7 +1763,6 @@
|
|
|
1717
1763
|
"conditionalBreakpointsNotSupported": "Conditional breakpoints not supported by this debug type",
|
|
1718
1764
|
"confirmRunToShiftedPosition_msg": "The target position will be shifted to Ln {0}, Col {1}. Run anyway?",
|
|
1719
1765
|
"confirmRunToShiftedPosition_title": "Cannot run the current thread to exactly the specified location",
|
|
1720
|
-
"consoleFilter": "Filter (e.g. text, !exclude)",
|
|
1721
1766
|
"consoleFilterAriaLabel": "Filter debug console output",
|
|
1722
1767
|
"consoleFilterTooltip": "Filter console output by text. Separate multiple terms with commas. Prefix with `!` to exclude a term.\n\nExamples:\n\n- `text` - show lines containing \"text\"\n- `text, other` - show lines containing \"text\" or \"other\"\n- `!text` - hide lines containing \"text\"\n- `text, !other` - show \"text\" but hide \"other\"",
|
|
1723
1768
|
"consoleSessionSelectorTooltip": "Switch between debug sessions. Each debug session has its own console output.",
|
|
@@ -1758,6 +1803,7 @@
|
|
|
1758
1803
|
"unverifiedBreakpoint": "Unverified {0}"
|
|
1759
1804
|
},
|
|
1760
1805
|
"editor": {
|
|
1806
|
+
"autoSaveWhenNoErrors": "When enabled, will limit auto save of editors to files that have no errors reported in them at the time the auto save is triggered. Only applies when {0} is enabled.",
|
|
1761
1807
|
"clearFormatterSetting": "Clear formatter setting",
|
|
1762
1808
|
"configuredIn": "Configured in {0}",
|
|
1763
1809
|
"configuredNotInstalled": "'{0}' configured in {1} but not installed",
|
|
@@ -1768,7 +1814,6 @@
|
|
|
1768
1814
|
"editor.bracketPairColorization.enabled": "Controls whether bracket pair colorization is enabled or not. Use `#workbench.colorCustomizations#` to override the bracket highlight colors.",
|
|
1769
1815
|
"editor.codeActions.triggerOnFocusChange": "Enable triggering `#editor.codeActionsOnSave#` when `#files.autoSave#` is set to `afterDelay`. Code Actions must be set to `always` to be triggered for window and focus changes.",
|
|
1770
1816
|
"editor.detectIndentation": "Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents.",
|
|
1771
|
-
"editor.experimental.preferTreeSitter": "Controls whether tree sitter parsing should be turned on for specific languages. This will take precedence over `editor.experimental.treeSitterTelemetry` for the specified languages.",
|
|
1772
1817
|
"editor.inlayHints.enabled1": "Inlay hints are showing by default and hide when holding Ctrl+Alt",
|
|
1773
1818
|
"editor.inlayHints.enabled2": "Inlay hints are hidden by default and show when holding Ctrl+Alt",
|
|
1774
1819
|
"editor.inlayHints.fontFamily": "Controls font family of inlay hints in the editor. When set to empty, the `#editor.fontFamily#` is used.",
|
|
@@ -1808,7 +1853,7 @@
|
|
|
1808
1853
|
"cwd": "Select current working directory for new external terminal"
|
|
1809
1854
|
},
|
|
1810
1855
|
"file-search": {
|
|
1811
|
-
"
|
|
1856
|
+
"toggleExcludedFiles": " (Press {0} to show/hide excluded files)"
|
|
1812
1857
|
},
|
|
1813
1858
|
"fileDialog": {
|
|
1814
1859
|
"showHidden": "Show hidden files"
|
|
@@ -1834,7 +1879,7 @@
|
|
|
1834
1879
|
"largeFileTitle": "The file is too large ({0}).",
|
|
1835
1880
|
"overwriteTitle": "The file '{0}' has been changed on the file system."
|
|
1836
1881
|
},
|
|
1837
|
-
"filesExclude": "Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting.",
|
|
1882
|
+
"filesExclude": "Configure [glob patterns](https://aka.ms/vscode-glob-patterns) for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting.",
|
|
1838
1883
|
"format": "Format:",
|
|
1839
1884
|
"maxConcurrentUploads": "Maximum number of concurrent files to upload when uploading multiple files. 0 means all files will be uploaded concurrently.",
|
|
1840
1885
|
"maxFileSizeMB": "Controls the max file size in MB which is possible to open.",
|
|
@@ -1848,7 +1893,7 @@
|
|
|
1848
1893
|
},
|
|
1849
1894
|
"getting-started": {
|
|
1850
1895
|
"ai": {
|
|
1851
|
-
"header": "AI Support in the Theia IDE is available
|
|
1896
|
+
"header": "AI Support in the Theia IDE is available!",
|
|
1852
1897
|
"openAIChatView": "Open the AI Chat View now to learn how to start!"
|
|
1853
1898
|
},
|
|
1854
1899
|
"apiComparator": "{0} API Compatibility",
|
|
@@ -1859,46 +1904,6 @@
|
|
|
1859
1904
|
},
|
|
1860
1905
|
"telemetry": "Data Usage & Telemetry"
|
|
1861
1906
|
},
|
|
1862
|
-
"git": {
|
|
1863
|
-
"aFewSecondsAgo": "a few seconds ago",
|
|
1864
|
-
"addSignedOff": "Add Signed-off-by",
|
|
1865
|
-
"added": "Added",
|
|
1866
|
-
"amendReuseMessage": "To reuse the last commit message, press 'Enter' or 'Escape' to cancel.",
|
|
1867
|
-
"amendRewrite": "Rewrite previous commit message. Press 'Enter' to confirm or 'Escape' to cancel.",
|
|
1868
|
-
"checkoutCreateLocalBranchWithName": "Create a new local branch with name: {0}. Press 'Enter' to confirm or 'Escape' to cancel.",
|
|
1869
|
-
"checkoutProvideBranchName": "Please provide a branch name. ",
|
|
1870
|
-
"checkoutSelectRef": "Select a ref to checkout or create a new local branch:",
|
|
1871
|
-
"cloneQuickInputLabel": "Please provide a Git repository location. Press 'Enter' to confirm or 'Escape' to cancel.",
|
|
1872
|
-
"cloneRepository": "Clone the Git repository: {0}. Press 'Enter' to confirm or 'Escape' to cancel.",
|
|
1873
|
-
"compareWith": "Compare With...",
|
|
1874
|
-
"compareWithBranchOrTag": "Pick a branch or tag to compare with the currently active {0} branch:",
|
|
1875
|
-
"conflicted": "Conflicted",
|
|
1876
|
-
"copied": "Copied",
|
|
1877
|
-
"diff": "Diff",
|
|
1878
|
-
"dirtyDiffLinesLimit": "Do not show dirty diff decorations, if editor's line count exceeds this limit.",
|
|
1879
|
-
"dropStashMessage": "Stash successfully removed.",
|
|
1880
|
-
"editorDecorationsEnabled": "Show git decorations in the editor.",
|
|
1881
|
-
"fetchPickRemote": "Pick a remote to fetch from:",
|
|
1882
|
-
"gitDecorationsColors": "Use color decoration in the navigator.",
|
|
1883
|
-
"mergeEditor": {
|
|
1884
|
-
"currentSideTitle": "Current",
|
|
1885
|
-
"incomingSideTitle": "Incoming"
|
|
1886
|
-
},
|
|
1887
|
-
"mergeQuickPickPlaceholder": "Pick a branch to merge into the currently active {0} branch:",
|
|
1888
|
-
"missingUserInfo": "Make sure you configure your 'user.name' and 'user.email' in git.",
|
|
1889
|
-
"noHistoryForError": "There is no history available for {0}",
|
|
1890
|
-
"noPreviousCommit": "No previous commit to amend",
|
|
1891
|
-
"noRepositoriesSelected": "No repositories were selected.",
|
|
1892
|
-
"prepositionIn": "in",
|
|
1893
|
-
"renamed": "Renamed",
|
|
1894
|
-
"repositoryNotInitialized": "Repository {0} is not yet initialized.",
|
|
1895
|
-
"stashChanges": "Stash changes. Press 'Enter' to confirm or 'Escape' to cancel.",
|
|
1896
|
-
"stashChangesWithMessage": "Stash changes with message: {0}. Press 'Enter' to confirm or 'Escape' to cancel.",
|
|
1897
|
-
"tabTitleIndex": "{0} (Index)",
|
|
1898
|
-
"tabTitleWorkingTree": "{0} (Working tree)",
|
|
1899
|
-
"toggleBlameAnnotations": "Toggle Blame Annotations",
|
|
1900
|
-
"unstaged": "Unstaged"
|
|
1901
|
-
},
|
|
1902
1907
|
"keybinding-schema-updater": {
|
|
1903
1908
|
"deprecation": "Use `when` clause instead."
|
|
1904
1909
|
},
|
|
@@ -2073,7 +2078,8 @@
|
|
|
2073
2078
|
"loginTitle": "Login",
|
|
2074
2079
|
"signedOut": "Successfully signed out."
|
|
2075
2080
|
},
|
|
2076
|
-
"
|
|
2081
|
+
"extensionsRestrictedMode": "Some extensions are disabled in Restricted Mode",
|
|
2082
|
+
"supportNodeGlobalNavigator": "If enabled, the global navigator object in the extension host will be defined as provided by Node.js. Extensions may use the presence of the navigator object as a hint that code is running in a browser. Disabling this (the default) undefines the navigator in the extension host to preserve this assumption.",
|
|
2077
2083
|
"webviewTrace": "Controls communication tracing with webviews.",
|
|
2078
2084
|
"webviewWarnIfUnsecure": "Warns users that webviews are currently deployed insecurely."
|
|
2079
2085
|
},
|
|
@@ -2086,10 +2092,8 @@
|
|
|
2086
2092
|
"openByDefault": "Open the preview instead of the editor by default."
|
|
2087
2093
|
},
|
|
2088
2094
|
"property-view": {
|
|
2089
|
-
"created": "Created",
|
|
2090
2095
|
"directory": "Directory",
|
|
2091
2096
|
"lastModified": "Last modified",
|
|
2092
|
-
"location": "Location",
|
|
2093
2097
|
"noProperties": "No properties available.",
|
|
2094
2098
|
"properties": "Properties",
|
|
2095
2099
|
"symbolicLink": "Symbolic link"
|
|
@@ -2125,10 +2129,6 @@
|
|
|
2125
2129
|
"amendHeadCommit": "HEAD Commit",
|
|
2126
2130
|
"amendLastCommit": "Amend last commit",
|
|
2127
2131
|
"changeRepository": "Change Repository...",
|
|
2128
|
-
"config.untrackedChanges": "Controls how untracked changes behave.",
|
|
2129
|
-
"config.untrackedChanges.hidden": "hidden",
|
|
2130
|
-
"config.untrackedChanges.mixed": "mixed",
|
|
2131
|
-
"config.untrackedChanges.separate": "separate",
|
|
2132
2132
|
"dirtyDiff": {
|
|
2133
2133
|
"close": "Close Change Peek View"
|
|
2134
2134
|
},
|
|
@@ -2136,7 +2136,8 @@
|
|
|
2136
2136
|
"mergeEditor": {
|
|
2137
2137
|
"resetConfirmationTitle": "Do you really want to reset the merge result in this editor?"
|
|
2138
2138
|
},
|
|
2139
|
-
"
|
|
2139
|
+
"noHistoryForError": "There is no history available for {0}",
|
|
2140
|
+
"prepositionIn": "in",
|
|
2140
2141
|
"unamend": "Unamend",
|
|
2141
2142
|
"unamendCommit": "Unamend commit"
|
|
2142
2143
|
},
|
|
@@ -2144,6 +2145,7 @@
|
|
|
2144
2145
|
"includeIgnoredFiles": "Include Ignored Files",
|
|
2145
2146
|
"noFolderSpecified": "You have not opened or specified a folder. Only open files are currently searched.",
|
|
2146
2147
|
"resultSubset": "This is only a subset of all results. Use a more specific search term to narrow down the result list.",
|
|
2148
|
+
"searchExclude": "Configure [glob patterns](https://aka.ms/vscode-glob-patterns) for excluding files and folders in full-text searches and file search in quick open. Inherits all glob patterns from the `#files.exclude#` setting.",
|
|
2147
2149
|
"searchOnEditorModification": "Search the active editor when modified."
|
|
2148
2150
|
},
|
|
2149
2151
|
"secondary-window": {
|
|
@@ -2188,6 +2190,8 @@
|
|
|
2188
2190
|
},
|
|
2189
2191
|
"terminal": {
|
|
2190
2192
|
"defaultProfile": "The default profile used on {0}",
|
|
2193
|
+
"enableCommandHistory": "Track terminal commands and their output separately using shell injection. This enables use cases such as visually distinguishing commands in the UI and giving AI agents more structured access to terminals. Toggling this setting will not affect terminals that are already open.\n\n \n\nThis feature is currently only supported by task terminals and user terminals running bash or zsh.",
|
|
2194
|
+
"enableCommandSeparator": "Enable a visual separator between executed commands and their output in the terminal. Changes only apply to commands executed after this setting is modified. Only works when {0} is enabled.",
|
|
2191
2195
|
"enableCopy": "Enable ctrl-c (cmd-c on macOS) to copy selected text",
|
|
2192
2196
|
"enablePaste": "Enable ctrl-v (cmd-v on macOS) to paste from clipboard",
|
|
2193
2197
|
"profileArgs": "The shell arguments that this profile uses.",
|
|
@@ -2269,6 +2273,7 @@
|
|
|
2269
2273
|
"confirmDialogMessage": "The extension \"{0}\" is unverified and might pose a security risk.",
|
|
2270
2274
|
"confirmDialogTitle": "Are you sure you want to proceed with the installation?",
|
|
2271
2275
|
"downloadCount": "Download count: {0}",
|
|
2276
|
+
"duplicateVSIX": "Failed to install {0} from VSIX. The extension is already installed. Uninstall the existing extension before installing a new version from VSIX.",
|
|
2272
2277
|
"errorFetching": "Error fetching extensions.",
|
|
2273
2278
|
"errorFetchingConfigurationHint": "This could be caused by network configuration issues.",
|
|
2274
2279
|
"failedInstallingVSIX": "Failed to install {0} from VSIX.",
|
|
@@ -2277,6 +2282,7 @@
|
|
|
2277
2282
|
"onlyShowVerifiedExtensionsDescription": "This allows the {0} to only show verified extensions.",
|
|
2278
2283
|
"onlyShowVerifiedExtensionsTitle": "Only Show Verified Extensions",
|
|
2279
2284
|
"recommendedExtensions": "A list of the names of extensions recommended for use in this workspace.",
|
|
2285
|
+
"restrictedModeInstallWarning": "The extension '{0}' may be disabled if it does not support running in Restricted Mode. Trust this workspace to ensure the extension works as expected.",
|
|
2280
2286
|
"searchPlaceholder": "Search Extensions in {0}",
|
|
2281
2287
|
"showInstalled": "Show Installed Extensions",
|
|
2282
2288
|
"showRecommendedExtensions": "Controls whether notifications are shown for extension recommendations.",
|