@n8n/i18n 2.31.4 → 2.32.1
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/dist/index.cjs +281 -95
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +250 -64
- package/dist/index.d.mts +250 -64
- package/dist/index.mjs +281 -95
- package/dist/index.mjs.map +1 -1
- package/dist/types2.d.cts +250 -64
- package/dist/types2.d.mts +250 -64
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -637,6 +637,7 @@ var en_default = {
|
|
|
637
637
|
"chatHub.credentials.selector.cancel": "Cancel",
|
|
638
638
|
"chatHub.message.actions.readAloud": "Read aloud",
|
|
639
639
|
"chatHub.message.actions.stopReading": "Stop reading",
|
|
640
|
+
"agents.builder.preview.sendToAssistant": "Send to assistant",
|
|
640
641
|
"chatHub.message.actions.edit": "Edit",
|
|
641
642
|
"chatHub.message.actions.regenerate": "Regenerate",
|
|
642
643
|
"chatHub.message.actions.executionId": "Execution ID",
|
|
@@ -1358,15 +1359,6 @@ var en_default = {
|
|
|
1358
1359
|
"executionDetails.versionTooltip": "Created {date}",
|
|
1359
1360
|
"executionDetails.startingSoon": "Starting soon",
|
|
1360
1361
|
"executionDetails.workflow": "workflow",
|
|
1361
|
-
"emptyStateBuilderPrompt.subtitle": "Build workflows by chatting with AI",
|
|
1362
|
-
"emptyStateBuilderPrompt.buildWorkflow": "Build workflow",
|
|
1363
|
-
"emptyStateBuilderPrompt.orStartWith": "or start from",
|
|
1364
|
-
"emptyStateBuilderPrompt.fromScratch": "New workflow",
|
|
1365
|
-
"emptyStateBuilderPrompt.fromScratchTooltip": "Start with an empty canvas and add nodes manually",
|
|
1366
|
-
"emptyStateBuilderPrompt.template": "Template",
|
|
1367
|
-
"emptyStateBuilderPrompt.templateTooltip": "Browse pre-built workflows you can customize",
|
|
1368
|
-
"emptyStateBuilderPrompt.importFromFile": "Import file",
|
|
1369
|
-
"emptyStateBuilderPrompt.importFromFileTooltip": "Upload a workflow JSON file from your computer",
|
|
1370
1362
|
"executionsLandingPage.emptyState.noTrigger.heading": "Set up the first step. Then execute your workflow",
|
|
1371
1363
|
"executionsLandingPage.emptyState.noTrigger.buttonText": "Add first step...",
|
|
1372
1364
|
"executionsLandingPage.clickExecutionMessage": "Click on an execution from the list to view it",
|
|
@@ -2146,6 +2138,13 @@ var en_default = {
|
|
|
2146
2138
|
"nodeCreator.triggerHelperPanel.workflowTriggerDisplayName": "When executed by another workflow",
|
|
2147
2139
|
"nodeCreator.triggerHelperPanel.workflowTriggerDescription": "Runs the flow when called by the Execute Workflow node from a different workflow",
|
|
2148
2140
|
"nodeCreator.replaceNode.title": "Replace this step",
|
|
2141
|
+
"nodeCreator.agentsPanel.searchPlaceholder": "Search agents...",
|
|
2142
|
+
"nodeCreator.agentsPanel.createNewAgent": "Create new agent",
|
|
2143
|
+
"nodeCreator.agentsPanel.createNewAgentDescription": "Build a fresh agent inline in this workflow",
|
|
2144
|
+
"nodeCreator.agentsPanel.existingAgentsLabel": "Or message an existing agent",
|
|
2145
|
+
"nodeCreator.agentsPanel.empty": "No agents in this project yet",
|
|
2146
|
+
"nodeCreator.agentsPanel.noMatchingAgents": "No agents matching your search",
|
|
2147
|
+
"nodeCreator.agentsPanel.loadError": "Could not load agents",
|
|
2149
2148
|
"nodeCreator.aiPanel.aiNodes": "AI Nodes",
|
|
2150
2149
|
"nodeCreator.aiPanel.aiOtherNodes": "Other AI Nodes",
|
|
2151
2150
|
"nodeCreator.aiPanel.aiOtherNodesDescription": "Embeddings, Vector Stores, LLMs and other AI nodes",
|
|
@@ -2170,6 +2169,8 @@ var en_default = {
|
|
|
2170
2169
|
"nodeCreator.nodeItem.triggerIconTitle": "Trigger Node",
|
|
2171
2170
|
"nodeCreator.nodeItem.aiIconTitle": "LangChain AI Node",
|
|
2172
2171
|
"nodeCreator.nodeItem.deprecated": "Deprecated",
|
|
2172
|
+
"nodeCreator.nodeItem.deprecatingSoon": "Deprecating soon",
|
|
2173
|
+
"nodeCreator.nodeItem.earlyPreview": "Early preview",
|
|
2173
2174
|
"nodeCreator.nodeItem.beta": "Beta",
|
|
2174
2175
|
"nodeCredentials.createNew": "Create new credential",
|
|
2175
2176
|
"nodeCredentials.createNew.permissionDenied": "Your current role does not allow you to create credentials",
|
|
@@ -2427,6 +2428,10 @@ var en_default = {
|
|
|
2427
2428
|
"contextMenu.collapseAllGroups": "Collapse all groups",
|
|
2428
2429
|
"contextMenu.expandSelectedGroups": "Expand selected",
|
|
2429
2430
|
"contextMenu.collapseSelectedGroups": "Collapse selected",
|
|
2431
|
+
"contextMenu.showAllGroupDescriptions": "Show group descriptions",
|
|
2432
|
+
"contextMenu.hideAllGroupDescriptions": "Hide group descriptions",
|
|
2433
|
+
"contextMenu.showGroupDescription": "Show group description",
|
|
2434
|
+
"contextMenu.hideGroupDescription": "Hide group description",
|
|
2430
2435
|
"contextMenu.replace": "Replace",
|
|
2431
2436
|
"contextMenu.duplicate": "Duplicate | Duplicate {subject}",
|
|
2432
2437
|
"contextMenu.open": "Open...",
|
|
@@ -2489,6 +2494,24 @@ var en_default = {
|
|
|
2489
2494
|
"oauth.consentView.action.createUpdateWorkflows": "Create and update workflows on your behalf",
|
|
2490
2495
|
"oauth.consentView.action.createDataTables": "Create and update data tables on your behalf",
|
|
2491
2496
|
"oauth.consentView.action.searchProjectsAndFolders": "Search for projects and folders",
|
|
2497
|
+
"oauth.consentView.scopes.description": "Choose what {clientName} is allowed to do.",
|
|
2498
|
+
"oauth.consentView.scopes.label": "Scopes",
|
|
2499
|
+
"oauth.consentView.scopes.all": "All",
|
|
2500
|
+
"oauth.consentView.scopes.readOnly": "Read only",
|
|
2501
|
+
"oauth.consentView.scopes.custom": "Custom",
|
|
2502
|
+
"oauth.consentView.scopes.search.placeholder": "Search scopes",
|
|
2503
|
+
"oauth.consentView.scopes.toggleGroup": "Toggle {group} scopes",
|
|
2504
|
+
"oauth.consentView.scopes.count": "{selected} of {total} scopes selected",
|
|
2505
|
+
"oauth.consentView.scopes.badge.read": "read",
|
|
2506
|
+
"oauth.consentView.scopes.badge.write": "write",
|
|
2507
|
+
"oauth.consentView.scopes.group.workflows": "Workflows",
|
|
2508
|
+
"oauth.consentView.scopes.group.executions": "Executions",
|
|
2509
|
+
"oauth.consentView.scopes.group.credentials": "Credentials",
|
|
2510
|
+
"oauth.consentView.scopes.group.dataTables": "Data tables",
|
|
2511
|
+
"oauth.consentView.scopes.group.projectsAndFolders": "Projects and folders",
|
|
2512
|
+
"oauth.consentView.scopes.note": "Applies only to this connection. Other clients keep their own permissions.",
|
|
2513
|
+
"oauth.consentView.scopes.tools.count": "{count} tool | {count} tools",
|
|
2514
|
+
"oauth.consentView.scopes.tools.enabledOf": "{enabled} of {total} tools enabled",
|
|
2492
2515
|
"oauth.consentView.readMore": "Read more <a href='{docsUrl}' target='_blank'>here</a>",
|
|
2493
2516
|
"oauth.consentView.redirectWarning.title": "You will be redirected to the following location:",
|
|
2494
2517
|
"oauth.consentView.redirectWarning.confirm": "I recognize and trust this URL",
|
|
@@ -2786,7 +2809,8 @@ var en_default = {
|
|
|
2786
2809
|
"projectRoles.backToProjectRoles": "Back to project roles",
|
|
2787
2810
|
"projectRoles.backToProjectSettings": "Back to project settings",
|
|
2788
2811
|
"projectRoles.newRole": "New Role",
|
|
2789
|
-
"roles.addRole": "
|
|
2812
|
+
"roles.addRole.instance": "Create instance role",
|
|
2813
|
+
"roles.addRole.project": "Create project role",
|
|
2790
2814
|
"roles.description": "Roles allow you to manage specific permissions tailored to your team's needs. Define granular access to workflows, credentials, project resources and instance settings. Learn more in",
|
|
2791
2815
|
"roles.description.docsLink": "documentation",
|
|
2792
2816
|
"projectRoles.discardChanges": "Discard changes",
|
|
@@ -2855,7 +2879,7 @@ var en_default = {
|
|
|
2855
2879
|
"roles.tab.project": "Project roles",
|
|
2856
2880
|
"instanceRoles.table.membersAssigned": "Members assigned",
|
|
2857
2881
|
"instanceRoles.resource.settings": "Instance settings",
|
|
2858
|
-
"instanceRoles.resource.user": "
|
|
2882
|
+
"instanceRoles.resource.user": "Users",
|
|
2859
2883
|
"instanceRoles.resource.role": "Roles",
|
|
2860
2884
|
"instanceRoles.resource.apiKey": "API keys",
|
|
2861
2885
|
"instanceRoles.resource.tag": "Tags",
|
|
@@ -2869,6 +2893,15 @@ var en_default = {
|
|
|
2869
2893
|
"instanceRoles.option.manageProjectRoles": "Manage project roles",
|
|
2870
2894
|
"instanceRoles.option.manageAllRoles": "Manage all roles (instance and project)",
|
|
2871
2895
|
"instanceRoles.option.includedIn": "Included in {option}",
|
|
2896
|
+
"instanceRoles.description.settings.manage": "View and change instance-wide settings",
|
|
2897
|
+
"instanceRoles.description.user.manage": "Invite, remove, and update users across the instance",
|
|
2898
|
+
"instanceRoles.description.role.manageProjectRoles": "Create, edit, and delete custom project roles only",
|
|
2899
|
+
"instanceRoles.description.role.manage": "Create, edit, and delete all custom roles (instance and project).",
|
|
2900
|
+
"instanceRoles.description.apiKey.manageOwn": "Create and delete the user's own API keys",
|
|
2901
|
+
"instanceRoles.description.apiKey.manageAll": "View and delete other users' API keys.",
|
|
2902
|
+
"instanceRoles.description.tag.manage": "Create, edit, and delete tags",
|
|
2903
|
+
"instanceRoles.description.project.create": "Create new projects",
|
|
2904
|
+
"instanceRoles.description.insights.view": "View instance-level insights",
|
|
2872
2905
|
"instanceRoles.warning.manageMembers": "A user with this permission can give themselves or an account they invite permissions they don't currently hold. {link}",
|
|
2873
2906
|
"instanceRoles.warning.manageRoles": "A user with this permission can edit their own custom role to add permissions they weren't originally granted. {link}",
|
|
2874
2907
|
"instanceRoles.warning.viewDocs": "View docs",
|
|
@@ -3146,7 +3179,7 @@ var en_default = {
|
|
|
3146
3179
|
"settings.mcp.header.toggle.disabled": "Disabled",
|
|
3147
3180
|
"settings.mcp.actionBox.heading": "Connect AI assistants to build and run workflows",
|
|
3148
3181
|
"settings.mcp.actionBox.button.label": "Enable MCP access",
|
|
3149
|
-
"settings.mcp.emptyState.
|
|
3182
|
+
"settings.mcp.emptyState.description": "Let MCP clients like Claude Code and Cursor build, run, and iterate on workflows in your instance.",
|
|
3150
3183
|
"settings.mcp.tabs.workflows": "Workflows",
|
|
3151
3184
|
"settings.mcp.tabs.oauth": "Connected clients",
|
|
3152
3185
|
"settings.mcp.tabs.oauthSettings": "OAuth settings",
|
|
@@ -3172,12 +3205,63 @@ var en_default = {
|
|
|
3172
3205
|
"settings.mcp.error.fetching.apiKey": "Error fetching access token",
|
|
3173
3206
|
"settings.mcp.error.rotating.apiKey": "Error generating new access token",
|
|
3174
3207
|
"settings.mcp.error.fetching.oAuthClients": "Error fetching list of OAuth clients",
|
|
3175
|
-
"settings.mcp.oAuthClients.table.clientName": "Client
|
|
3176
|
-
"settings.mcp.oAuthClients.table.connectedAt": "Connected
|
|
3177
|
-
"settings.mcp.oAuthClients.table.
|
|
3208
|
+
"settings.mcp.oAuthClients.table.clientName": "Client",
|
|
3209
|
+
"settings.mcp.oAuthClients.table.connectedAt": "Connected on",
|
|
3210
|
+
"settings.mcp.oAuthClients.table.access": "Access",
|
|
3211
|
+
"settings.mcp.oAuthClients.table.action.revokeAccess": "Revoke access",
|
|
3212
|
+
"settings.mcp.oAuthClients.clientType.cli": "CLI",
|
|
3213
|
+
"settings.mcp.oAuthClients.clientType.ide": "IDE",
|
|
3214
|
+
"settings.mcp.oAuthClients.clientType.editor": "Editor",
|
|
3215
|
+
"settings.mcp.oAuthClients.clientType.assistant": "Assistant",
|
|
3216
|
+
"settings.mcp.oAuthClients.scope.workflow.read": "List workflows",
|
|
3217
|
+
"settings.mcp.oAuthClients.scope.workflow.write": "Create and update workflows",
|
|
3218
|
+
"settings.mcp.oAuthClients.scope.workflow.execute": "Run workflows",
|
|
3219
|
+
"settings.mcp.oAuthClients.scope.execution.read": "Get execution details",
|
|
3220
|
+
"settings.mcp.oAuthClients.scope.credential.read": "List credentials",
|
|
3221
|
+
"settings.mcp.oAuthClients.scope.dataTable.read": "List data tables",
|
|
3222
|
+
"settings.mcp.oAuthClients.scope.dataTable.write": "Create and update data tables",
|
|
3223
|
+
"settings.mcp.oAuthClients.scope.project.read": "Search projects and folders",
|
|
3224
|
+
"settings.mcp.oAuthClients.scope.tag.read": "List tags",
|
|
3225
|
+
"settings.mcp.oAuthClients.scope.more": "+{count}",
|
|
3226
|
+
"settings.mcp.oAuthClients.access.full": "Full access",
|
|
3227
|
+
"settings.mcp.oAuthClients.access.none": "No access",
|
|
3228
|
+
"settings.mcp.oAuthClients.details.subtitle": "Connected to this instance over MCP",
|
|
3229
|
+
"settings.mcp.oAuthClients.details.subtitleWithType": "{type} · Connected to this instance over MCP",
|
|
3230
|
+
"settings.mcp.oAuthClients.details.connectedOn": "Connected on",
|
|
3231
|
+
"settings.mcp.oAuthClients.details.access": "Access",
|
|
3232
|
+
"settings.mcp.oAuthClients.details.enablesTools": "Enables {count} tool | Enables {count} tools",
|
|
3233
|
+
"settings.mcp.oAuthClients.details.badge.read": "Read",
|
|
3234
|
+
"settings.mcp.oAuthClients.details.badge.write": "Write",
|
|
3235
|
+
"settings.mcp.oAuthClients.resource.workflow": "Workflow",
|
|
3236
|
+
"settings.mcp.oAuthClients.resource.execution": "Execution",
|
|
3237
|
+
"settings.mcp.oAuthClients.resource.credential": "Credential",
|
|
3238
|
+
"settings.mcp.oAuthClients.resource.dataTable": "Data table",
|
|
3239
|
+
"settings.mcp.oAuthClients.resource.project": "Project",
|
|
3240
|
+
"settings.mcp.oAuthClients.resource.tag": "Tag",
|
|
3178
3241
|
"settings.mcp.oAuthClients.revoke.success.title": "Access revoked",
|
|
3179
3242
|
"settings.mcp.oAuthClients.revoke.success.message": "Client {name} access has been revoked",
|
|
3180
3243
|
"settings.mcp.oAuthClients.revoke.error": "Error revoking client access",
|
|
3244
|
+
"settings.mcp.oAuthClients.revoke.title": "Revoke access for \"{name}\"?",
|
|
3245
|
+
"settings.mcp.oAuthClients.revoke.description.own": "The client will lose access to this instance immediately and will need to reconnect. This can't be undone.",
|
|
3246
|
+
"settings.mcp.oAuthClients.revoke.description.other": "The client {ownerName} connected will lose access to this instance immediately and will need to reconnect. This can't be undone.",
|
|
3247
|
+
"settings.mcp.oAuthClients.revoke.button": "Revoke",
|
|
3248
|
+
"settings.mcp.oAuthClients.tabs.mine": "Mine",
|
|
3249
|
+
"settings.mcp.oAuthClients.tabs.all": "All",
|
|
3250
|
+
"settings.mcp.oAuthClients.search.placeholder": "Search clients",
|
|
3251
|
+
"settings.mcp.oAuthClients.search.noResults": "No clients match your search or filters",
|
|
3252
|
+
"settings.mcp.oAuthClients.filters.clientType": "Client type",
|
|
3253
|
+
"settings.mcp.oAuthClients.filters.clientType.all": "All types",
|
|
3254
|
+
"settings.mcp.oAuthClients.filters.clientType.ide": "IDE",
|
|
3255
|
+
"settings.mcp.oAuthClients.filters.clientType.cli": "CLI",
|
|
3256
|
+
"settings.mcp.oAuthClients.filters.clientType.web": "Web",
|
|
3257
|
+
"settings.mcp.oAuthClients.filters.connectedBy": "Connected by",
|
|
3258
|
+
"settings.mcp.oAuthClients.filters.connectedBy.all": "All users",
|
|
3259
|
+
"settings.mcp.oAuthClients.filters.connected": "Connected",
|
|
3260
|
+
"settings.mcp.oAuthClients.filters.connected.allTime": "All time",
|
|
3261
|
+
"settings.mcp.oAuthClients.filters.connected.lastXDays": "Last {count} days",
|
|
3262
|
+
"settings.mcp.oAuthClients.filters.connected.older": "Older",
|
|
3263
|
+
"settings.mcp.oAuthClients.table.connectedBy": "Connected by",
|
|
3264
|
+
"settings.mcp.oAuthClients.details.connectedBy": "Connected by",
|
|
3181
3265
|
"settings.mcp.refresh.tooltip": "Refresh list",
|
|
3182
3266
|
"settings.mcp.connectWorkflows": "Enable workflows",
|
|
3183
3267
|
"settings.mcp.connectWorkflows.modalTitle": "Enable workflow MCP access",
|
|
@@ -3400,7 +3484,7 @@ var en_default = {
|
|
|
3400
3484
|
"settings.users.userRoleUpdated.cancel.button": "Cancel",
|
|
3401
3485
|
"settings.users.table.update.error": "Failed to update table",
|
|
3402
3486
|
"settings.users.table.header.user": "@:_reusableBaseText.user",
|
|
3403
|
-
"settings.users.table.header.accountType": "
|
|
3487
|
+
"settings.users.table.header.accountType": "Instance role",
|
|
3404
3488
|
"settings.users.table.header.2fa": "2FA",
|
|
3405
3489
|
"settings.users.table.header.lastActive": "Last Active",
|
|
3406
3490
|
"settings.users.table.row.allProjects": "All projects",
|
|
@@ -4112,6 +4196,15 @@ var en_default = {
|
|
|
4112
4196
|
"canvas.nodeGroup.titlePlaceholder": "Group name",
|
|
4113
4197
|
"canvas.nodeGroup.expand": "Expand",
|
|
4114
4198
|
"canvas.nodeGroup.collapse": "Collapse",
|
|
4199
|
+
"canvas.nodeGroup.prompt.renameGroup": "Rename group",
|
|
4200
|
+
"canvas.nodeGroup.duplicateName": "A group with this name already exists",
|
|
4201
|
+
"canvas.nodeGroup.renameBlocked.title": "Group not renamed",
|
|
4202
|
+
"canvas.nodeGroup.descriptionPlaceholder": "Add description",
|
|
4203
|
+
"canvas.nodeGroup.editDescription": "Edit description",
|
|
4204
|
+
"canvas.nodeGroup.saveDescription": "Save description",
|
|
4205
|
+
"canvas.nodeGroup.cancelEdit": "Cancel edit",
|
|
4206
|
+
"canvas.nodeGroup.pinDescription": "Show description",
|
|
4207
|
+
"canvas.nodeGroup.unpinDescription": "Hide description",
|
|
4115
4208
|
"workflowExtraction.error.failure": "Sub-workflow conversion failed",
|
|
4116
4209
|
"workflowExtraction.error.selectionGraph.inputEdgeToNonRoot": "Non-input node '{node}' has a connection from a node outside the current selection.",
|
|
4117
4210
|
"workflowExtraction.error.selectionGraph.outputEdgeFromNonLeaf": "Non-output node '{node}' has a connection to a node outside the current selection.",
|
|
@@ -4471,7 +4564,6 @@ var en_default = {
|
|
|
4471
4564
|
"workflows.templateRecoV2.useTemplate": "Use template",
|
|
4472
4565
|
"workflows.templateRecoV2.exploreTemplates": "Or explore templates to get inspired and learn fast:",
|
|
4473
4566
|
"templates.featured.loading": "Loading templates...",
|
|
4474
|
-
"templates.featured.seeMore": "See more templates",
|
|
4475
4567
|
"workflows.search.placeholder": "Search",
|
|
4476
4568
|
"workflows.filters": "Filters",
|
|
4477
4569
|
"workflows.filters.tags": "Tags",
|
|
@@ -4494,17 +4586,11 @@ var en_default = {
|
|
|
4494
4586
|
"workflows.noResults": "No workflows found",
|
|
4495
4587
|
"workflows.noResults.withSearch.switchToShared.preamble": "some workflows may be",
|
|
4496
4588
|
"workflows.noResults.withSearch.switchToShared.link": "hidden",
|
|
4497
|
-
"workflows.empty.heading": "Welcome, {name}!",
|
|
4498
|
-
"workflows.empty.heading.userNotSetup": "Welcome!",
|
|
4499
4589
|
"workflows.empty.onboarding.heading": "Let's build your first automation",
|
|
4500
4590
|
"workflows.empty.list.heading": "Create your first automation",
|
|
4501
4591
|
"workflows.empty.list.description": "Build multi-step automations connecting your apps and services",
|
|
4502
|
-
"workflows.empty.heading.builder": "Hi {name}, what do you want to automate?",
|
|
4503
|
-
"workflows.empty.heading.builder.userNotSetup": "Hi, what do you want to automate?",
|
|
4504
|
-
"workflows.empty.description": "What do you want to build?",
|
|
4505
4592
|
"workflows.empty.description.readOnlyEnv": "No workflows here yet",
|
|
4506
4593
|
"workflows.empty.description.noPermission": "There are currently no workflows to view",
|
|
4507
|
-
"workflows.empty.startWithTemplate": "Start with a template",
|
|
4508
4594
|
"workflows.empty.browseTemplates": "Explore workflow templates",
|
|
4509
4595
|
"workflows.empty.learnN8n": "Learn n8n",
|
|
4510
4596
|
"workflows.empty.button.disabled.tooltip": "Your current role in the project does not allow you to create workflows",
|
|
@@ -4837,10 +4923,6 @@ var en_default = {
|
|
|
4837
4923
|
"agents.modelSelector.freeCredits.label": "Use free OpenAI credits",
|
|
4838
4924
|
"agents.modelSelector.freeCredits.badge": "free credits",
|
|
4839
4925
|
"agents.modelSelector.freeCredits.description": "Get {credits} free OpenAI API credits. Try it with gpt-5-mini.",
|
|
4840
|
-
"agents.builder.unconfigured.title": "Set up the agent builder",
|
|
4841
|
-
"agents.builder.unconfigured.description.admin": "Choose a provider and credential so the agent builder can help you design agents.",
|
|
4842
|
-
"agents.builder.unconfigured.description.nonAdmin": "Ask an instance admin to configure the agent builder before you can build agents here.",
|
|
4843
|
-
"agents.builder.unconfigured.cta": "Open agent builder settings",
|
|
4844
4926
|
"settings.n8nAgent.enable.label": "Enable AI Assistant",
|
|
4845
4927
|
"settings.n8nAgent.enable.description": "Enables the feature for all users in the instance",
|
|
4846
4928
|
"settings.n8nAgent.computerUse.label": "Enable Computer Use for AI Assistant",
|
|
@@ -5489,11 +5571,9 @@ var en_default = {
|
|
|
5489
5571
|
"agentNode.card.moreChips": "+{count}",
|
|
5490
5572
|
"agentNode.card.loadError": "Couldn’t load agent details",
|
|
5491
5573
|
"agentNode.card.noModel": "No model selected",
|
|
5492
|
-
"agentNode.ndv.banner.prefix": "Build an autonomous agent with our new",
|
|
5493
|
-
"agentNode.ndv.banner.link": "Agent Builder",
|
|
5494
5574
|
"agentNode.ndv.banner.suffix": ". Alternatively, fill in the form below.",
|
|
5495
5575
|
"agentNode.ndv.section.agent": "Agent",
|
|
5496
|
-
"agentNode.ndv.referenced.editInBuilder": "Edit
|
|
5576
|
+
"agentNode.ndv.referenced.editInBuilder": "Edit agent",
|
|
5497
5577
|
"agentNode.ndv.unavailable": "This agent was deleted or you lost access.",
|
|
5498
5578
|
"agentSelector.createAgentFailed": "Error creating agent",
|
|
5499
5579
|
"evaluation.listRuns.status.new": "New",
|
|
@@ -5679,6 +5759,7 @@ var en_default = {
|
|
|
5679
5759
|
"evaluation.collections.errors.fetchFailed": "Could not load evaluation collections",
|
|
5680
5760
|
"evaluation.collections.card.done": "Done",
|
|
5681
5761
|
"evaluation.collections.card.running": "Running",
|
|
5762
|
+
"evaluation.collections.card.failed": "Failed",
|
|
5682
5763
|
"evaluation.collections.card.currentDraft": "Current draft",
|
|
5683
5764
|
"evaluation.collections.card.meta.versions": "{count} version | {count} versions",
|
|
5684
5765
|
"evaluation.collections.card.lastRunToday": "today, {time}",
|
|
@@ -5714,6 +5795,37 @@ var en_default = {
|
|
|
5714
5795
|
"evaluation.compare.insights.noRegressions": "No regressions detected",
|
|
5715
5796
|
"evaluation.compare.errors.loadFailed": "Could not load the comparison.",
|
|
5716
5797
|
"evaluation.compare.errors.notFound": "This collection could not be found.",
|
|
5798
|
+
"evaluation.compare.tabs.cases": "Cases",
|
|
5799
|
+
"evaluation.compare.tabs.outputs": "Outputs",
|
|
5800
|
+
"evaluation.compare.tabs.metrics": "Metrics",
|
|
5801
|
+
"evaluation.compare.tabs.workflowDiff": "Workflow diff",
|
|
5802
|
+
"evaluation.compare.datasetMismatch": "Versions ran against different case counts ({counts}). Comparison is aligned by row index.",
|
|
5803
|
+
"evaluation.compare.cases.col.index": "#",
|
|
5804
|
+
"evaluation.compare.cases.col.input": "Case input",
|
|
5805
|
+
"evaluation.compare.cases.col.best": "Best",
|
|
5806
|
+
"evaluation.compare.cases.col.deltaVsBest": "Δ vs best",
|
|
5807
|
+
"evaluation.compare.cases.bestPill": "{letter} ★",
|
|
5808
|
+
"evaluation.compare.cases.loading": "Loading cases…",
|
|
5809
|
+
"evaluation.compare.cases.running": "Evaluation in progress — scores fill in as each case completes.",
|
|
5810
|
+
"evaluation.compare.cases.empty": "No case-level results to compare yet.",
|
|
5811
|
+
"evaluation.compare.cases.loadError": "Some versions' case data couldn't be loaded.",
|
|
5812
|
+
"evaluation.compare.outputs.casesSidebarTitle": "Test cases",
|
|
5813
|
+
"evaluation.compare.outputs.input": "Input",
|
|
5814
|
+
"evaluation.compare.outputs.noOutput": "No output for this version.",
|
|
5815
|
+
"evaluation.compare.metrics.col.metric": "Metric",
|
|
5816
|
+
"evaluation.compare.metrics.empty": "No score-shaped metrics to compare yet.",
|
|
5817
|
+
"evaluation.metric.description.correctness": "Whether the answer’s meaning matches a reference answer. Scored 1 (worst)–5 (best).",
|
|
5818
|
+
"evaluation.metric.description.helpfulness": "Whether the response addresses the query. Scored 1 (worst)–5 (best).",
|
|
5819
|
+
"evaluation.metric.description.stringSimilarity": "How close the answer is to a reference answer, character by character. Scored 0–1.",
|
|
5820
|
+
"evaluation.metric.description.categorization": "Whether the answer exactly matches the reference answer. 1 if so, 0 otherwise.",
|
|
5821
|
+
"evaluation.metric.description.toolsUsed": "Whether the expected tool(s) were used. Scored 0–1.",
|
|
5822
|
+
"evaluation.metric.criteria.label": "Criteria:",
|
|
5823
|
+
"evaluation.metric.criteria.showMore": "Show more",
|
|
5824
|
+
"evaluation.metric.criteria.showLess": "Show less",
|
|
5825
|
+
"evaluation.compare.workflowDiff.needTwo": "Add at least two versions to this collection to compare their workflows.",
|
|
5826
|
+
"evaluation.compare.workflowDiff.loadError": "Could not load the workflows to compare.",
|
|
5827
|
+
"evaluation.compare.workflowDiff.base": "Base",
|
|
5828
|
+
"evaluation.compare.workflowDiff.compare": "Compare",
|
|
5717
5829
|
"evaluation.setup.title": "New collection",
|
|
5718
5830
|
"evaluation.setup.subtitle": "Pick a dataset and the versions you want to compare.",
|
|
5719
5831
|
"evaluation.setup.collectionName": "Collection name",
|
|
@@ -5869,7 +5981,7 @@ var en_default = {
|
|
|
5869
5981
|
"evaluations.canvasInfoCard.setup": "Setup",
|
|
5870
5982
|
"evaluations.canvasInfoCard.dismiss": "Dismiss",
|
|
5871
5983
|
"evaluations.emptyState.title": "Evaluations",
|
|
5872
|
-
"evaluations.emptyState.description": "
|
|
5984
|
+
"evaluations.emptyState.description": "Evaluations are automated tests that assess agent workflow outputs using model-graded checks.",
|
|
5873
5985
|
"evaluations.emptyState.catchIssues.title": "Catch issues early",
|
|
5874
5986
|
"evaluations.emptyState.catchIssues.description": "Spot failures and unexpected behaviour before going live.",
|
|
5875
5987
|
"evaluations.emptyState.buildConfidence.title": "Build with confidence",
|
|
@@ -5886,6 +5998,73 @@ var en_default = {
|
|
|
5886
5998
|
"evaluations.wizardSidepanel.customCheck.expressionTag": "Expression",
|
|
5887
5999
|
"evaluations.wizardSidepanel.customCheck.submit": "Add check",
|
|
5888
6000
|
"evaluations.wizardSidepanel.customCheck.remove": "Remove custom check",
|
|
6001
|
+
"evaluations.tests.addTestCase": "Add test case",
|
|
6002
|
+
"evaluations.tests.runAll": "Run all",
|
|
6003
|
+
"evaluations.tests.runAll.error": "Couldn't run all test cases. Please try again.",
|
|
6004
|
+
"evaluations.tests.list.heading": "Test cases",
|
|
6005
|
+
"evaluations.tests.list.empty": "No test cases yet. Add one below or start from a recent run.",
|
|
6006
|
+
"evaluations.tests.list.caseLabel": "Test case {index}",
|
|
6007
|
+
"evaluations.tests.list.seedCaseLabel": "First test case",
|
|
6008
|
+
"evaluations.tests.list.noInput": "(no input)",
|
|
6009
|
+
"evaluations.tests.list.editHint": "Edit",
|
|
6010
|
+
"evaluations.tests.executions.heading": "Start from a recent run",
|
|
6011
|
+
"evaluations.tests.executions.hint": "Pick a successful execution to prefill a new test case.",
|
|
6012
|
+
"evaluations.tests.newCase.title": "New case",
|
|
6013
|
+
"evaluations.tests.suite.receivesInput": "receives input, check output",
|
|
6014
|
+
"evaluations.tests.results.createCase": "Create case",
|
|
6015
|
+
"evaluations.tests.results.empty": "No test cases yet. Create one to get started.",
|
|
6016
|
+
"evaluations.tests.empty.noNode": "You need to add a node before you can create tests",
|
|
6017
|
+
"evaluations.tests.empty.noNode.button": "Add node",
|
|
6018
|
+
"evaluations.tests.empty.noExecutions": "Help us to setup your evaluations by executing your workflow",
|
|
6019
|
+
"evaluations.tests.empty.execute": "Execute workflow",
|
|
6020
|
+
"evaluations.tests.empty.chooseTrigger": "Choose a trigger",
|
|
6021
|
+
"evaluations.tests.results.runLabel": "Run #{number}, {date}",
|
|
6022
|
+
"evaluations.tests.results.running": "Running…",
|
|
6023
|
+
"evaluations.tests.results.runFailed": "Run failed",
|
|
6024
|
+
"evaluations.tests.results.metric.promptTokens": "Prompt tokens",
|
|
6025
|
+
"evaluations.tests.results.metric.completionTokens": "Completion tokens",
|
|
6026
|
+
"evaluations.tests.results.metric.totalTokens": "Total tokens",
|
|
6027
|
+
"evaluations.tests.results.metric.executionTime": "Time",
|
|
6028
|
+
"evaluations.tests.chooseAiNode": "Choose an AI node to test",
|
|
6029
|
+
"evaluations.tests.chooseAiNode.placeholder": "Select a node",
|
|
6030
|
+
"evaluations.tests.chooseExecution": "Use a previous execution to create a test case",
|
|
6031
|
+
"evaluations.tests.createManually": "Create manually",
|
|
6032
|
+
"evaluations.tests.createManually.hint": "Or start from scratch",
|
|
6033
|
+
"evaluations.tests.executions.createCase": "Use execution",
|
|
6034
|
+
"evaluations.tests.executions.manualBadge": "Manual execution",
|
|
6035
|
+
"evaluations.tests.executions.input": "Input",
|
|
6036
|
+
"evaluations.tests.executions.output": "Output",
|
|
6037
|
+
"evaluations.tests.executions.empty": "No successful executions yet. Run your workflow to create a test case.",
|
|
6038
|
+
"evaluations.tests.seedFromExecution.error": "Couldn't load that execution. Please try another.",
|
|
6039
|
+
"evaluations.tests.detail.delete": "Delete case",
|
|
6040
|
+
"evaluations.tests.detail.delete.confirm.title": "Delete test case?",
|
|
6041
|
+
"evaluations.tests.detail.delete.confirm.message": "This test case will be permanently removed from the dataset. This can't be undone.",
|
|
6042
|
+
"evaluations.tests.detail.title": "Test case",
|
|
6043
|
+
"evaluations.tests.detail.system.heading": "System under test",
|
|
6044
|
+
"evaluations.tests.detail.metrics.heading": "Checks",
|
|
6045
|
+
"evaluations.tests.detail.expected.heading": "Expected output",
|
|
6046
|
+
"evaluations.tests.detail.run": "Run",
|
|
6047
|
+
"evaluations.tests.detail.runAgain": "Run again",
|
|
6048
|
+
"evaluations.tests.detail.when": "When",
|
|
6049
|
+
"evaluations.tests.detail.receivesInput": "receives input",
|
|
6050
|
+
"evaluations.tests.detail.output": "Output",
|
|
6051
|
+
"evaluations.tests.detail.addMetric": "Add check",
|
|
6052
|
+
"evaluations.tests.detail.addMetric.custom": "Custom",
|
|
6053
|
+
"evaluations.tests.detail.removeMetric": "Remove metric",
|
|
6054
|
+
"evaluations.tests.detail.tools.empty": "No tools are connected to this node.",
|
|
6055
|
+
"evaluations.tests.metric.correctness.option": "To be similar",
|
|
6056
|
+
"evaluations.tests.metric.stringSimilarity.option": "To be exactly",
|
|
6057
|
+
"evaluations.tests.metric.toolsUsed.option": "To use specific tools",
|
|
6058
|
+
"evaluations.tests.metric.correctness.sentence": "Response to be similar to (0-5):",
|
|
6059
|
+
"evaluations.tests.metric.helpfulness.sentence": "Response to be helpful (0-5)",
|
|
6060
|
+
"evaluations.tests.metric.stringSimilarity.sentence": "Response to be exactly:",
|
|
6061
|
+
"evaluations.tests.metric.categorization.sentence": "Response to match category:",
|
|
6062
|
+
"evaluations.tests.metric.toolsUsed.sentence": "To use specific tools:",
|
|
6063
|
+
"evaluations.tests.metric.custom.sentence": "Custom (expression based):",
|
|
6064
|
+
"evaluations.tests.metric.custom.placeholder": "$json.response.length > 1000",
|
|
6065
|
+
"evaluations.tests.metrics.label": "Checks",
|
|
6066
|
+
"evaluations.tests.metrics.none": "None selected",
|
|
6067
|
+
"evaluations.tests.metrics.selected": "{count} selected",
|
|
5889
6068
|
"freeAi.credits.callout.claim.title": "Get {credits} free OpenAI API credits",
|
|
5890
6069
|
"freeAi.credits.callout.claim.button.label": "Claim credits",
|
|
5891
6070
|
"freeAi.credits.callout.success.title.part1": "Claimed {credits} free OpenAI API credits! Please note these free credits are only for the following models:",
|
|
@@ -5918,6 +6097,7 @@ var en_default = {
|
|
|
5918
6097
|
"insights.dashboard.table.projectName": "Project name",
|
|
5919
6098
|
"insights.dashboard.table.title": "Breakdown by workflow",
|
|
5920
6099
|
"insights.dashboard.table.estimate": "Estimate",
|
|
6100
|
+
"insights.dashboard.table.noAccess": "You don't have access to this workflow",
|
|
5921
6101
|
"insights.dashboard.title": "Insights",
|
|
5922
6102
|
"insights.dashboard.search.placeholder": "All projects",
|
|
5923
6103
|
"insights.dashboard.dataRangeAlert.title": "Your selected range goes back further than your data",
|
|
@@ -6095,7 +6275,6 @@ var en_default = {
|
|
|
6095
6275
|
"instanceAi.input.placeholder": "Ask anything...",
|
|
6096
6276
|
"instanceAi.input.suspendedPlaceholder": "Complete or skip the setup above to continue",
|
|
6097
6277
|
"instanceAi.input.workflowBuilderUnavailablePlaceholder": "Workflow builder unavailable",
|
|
6098
|
-
"instanceAi.statusBar.waitingForInput": "Waiting for your input",
|
|
6099
6278
|
"instanceAi.input.send": "Send",
|
|
6100
6279
|
"instanceAi.input.stop": "Stop",
|
|
6101
6280
|
"instanceAi.launch.template.message": "I want to start from the workflow template '{name}' (template id: {id}). Load it and give me a short, plain summary: what triggers it, what it does, and which apps it uses. Keep it to a few sentences. Then ask me a few questions specific to this template's steps and apps so I can adapt it, like which of its apps to swap, what to connect, or what behavior to change. Make each question quick to answer: give me numbered choices or ask for a short reply. Don't build anything until I answer.",
|
|
@@ -6189,6 +6368,14 @@ var en_default = {
|
|
|
6189
6368
|
"instanceAi.artifactsPanel.project": "Project",
|
|
6190
6369
|
"instanceAi.artifactsPanel.unknownProject": "Unknown project",
|
|
6191
6370
|
"instanceAi.artifactsPanel.personalSpace": "Personal space",
|
|
6371
|
+
"instanceAi.artifactsPanel.context.title": "Context",
|
|
6372
|
+
"instanceAi.artifactsPanel.context.dismiss": "Dismiss",
|
|
6373
|
+
"instanceAi.artifactsPanel.context.addedToContext": "Preview session",
|
|
6374
|
+
"instanceAi.artifactsPanel.context.credentialModal": "Credential setup",
|
|
6375
|
+
"instanceAi.artifactsPanel.context.agentPreview": "Preview session",
|
|
6376
|
+
"instanceAi.artifactsPanel.context.agentPreviewNamed": "{name} session",
|
|
6377
|
+
"instanceAi.artifactsPanel.context.agentPreviewTitled": "{agentName} — {sessionTitle}",
|
|
6378
|
+
"instanceAi.artifactsPanel.context.agentPreviewSessionTitled": "{sessionTitle}",
|
|
6192
6379
|
"instanceAi.projectSelect.tooltip": "Where AI assistant creates automations",
|
|
6193
6380
|
"instanceAi.projectSelect.placeholder": "Select a project",
|
|
6194
6381
|
"instanceAi.projectSelect.search": "Search projects",
|
|
@@ -6254,6 +6441,7 @@ var en_default = {
|
|
|
6254
6441
|
"instanceAi.workflowSetup.triggerError": "Trigger test failed",
|
|
6255
6442
|
"instanceAi.workflowSetup.triggerListening": "Listening for events…",
|
|
6256
6443
|
"instanceAi.workflowSetup.apply": "Apply",
|
|
6444
|
+
"instanceAi.workflowSetup.configureNode": "Configure '{name}'",
|
|
6257
6445
|
"instanceAi.workflowSetup.credentialTestFailedTooltip": "Credential test failed. Update the credential and try again.",
|
|
6258
6446
|
"instanceAi.workflowSetup.stepIncompleteTooltip": "To continue, complete the required fields above or skip setup for now",
|
|
6259
6447
|
"instanceAi.workflowSetup.applyCompleted": "Apply completed",
|
|
@@ -6677,11 +6865,11 @@ var en_default = {
|
|
|
6677
6865
|
"instanceAi.stepTimeline.hideBrief": "Hide brief",
|
|
6678
6866
|
"instanceAi.stepTimeline.done": "Done",
|
|
6679
6867
|
"instanceAi.stepTimeline.craftingWorkflow": "Crafting workflow",
|
|
6680
|
-
"instanceAi.activitySummary.reasoning": "Reasoning",
|
|
6681
6868
|
"instanceAi.activitySummary.toolCalls": "{count} tool calls",
|
|
6682
|
-
"instanceAi.
|
|
6683
|
-
"instanceAi.
|
|
6684
|
-
"instanceAi.
|
|
6869
|
+
"instanceAi.thinking.active": "Thinking",
|
|
6870
|
+
"instanceAi.thinking.done": "Thought for {duration}",
|
|
6871
|
+
"instanceAi.thinking.doneFallback": "Finished thinking",
|
|
6872
|
+
"instanceAi.thinking.waitingForInput": "Waiting for your input",
|
|
6685
6873
|
"projects.menu.instanceAi": "AI Assistant",
|
|
6686
6874
|
"chatInputBase.button.attach": "Attach files",
|
|
6687
6875
|
"chatInputBase.button.dictate": "Dictate",
|
|
@@ -6718,40 +6906,30 @@ var en_default = {
|
|
|
6718
6906
|
"agents.delete.modal.button.delete": "Delete",
|
|
6719
6907
|
"agents.builder.loadError": "Could not load agent",
|
|
6720
6908
|
"agents.builder.saveError": "Could not save agent settings",
|
|
6721
|
-
"agents.builder.chatColumn.ariaLabel": "Chat",
|
|
6722
|
-
"agents.builder.chatMode.build": "Build",
|
|
6723
|
-
"agents.builder.chatMode.test": "Test",
|
|
6724
|
-
"agents.builder.chatMode.ariaLabel": "Switch between builder and agent chat",
|
|
6725
|
-
"agents.builder.chatMode.test.lockedTooltip": "Finish building your agent to chat to it",
|
|
6726
6909
|
"agents.builder.chat.sessionPicker.ariaLabel": "Session history",
|
|
6727
6910
|
"agents.builder.chat.sessionPicker.empty": "No previous chats",
|
|
6728
6911
|
"agents.builder.chat.newChat.ariaLabel": "Start a new chat",
|
|
6729
6912
|
"agents.builder.chat.newChat.label": "New chat",
|
|
6730
|
-
"agents.builder.chat.hide.ariaLabel": "Hide builder",
|
|
6731
|
-
"agents.builder.chat.show.ariaLabel": "Show builder",
|
|
6732
|
-
"agents.builder.chat.fullWidth.expand.ariaLabel": "Expand",
|
|
6733
|
-
"agents.builder.chat.fullWidth.collapse.ariaLabel": "Collapse",
|
|
6734
6913
|
"agents.chat.loadHistory.error": "Could not load chat history",
|
|
6735
6914
|
"agents.chat.clearHistory.error": "Could not clear chat history",
|
|
6736
6915
|
"agents.chat.clearHistory": "Clear chat history",
|
|
6737
6916
|
"agents.chat.input.placeholder": "Type a message...",
|
|
6917
|
+
"agents.preview.episodicMemoryCallout.text": "Access memories from previous conversations.",
|
|
6918
|
+
"agents.preview.episodicMemoryCallout.action": "Enable",
|
|
6738
6919
|
"agents.chat.answerQuestionPlaceholder": "Answer the question above to continue",
|
|
6739
6920
|
"agents.chat.misconfigured.title": "This agent isn't ready to run yet",
|
|
6740
|
-
"agents.chat.misconfigured.
|
|
6921
|
+
"agents.chat.misconfigured.issuesPrefix": "Check:",
|
|
6741
6922
|
"agents.chat.misconfigured.missing.instructions": "Instructions",
|
|
6742
6923
|
"agents.chat.misconfigured.missing.model": "Model",
|
|
6743
6924
|
"agents.chat.misconfigured.missing.credential": "Credential",
|
|
6744
|
-
"agents.chat.misconfigured.missing.episodicMemory.credential": "Episodic Memory credential",
|
|
6745
|
-
"agents.chat.misconfigured.missing.webSearch.credential": "Web search credential",
|
|
6746
6925
|
"agents.chat.misconfigured.missing.agent": "Agent",
|
|
6747
6926
|
"agents.chat.misconfigured.missing.skill": "Skill ({id})",
|
|
6748
|
-
"agents.chat.misconfigured.
|
|
6927
|
+
"agents.chat.misconfigured.missing.tools": "Tool configuration",
|
|
6928
|
+
"agents.chat.misconfigured.missing.mcpServers": "MCP server",
|
|
6929
|
+
"agents.chat.misconfigured.missing.subAgents.agents": "Sub-agent",
|
|
6749
6930
|
"agents.chat.misconfigured.dismiss": "Dismiss",
|
|
6750
|
-
"agents.chat.
|
|
6751
|
-
"agents.chat.
|
|
6752
|
-
"agents.chat.askQuestions.skipped": "Skipped",
|
|
6753
|
-
"agents.chat.configureChannel.skipped": "Skipped",
|
|
6754
|
-
"agents.chat.askCredential.managed": "Managed by n8n",
|
|
6931
|
+
"agents.chat.emptyState.title": "Chat with your agent",
|
|
6932
|
+
"agents.chat.emptyState.description": "Send a message to start a conversation",
|
|
6755
6933
|
"agents.chat.toolNames.webSearch": "Web search",
|
|
6756
6934
|
"agents.chat.toolNames.findFile": "Find file",
|
|
6757
6935
|
"agents.chat.toolNames.searchText": "Search text",
|
|
@@ -6799,6 +6977,7 @@ var en_default = {
|
|
|
6799
6977
|
"agents.list.readonly": "Read only",
|
|
6800
6978
|
"agents.publish.button.publish": "Publish",
|
|
6801
6979
|
"agents.publish.button.published": "Published",
|
|
6980
|
+
"agents.publish.button.invalidConfigTooltip": "This agent's configuration has errors. Resolve them before publishing.",
|
|
6802
6981
|
"agents.publish.dropdown.publish": "Publish",
|
|
6803
6982
|
"agents.publish.dropdown.revertToPublished": "Revert changes",
|
|
6804
6983
|
"agents.publish.dropdown.unpublish": "Unpublish",
|
|
@@ -6875,14 +7054,7 @@ var en_default = {
|
|
|
6875
7054
|
"agents.toolConfig.mcpApproval.refresh.hint": "Refresh the list of tools from this MCP server.",
|
|
6876
7055
|
"agents.toolConfig.mcpApproval.tools.placeholder": "Select tools",
|
|
6877
7056
|
"agents.toolConfig.mcpApproval.loadError": "Could not load MCP tools. Check the server settings and try again.",
|
|
6878
|
-
"agents.new.title": "New agent",
|
|
6879
7057
|
"agents.new.defaultName": "New Agent",
|
|
6880
|
-
"agents.new.startBlank": "Start from blank",
|
|
6881
|
-
"agents.new.heading": "What should we build?",
|
|
6882
|
-
"agents.new.headingWithName": "What should we build, {name}?",
|
|
6883
|
-
"agents.new.description.placeholder": "Describe your agent...",
|
|
6884
|
-
"agents.new.templates.label": "Or try a template",
|
|
6885
|
-
"agents.builder.readonly.placeholder": "You don't have permission to edit this agent",
|
|
6886
7058
|
"agents.builder.sections.agent": "Agent",
|
|
6887
7059
|
"agents.builder.sections.advanced": "Advanced",
|
|
6888
7060
|
"agents.builder.sections.configJson": "Raw",
|
|
@@ -6937,11 +7109,13 @@ var en_default = {
|
|
|
6937
7109
|
"agents.builder.advanced.recentMessages.memoryDisabledTooltip": "Enable Session Memory in the Memory section to configure the window.",
|
|
6938
7110
|
"agents.builder.advanced.maxIterations.label": "Max iterations",
|
|
6939
7111
|
"agents.builder.advanced.maxIterations.hint": "Maximum number of agent loop iterations per run (1–200).",
|
|
6940
|
-
"agents.builder.memory.title": "
|
|
6941
|
-
"agents.builder.memory.description": "
|
|
7112
|
+
"agents.builder.memory.title": "Memory",
|
|
7113
|
+
"agents.builder.memory.description": "Session memory is on by default",
|
|
7114
|
+
"agents.builder.memory.settings.title": "Memory settings",
|
|
6942
7115
|
"agents.builder.memory.episodicMemory.label": "Episodic Memory",
|
|
6943
7116
|
"agents.builder.memory.episodicMemory.hint": "Stores source-backed memories from previous conversations. Requires OpenAI credential.",
|
|
6944
|
-
"agents.builder.memory.episodicMemory.
|
|
7117
|
+
"agents.builder.memory.episodicMemory.credential.label": "OpenAI credential",
|
|
7118
|
+
"agents.builder.memory.episodicMemory.credential.hint": "Used to create embeddings for episodic memory.",
|
|
6945
7119
|
"agents.builder.files.title": "Knowledge base",
|
|
6946
7120
|
"agents.builder.files.titleTooltip": "Files uploaded to this agent. n8n stores them so the agent can search their contents and read them when answering.",
|
|
6947
7121
|
"agents.builder.files.description": "Add CSV, PDF, Markdown, or TXT files this agent can search and read. Upload up to {maxFiles} files at a time, {maxSizeMb} MB each. Knowledge base size is limited to {maxTotalGb} GB.",
|
|
@@ -7015,11 +7189,11 @@ var en_default = {
|
|
|
7015
7189
|
"agents.builder.vectorStores.useWhen.label": "When should this agent search this store?",
|
|
7016
7190
|
"agents.builder.vectorStores.useWhen.hint": "Tell the agent when to search this vector store.",
|
|
7017
7191
|
"agents.builder.vectorStores.useWhen.placeholder": "Search for product documentation when the user asks about features, setup, or troubleshooting.",
|
|
7018
|
-
"agents.builder.subAgents.title": "
|
|
7192
|
+
"agents.builder.subAgents.title": "Sub-agents",
|
|
7019
7193
|
"agents.builder.subAgents.description": "This agent can delegate focused subtasks. Add published agents from this project when you want reusable specialists.",
|
|
7020
7194
|
"agents.builder.subAgents.settings.title": "Sub-agent settings",
|
|
7021
7195
|
"agents.builder.subAgents.settings.description": "Configure delegation limits and inline sub-agent model choices.",
|
|
7022
|
-
"agents.builder.subAgents.add": "Add agent",
|
|
7196
|
+
"agents.builder.subAgents.add": "Add sub-agent",
|
|
7023
7197
|
"agents.builder.subAgents.loadError": "Could not load project agents",
|
|
7024
7198
|
"agents.builder.subAgents.remove": "Remove {name}",
|
|
7025
7199
|
"agents.builder.subAgents.useWhen.label": "When should this agent be used?",
|
|
@@ -7053,14 +7227,8 @@ var en_default = {
|
|
|
7053
7227
|
"agents.builder.subAgents.modal.remove": "Remove sub agent",
|
|
7054
7228
|
"agents.builder.memory.recallModel.label": "Memory model",
|
|
7055
7229
|
"agents.builder.memory.recallModel.hint": "Choose the model that creates, reviews, and retrieves memories. Uses the agent model by default.",
|
|
7056
|
-
"agents.builder.episodicMemoryCredentialModal.title": "Episodic Memory",
|
|
7057
|
-
"agents.builder.episodicMemoryCredentialModal.description": "An OpenAI credential is used to create embeddings for Episodic Memory.",
|
|
7058
7230
|
"agents.builder.editor.copy": "Copy to clipboard",
|
|
7059
7231
|
"agents.builder.editor.copied": "Copied",
|
|
7060
|
-
"agents.builder.progress.building.title": "Building your agent...",
|
|
7061
|
-
"agents.builder.progress.building.hint": "This usually takes 30–60 seconds. Sit tight.",
|
|
7062
|
-
"agents.builder.progress.error.title": "Something went wrong",
|
|
7063
|
-
"agents.builder.progress.error.hint": "Check the log below and try again.",
|
|
7064
7232
|
"agents.builder.tools.title": "Tools",
|
|
7065
7233
|
"agents.builder.tools.count": "{count} tool configured | {count} tools configured",
|
|
7066
7234
|
"agents.builder.tools.add": "Add tool",
|
|
@@ -7086,7 +7254,7 @@ var en_default = {
|
|
|
7086
7254
|
"agents.builder.skills.allowedTools.addModal.empty": "Attach tools to this agent before adding allowed tools.",
|
|
7087
7255
|
"agents.builder.skills.allowedTools.addModal.allSelected": "All attached tools are already allowed.",
|
|
7088
7256
|
"agents.builder.skills.instructions.label": "Instructions",
|
|
7089
|
-
"agents.builder.skills.instructions.
|
|
7257
|
+
"agents.builder.skills.instructions.byteCount": "{count} / {max} bytes",
|
|
7090
7258
|
"agents.builder.skills.filesNav.label": "Skill files",
|
|
7091
7259
|
"agents.builder.skills.import.skillFile": "Upload SKILL.md",
|
|
7092
7260
|
"agents.builder.skills.import.folder": "Upload folder",
|
|
@@ -7127,36 +7295,39 @@ var en_default = {
|
|
|
7127
7295
|
"agents.builder.skills.create.error": "Could not create skill",
|
|
7128
7296
|
"agents.builder.skills.added": "Skill added",
|
|
7129
7297
|
"agents.builder.skills.saveError": "Could not save skill",
|
|
7298
|
+
"agents.builder.skills.duplicateName.error": "Agent already has a skill named \"{name}\"",
|
|
7130
7299
|
"agents.builder.skills.validation.nameRequired": "Enter a name.",
|
|
7131
7300
|
"agents.builder.skills.validation.nameMaxLength": "Name must be 128 characters or fewer.",
|
|
7301
|
+
"agents.builder.skills.validation.nameDuplicate": "Agent already has a skill with this name.",
|
|
7132
7302
|
"agents.builder.skills.validation.descriptionRequired": "Enter a description.",
|
|
7133
7303
|
"agents.builder.skills.validation.descriptionMaxLength": "Description must be 512 characters or fewer.",
|
|
7134
7304
|
"agents.builder.skills.validation.instructionsRequired": "Enter instructions.",
|
|
7135
|
-
"agents.builder.skills.validation.instructionsMaxLength": "Instructions must be {max}
|
|
7305
|
+
"agents.builder.skills.validation.instructionsMaxLength": "Instructions must be {max} bytes or fewer.",
|
|
7306
|
+
"agents.builder.skills.missingContent.callout": "This skill's content is missing. Fill it in and save to recreate it.",
|
|
7136
7307
|
"agents.builder.skills.remove": "Remove skill",
|
|
7137
7308
|
"agents.builder.skills.back": "Back to skills",
|
|
7138
|
-
"agents.builder.tasks.title": "
|
|
7139
|
-
"agents.builder.tasks.description": "
|
|
7140
|
-
"agents.builder.tasks.add": "Add
|
|
7141
|
-
"agents.builder.tasks.empty": "No
|
|
7142
|
-
"agents.builder.tasks.publishHint": "Enabled
|
|
7309
|
+
"agents.builder.tasks.title": "Schedules",
|
|
7310
|
+
"agents.builder.tasks.description": "Objectives the agent runs on a schedule once it's published.",
|
|
7311
|
+
"agents.builder.tasks.add": "Add schedule",
|
|
7312
|
+
"agents.builder.tasks.empty": "No schedules yet.",
|
|
7313
|
+
"agents.builder.tasks.publishHint": "Enabled schedules start running once you publish the agent.",
|
|
7143
7314
|
"agents.builder.tasks.republishHint": "Changes take effect the next time you publish the agent.",
|
|
7144
7315
|
"agents.builder.tasks.pendingPublish": "Pending publish",
|
|
7145
7316
|
"agents.builder.tasks.nextRun": "Next run {time}",
|
|
7146
7317
|
"agents.builder.tasks.lastRun": "Last run {time}",
|
|
7147
7318
|
"agents.builder.tasks.neverRun": "Not run yet",
|
|
7148
7319
|
"agents.builder.tasks.enabled": "Enabled",
|
|
7149
|
-
"agents.builder.tasks.status.title": "
|
|
7320
|
+
"agents.builder.tasks.status.title": "Schedule status",
|
|
7150
7321
|
"agents.builder.tasks.status.success": "Success",
|
|
7151
7322
|
"agents.builder.tasks.status.error": "Failed",
|
|
7152
|
-
"agents.builder.tasks.delete": "Delete
|
|
7153
|
-
"agents.builder.tasks.deleteConfirm.title": "Delete
|
|
7154
|
-
"agents.builder.tasks.deleteConfirm.description": "This
|
|
7323
|
+
"agents.builder.tasks.delete": "Delete schedule",
|
|
7324
|
+
"agents.builder.tasks.deleteConfirm.title": "Delete schedule?",
|
|
7325
|
+
"agents.builder.tasks.deleteConfirm.description": "This schedule will stop running and be removed. This can't be undone.",
|
|
7155
7326
|
"agents.builder.tasks.deleteConfirm.confirm": "Delete",
|
|
7156
|
-
"agents.builder.tasks.loadError": "Could not load
|
|
7157
|
-
"agents.builder.tasks.deleteError": "Could not delete
|
|
7158
|
-
"agents.builder.tasks.create.title": "Add
|
|
7159
|
-
"agents.builder.tasks.edit.title": "Edit
|
|
7327
|
+
"agents.builder.tasks.loadError": "Could not load schedules",
|
|
7328
|
+
"agents.builder.tasks.deleteError": "Could not delete schedule",
|
|
7329
|
+
"agents.builder.tasks.create.title": "Add schedule",
|
|
7330
|
+
"agents.builder.tasks.edit.title": "Edit schedule",
|
|
7160
7331
|
"agents.builder.tasks.name.label": "Name",
|
|
7161
7332
|
"agents.builder.tasks.name.placeholder": "Daily Slack summary",
|
|
7162
7333
|
"agents.builder.tasks.objective.label": "Objective",
|
|
@@ -7174,16 +7345,17 @@ var en_default = {
|
|
|
7174
7345
|
"agents.builder.tasks.schedule.cron.placeholder": "0 9 * * *",
|
|
7175
7346
|
"agents.builder.tasks.schedule.nextOccurrence": "Next run {occurrence}",
|
|
7176
7347
|
"agents.builder.tasks.cancel": "Cancel",
|
|
7177
|
-
"agents.builder.tasks.save": "Save
|
|
7178
|
-
"agents.builder.tasks.saveError": "Could not save
|
|
7179
|
-
"agents.builder.tasks.execute": "
|
|
7180
|
-
"agents.builder.tasks.executeStarted": "
|
|
7181
|
-
"agents.builder.tasks.executeError": "Could not start the
|
|
7348
|
+
"agents.builder.tasks.save": "Save schedule",
|
|
7349
|
+
"agents.builder.tasks.saveError": "Could not save schedule",
|
|
7350
|
+
"agents.builder.tasks.execute": "Run schedule",
|
|
7351
|
+
"agents.builder.tasks.executeStarted": "Schedule started",
|
|
7352
|
+
"agents.builder.tasks.executeError": "Could not start the schedule",
|
|
7182
7353
|
"agents.builder.tasks.validation.nameRequired": "Enter a name.",
|
|
7183
7354
|
"agents.builder.tasks.validation.nameMaxLength": "Name must be {max} characters or fewer.",
|
|
7184
7355
|
"agents.builder.tasks.validation.objectiveRequired": "Enter an objective.",
|
|
7185
7356
|
"agents.builder.tasks.validation.objectiveMaxLength": "Objective must be {max} characters or fewer.",
|
|
7186
7357
|
"agents.builder.tasks.validation.cronRequired": "Enter a schedule.",
|
|
7358
|
+
"agents.builder.tasks.validation.cronInvalid": "This isn't a valid cron expression",
|
|
7187
7359
|
"agents.builder.editor.invalidJson": "Invalid JSON",
|
|
7188
7360
|
"agents.builder.editorColumn.ariaLabel": "Configuration editor",
|
|
7189
7361
|
"agents.builder.tree.ariaLabel": "Config sections",
|
|
@@ -7207,7 +7379,23 @@ var en_default = {
|
|
|
7207
7379
|
"agents.builder.header.saving": "Saving…",
|
|
7208
7380
|
"agents.builder.header.saved": "Saved",
|
|
7209
7381
|
"agents.builder.preview.button": "Preview",
|
|
7210
|
-
"agents.builder.preview.disabledTooltip": "
|
|
7382
|
+
"agents.builder.preview.disabledTooltip": "This agent's configuration has errors. Resolve them before previewing.",
|
|
7383
|
+
"agents.builder.validation.issue.missingRequired": "A required field is missing",
|
|
7384
|
+
"agents.builder.validation.issue.invalidValue": "A field has an invalid value",
|
|
7385
|
+
"agents.builder.validation.issue.missingCredential": "Credential is missing",
|
|
7386
|
+
"agents.builder.validation.issue.invalidCredential": "Credential isn't valid or isn't accessible",
|
|
7387
|
+
"agents.builder.validation.issue.incompatibleCredential": "Credential type doesn't match",
|
|
7388
|
+
"agents.builder.validation.issue.missingReference": "A referenced item can't be found",
|
|
7389
|
+
"agents.builder.validation.issue.incompatibleReference": "A referenced item isn't compatible",
|
|
7390
|
+
"agents.builder.validation.issue.subAgent.missingReference": "This agent no longer exists in this project",
|
|
7391
|
+
"agents.builder.validation.issue.subAgent.incompatibleReference": "This agent isn't published yet. Publish it before using it as a sub-agent.",
|
|
7392
|
+
"agents.builder.validation.issue.skill.missingReference": "This skill's content is missing. Open it to recreate it.",
|
|
7393
|
+
"agents.builder.validation.issue.task.invalidValue": "The schedule isn't a valid cron expression",
|
|
7394
|
+
"agents.builder.validation.issue.tool.workflow.missingReference": "Workflow \"{id}\" can't be found in this project",
|
|
7395
|
+
"agents.builder.validation.issue.tool.workflow.incompatibleReference": "Workflow \"{id}\" can't be used as an agent tool",
|
|
7396
|
+
"agents.builder.validation.issue.tool.custom.missingReference": "This tool's code is missing",
|
|
7397
|
+
"agents.builder.validation.issue.tool.node.missingReference": "This node type isn't available on this instance",
|
|
7398
|
+
"agents.builder.validation.issue.mcpServer.incompatibleCredential": "The credential type doesn't match the server's authentication method",
|
|
7211
7399
|
"agents.builder.preview.viewSession": "View session",
|
|
7212
7400
|
"agents.builder.preview.close.ariaLabel": "Close preview",
|
|
7213
7401
|
"agents.builder.executions.count": "{count} session | {count} sessions",
|
|
@@ -7219,8 +7407,6 @@ var en_default = {
|
|
|
7219
7407
|
"agents.builder.evaluations.type.judge": "Judge",
|
|
7220
7408
|
"agents.builder.evaluations.credentialConfigured": "Credential configured",
|
|
7221
7409
|
"agents.builder.evaluations.emptyPrefix": "No evaluations configured.",
|
|
7222
|
-
"agents.builder.quickActions.addTool": "Add tool",
|
|
7223
|
-
"agents.builder.quickActions.addTrigger": "Add channel",
|
|
7224
7410
|
"agents.builder.quickActions.memoriesUsed.count": "{count} memory | {count} memories",
|
|
7225
7411
|
"agents.builder.quickActions.memoriesUsed.keyMemory": "Memory",
|
|
7226
7412
|
"agents.builder.capabilities.title": "Capabilities",
|