@n8n/i18n 1.17.0 → 1.18.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/dist/index.cjs +77 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +75 -3
- package/dist/index.d.ts +75 -3
- package/dist/index.js +77 -5
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +77 -5
- package/dist/types.d.ts +77 -5
- package/package.json +2 -2
package/dist/types.d.cts
CHANGED
|
@@ -95,12 +95,14 @@ var englishBaseText = {
|
|
|
95
95
|
"generic.startNow": "Start now",
|
|
96
96
|
"generic.dismiss": "Dismiss",
|
|
97
97
|
"generic.saving": "Saving",
|
|
98
|
+
"generic.name": "Name",
|
|
98
99
|
"generic.unsavedWork.confirmMessage.headline": "Save changes before leaving?",
|
|
99
100
|
"generic.unsavedWork.confirmMessage.message": "If you don't save, you will lose your changes.",
|
|
100
101
|
"generic.unsavedWork.confirmMessage.confirmButtonText": "Save",
|
|
101
102
|
"generic.unsavedWork.confirmMessage.cancelButtonText": "Leave without saving",
|
|
102
103
|
"generic.upgrade": "Upgrade",
|
|
103
104
|
"generic.upgradeNow": "Upgrade now",
|
|
105
|
+
"generic.update": "Update",
|
|
104
106
|
"generic.credential": "Credential | {count} Credential | {count} Credentials",
|
|
105
107
|
"generic.credentials": "Credentials",
|
|
106
108
|
"generic.workflow": "Workflow | {count} Workflow | {count} Workflows",
|
|
@@ -126,6 +128,9 @@ var englishBaseText = {
|
|
|
126
128
|
"generic.never": "Never",
|
|
127
129
|
"generic.list.clearSelection": "Clear selection",
|
|
128
130
|
"generic.list.selected": "{count} row selected | {count} rows selected",
|
|
131
|
+
"generic.project": "Project",
|
|
132
|
+
"generic.your": "Your",
|
|
133
|
+
"generic.apiKey": "API Key",
|
|
129
134
|
"about.aboutN8n": "About n8n",
|
|
130
135
|
"about.close": "Close",
|
|
131
136
|
"about.license": "License",
|
|
@@ -202,13 +207,14 @@ var englishBaseText = {
|
|
|
202
207
|
"aiAssistant.tabs.build": "Build",
|
|
203
208
|
"aiAssistant.builder.mode": "AI Builder",
|
|
204
209
|
"aiAssistant.builder.placeholder": "Ask n8n to build...",
|
|
210
|
+
"aiAssistant.builder.assistantPlaceholder": "What would you like to modify or add?",
|
|
211
|
+
"aiAssistant.builder.characterLimit": "You've reached the { limit } character limit",
|
|
205
212
|
"aiAssistant.builder.generateNew": "Generate new workflow",
|
|
206
213
|
"aiAssistant.builder.newWorkflowNotice": "The created workflow will be added to the editor",
|
|
207
214
|
"aiAssistant.builder.feedbackPrompt": "Is this workflow helpful?",
|
|
208
215
|
"aiAssistant.builder.invalidPrompt": "Prompt validation failed. Please try again with a clearer description of your workflow requirements and supported integrations.",
|
|
209
216
|
"aiAssistant.builder.workflowParsingError.title": "Unable to insert workflow",
|
|
210
217
|
"aiAssistant.builder.workflowParsingError.content": "The workflow returned by AI could not be parsed. Please try again.",
|
|
211
|
-
"aiAssistant.builder.canvasPrompt.buildWorkflow": "Create workflow",
|
|
212
218
|
"aiAssistant.builder.canvasPrompt.title": "What would you like to automate?",
|
|
213
219
|
"aiAssistant.builder.canvasPrompt.confirmTitle": "Replace current prompt?",
|
|
214
220
|
"aiAssistant.builder.canvasPrompt.confirmMessage": "This will replace your current prompt. Are you sure?",
|
|
@@ -217,6 +223,16 @@ var englishBaseText = {
|
|
|
217
223
|
"aiAssistant.builder.canvasPrompt.startManually.title": "Start manually",
|
|
218
224
|
"aiAssistant.builder.canvasPrompt.startManually.subTitle": "Add the first node",
|
|
219
225
|
"aiAssistant.builder.streamAbortedMessage": "[Task aborted]",
|
|
226
|
+
"aiAssistant.builder.executeMessage.description": "Complete these steps before executing your workflow:",
|
|
227
|
+
"aiAssistant.builder.executeMessage.noIssues": "Your workflow is ready to be executed",
|
|
228
|
+
"aiAssistant.builder.executeMessage.validationTooltip": "Complete the steps above before executing",
|
|
229
|
+
"aiAssistant.builder.executeMessage.execute": "Execute and refine",
|
|
230
|
+
"aiAssistant.builder.executeMessage.noExecutionData": "Workflow execution could not be started. Please try again.",
|
|
231
|
+
"aiAssistant.builder.executeMessage.executionSuccess": "Workflow executed successfully.",
|
|
232
|
+
"aiAssistant.builder.executeMessage.executionFailedOnNode": "Workflow execution failed on node \"{nodeName}\": {errorMessage}",
|
|
233
|
+
"aiAssistant.builder.executeMessage.executionFailed": "Workflow execution failed: {errorMessage}",
|
|
234
|
+
"aiAssistant.builder.toast.title": "Send chat message to start the execution",
|
|
235
|
+
"aiAssistant.builder.toast.description": "Please send a message in the chat panel to start the execution of your workflow",
|
|
220
236
|
"aiAssistant.assistant": "AI Assistant",
|
|
221
237
|
"aiAssistant.newSessionModal.title.part1": "Start new",
|
|
222
238
|
"aiAssistant.newSessionModal.title.part2": "session",
|
|
@@ -589,6 +605,9 @@ var englishBaseText = {
|
|
|
589
605
|
"codeNodeEditor.defaultsTo": "Defaults to {default}.",
|
|
590
606
|
"collectionParameter.choose": "Choose...",
|
|
591
607
|
"collectionParameter.noProperties": "No properties",
|
|
608
|
+
"communityNodeFooter.legacy": "Legacy",
|
|
609
|
+
"communityNodeFooter.manage": "Manage",
|
|
610
|
+
"communityNodeFooter.reportIssue": "Report issue",
|
|
592
611
|
"credentialEdit.credentialConfig.accountConnected": "Account connected",
|
|
593
612
|
"credentialEdit.credentialConfig.clickToCopy": "Click To Copy",
|
|
594
613
|
"credentialEdit.credentialConfig.connectionTestedSuccessfully": "Connection tested successfully",
|
|
@@ -751,6 +770,12 @@ var englishBaseText = {
|
|
|
751
770
|
"duplicateWorkflowDialog.errors.forbidden.message": "This action is forbidden. Do you have the correct permissions?",
|
|
752
771
|
"duplicateWorkflowDialog.errors.generic.title": "Duplicate workflow failed",
|
|
753
772
|
"editor.mainHeader.githubButton.label": "Star n8n-io/n8n on GitHub",
|
|
773
|
+
"experiments.personalizedTemplatesV3.browseAllTemplates": "Browse our template library",
|
|
774
|
+
"experiments.personalizedTemplatesV3.couldntFind": "Need something different?",
|
|
775
|
+
"experiments.personalizedTemplatesV3.exploreTemplates": "Get started with HubSpot workflows:",
|
|
776
|
+
"experiments.personalizedTemplatesV3.loadingTemplates": "Loading recommendations...",
|
|
777
|
+
"experiments.personalizedTemplatesV3.recommendationTooltip": "Speed up your automation with these workflows",
|
|
778
|
+
"experiments.personalizedTemplatesV3.recommendedForYou": "Recommended for you",
|
|
754
779
|
error: error,
|
|
755
780
|
"error.goBack": "Go back",
|
|
756
781
|
"error.pageNotFound": "Oops, couldn’t find that",
|
|
@@ -1939,8 +1964,6 @@ var englishBaseText = {
|
|
|
1939
1964
|
"runData.aiContentBlock.tokens": "{count} Tokens",
|
|
1940
1965
|
"runData.aiContentBlock.tokens.prompt": "Prompt:",
|
|
1941
1966
|
"runData.aiContentBlock.tokens.completion": "Completion:",
|
|
1942
|
-
"runData.trimmedData.title": "No data yet",
|
|
1943
|
-
"runData.trimmedData.message": "Data will be available here once the execution has finished.",
|
|
1944
1967
|
"runData.trimmedData.loading": "Loading data",
|
|
1945
1968
|
"runData.panel.actions.collapse": "Collapse panel",
|
|
1946
1969
|
"runData.panel.actions.open": "Open panel",
|
|
@@ -1998,6 +2021,22 @@ var englishBaseText = {
|
|
|
1998
2021
|
"settings.communityNodes.confirmModal.update.buttonLabel": "Confirm update",
|
|
1999
2022
|
"settings.communityNodes.confirmModal.update.buttonLoadingLabel": "Updating...",
|
|
2000
2023
|
"settings.communityNodes.confirmModal.cancel": "Cancel",
|
|
2024
|
+
"settings.mcp": "MCP Access",
|
|
2025
|
+
"settings.mcp.toggle.label": "Enable MCP",
|
|
2026
|
+
"settings.mcp.toggle.description": "Enable MCP access to this n8n instance",
|
|
2027
|
+
"settings.mcp.available.workflows.heading": "Available Workflows",
|
|
2028
|
+
"settings.mcp.connection.info.heading": "How to connect",
|
|
2029
|
+
"settings.mcp.workflows.table.action.removeMCPAccess": "Remove MCP Access",
|
|
2030
|
+
"settings.mcp.empty.title": "No workflows available for MCP",
|
|
2031
|
+
"settings.mcp.empty.description": "Enable MCP access in each workflow's settings to see them here.",
|
|
2032
|
+
"settings.mcp.toggle.disabled.tooltip": "Only the instance owner can change this",
|
|
2033
|
+
"settings.mcp.instructions.enableAccess": "Enable workflow access in at least one workflow via its settings",
|
|
2034
|
+
"settings.mcp.instructions.serverUrl": "Server URL",
|
|
2035
|
+
"settings.mcp.instructions.apiKey.part1": "Create an",
|
|
2036
|
+
"settings.mcp.instructions.apiKey.part2": "No scopes required, MCP uses your role for authorization",
|
|
2037
|
+
"settings.mcp.instructions.json": "Or use the following code in your 'mcp.json' file",
|
|
2038
|
+
"settings.mcp.instructions.docs.part1": "For more detailed instructions and examples, have a look at",
|
|
2039
|
+
"settings.mcp.instructions.docs.part2": "our docs",
|
|
2001
2040
|
"settings.goBack": "Go back",
|
|
2002
2041
|
"settings.personal": "Personal",
|
|
2003
2042
|
"settings.personal.basicInformation": "Basic Information",
|
|
@@ -2252,6 +2291,8 @@ var englishBaseText = {
|
|
|
2252
2291
|
"settings.sourceControl.description": "Use multiple instances for different environments (dev, prod, etc.), deploying between them via a Git repository. {link}",
|
|
2253
2292
|
"settings.sourceControl.description.link": "More info",
|
|
2254
2293
|
"settings.sourceControl.gitConfig": "Git configuration",
|
|
2294
|
+
"settings.sourceControl.connectionType": "Connection Type",
|
|
2295
|
+
"settings.sourceControl.enterValidHttpsUrl": "Please enter a valid HTTPS URL",
|
|
2255
2296
|
"settings.sourceControl.repoUrl": "Git repository URL (SSH)",
|
|
2256
2297
|
"settings.sourceControl.repoUrlPlaceholder": "e.g. git{'@'}github.com:my-team/my-repository",
|
|
2257
2298
|
"settings.sourceControl.repoUrlInvalid": "The Git repository URL is not valid",
|
|
@@ -2347,6 +2388,19 @@ var englishBaseText = {
|
|
|
2347
2388
|
"settings.sourceControl.docs.using.pushPull.url": "https://docs.n8n.io/source-control-environments/using/push-pull",
|
|
2348
2389
|
"settings.sourceControl.error.not.connected.title": "Environments have not been enabled",
|
|
2349
2390
|
"settings.sourceControl.error.not.connected.message": "Please head over to <a href='/settings/environments'>environment settings</a> to connect a git repository first to activate this functionality.",
|
|
2391
|
+
"settings.sourceControl.saved.error": "Error setting branch",
|
|
2392
|
+
"settings.sourceControl.sshRepoUrl": "SSH Repository URL",
|
|
2393
|
+
"settings.sourceControl.httpsRepoUrl": "HTTPS Repository URL",
|
|
2394
|
+
"settings.sourceControl.sshRepoUrlPlaceholder": "git{'@'}github.com:user/repository.git",
|
|
2395
|
+
"settings.sourceControl.httpsRepoUrlPlaceholder": "https://github.com/user/repository.git",
|
|
2396
|
+
"settings.sourceControl.sshFormatNotice": "Use SSH format: git{'@'}github.com:user/repository.git",
|
|
2397
|
+
"settings.sourceControl.httpsFormatNotice": "Use HTTPS format: https://github.com/user/repository.git",
|
|
2398
|
+
"settings.sourceControl.httpsUsername": "Username",
|
|
2399
|
+
"settings.sourceControl.httpsUsernamePlaceholder": "Enter your GitHub username",
|
|
2400
|
+
"settings.sourceControl.httpsPersonalAccessToken": "Personal Access Token",
|
|
2401
|
+
"settings.sourceControl.httpsPersonalAccessTokenPlaceholder": "Enter your Personal Access Token (PAT)",
|
|
2402
|
+
"settings.sourceControl.httpsWarningNotice": "{strong} To create one for GitHub: Go to Settings → Developer settings → Personal access tokens → Tokens (classic). Required scopes: {repo} for private repositories or {publicRepo} for public ones. Other providers are also supported.",
|
|
2403
|
+
"settings.sourceControl.httpsWarningNotice.strong": "Personal Access Token required:",
|
|
2350
2404
|
"showMessage.cancel": "@:_reusableBaseText.cancel",
|
|
2351
2405
|
"showMessage.ok": "OK",
|
|
2352
2406
|
"showMessage.showDetails": "Show Details",
|
|
@@ -2473,6 +2527,7 @@ var englishBaseText = {
|
|
|
2473
2527
|
"ndv.search.placeholder.output": "Search output",
|
|
2474
2528
|
"ndv.search.placeholder.input": "Search selected node",
|
|
2475
2529
|
"ndv.search.placeholder.input.schema": "Search previous nodes' fields",
|
|
2530
|
+
"ndv.search.placeholder.shortcutHint": "Search ({shortcut})",
|
|
2476
2531
|
"ndv.search.noMatch.title": "No matching items",
|
|
2477
2532
|
"ndv.search.noNodeMatch.title": "No matching fields",
|
|
2478
2533
|
"ndv.search.noMatch.description": "Try changing or {link} the filter to see more",
|
|
@@ -2641,6 +2696,10 @@ var englishBaseText = {
|
|
|
2641
2696
|
"workflowSettings.timeSavedPerExecution": "Estimated time saved",
|
|
2642
2697
|
"workflowSettings.timeSavedPerExecution.hint": "Minutes per production execution",
|
|
2643
2698
|
"workflowSettings.timeSavedPerExecution.tooltip": "Total time savings are summarised in the Overview page.",
|
|
2699
|
+
"workflowSettings.availableInMCP": "Available in MCP",
|
|
2700
|
+
"workflowSettings.availableInMCP.tooltip": "Make this workflow visible to AI Agents through n8n MCP",
|
|
2701
|
+
"workflowSettings.toggleMCP.error.title": "Error updating MCP settings",
|
|
2702
|
+
"workflowSettings.toggleMCP.notFoundError": "Workflow not found",
|
|
2644
2703
|
"workflowHistory.title": "Version History",
|
|
2645
2704
|
"workflowHistory.content.title": "Version",
|
|
2646
2705
|
"workflowHistory.content.editedBy": "Edited by",
|
|
@@ -2688,6 +2747,9 @@ var englishBaseText = {
|
|
|
2688
2747
|
"workflows.item.created": "Created",
|
|
2689
2748
|
"workflows.item.readonly": "Read only",
|
|
2690
2749
|
"workflows.item.archived": "Archived",
|
|
2750
|
+
"workflows.item.availableInMCP": "Available in MCP",
|
|
2751
|
+
"workflows.item.enableMCPAccess": "Enable MCP access",
|
|
2752
|
+
"workflows.item.disableMCPAccess": "Remove MCP access",
|
|
2691
2753
|
"workflows.itemSuggestion.try": "Try template",
|
|
2692
2754
|
"workflows.templateRecoV2.starterTemplates": "Starter templates",
|
|
2693
2755
|
"workflows.templateRecoV2.seeMoreStarterTemplates": "See more starter templates",
|
|
@@ -3027,6 +3089,11 @@ var englishBaseText = {
|
|
|
3027
3089
|
"settings.sso.settings.ips.url.invalid": "The Identity Provider Metadata URL is not valid",
|
|
3028
3090
|
"settings.sso.settings.ips.options.url": "Metadata URL",
|
|
3029
3091
|
"settings.sso.settings.ips.options.xml": "XML",
|
|
3092
|
+
"settings.sso.settings.oidc.prompt.none": "None (Silent authentication)",
|
|
3093
|
+
"settings.sso.settings.oidc.prompt.login": "Login (Force the user to log in)",
|
|
3094
|
+
"settings.sso.settings.oidc.prompt.consent": "Consent (Ask the user to consent)",
|
|
3095
|
+
"settings.sso.settings.oidc.prompt.select_account": "Select Account (Allow the user to select an account)",
|
|
3096
|
+
"settings.sso.settings.oidc.prompt.create": "Create (Ask the OP to show the registration page first)",
|
|
3030
3097
|
"settings.sso.settings.test": "Test settings",
|
|
3031
3098
|
"settings.sso.settings.save": "Save settings",
|
|
3032
3099
|
"settings.sso.settings.save.activate.title": "Test and activate SAML SSO",
|
|
@@ -3064,10 +3131,11 @@ var englishBaseText = {
|
|
|
3064
3131
|
"projects.menu.personal": "Personal",
|
|
3065
3132
|
"projects.menu.addFirstProject": "Add project",
|
|
3066
3133
|
"projects.settings": "Project settings",
|
|
3134
|
+
"projects.settings.info": "Project info",
|
|
3067
3135
|
"projects.settings.newProjectName": "My project",
|
|
3068
3136
|
"projects.settings.iconPicker.button.tooltip": "Choose project icon",
|
|
3069
|
-
"projects.settings.name": "
|
|
3070
|
-
"projects.settings.description": "
|
|
3137
|
+
"projects.settings.name": "Icon and name",
|
|
3138
|
+
"projects.settings.description": "Description",
|
|
3071
3139
|
"projects.settings.projectMembers": "Project members",
|
|
3072
3140
|
"projects.settings.message.unsavedChanges": "You have unsaved changes",
|
|
3073
3141
|
"projects.settings.danger.message": "When deleting a project, you can also choose to move all workflows and credentials to another project.",
|
|
@@ -3108,6 +3176,7 @@ var englishBaseText = {
|
|
|
3108
3176
|
"projects.settings.memberRole.update.error.title": "An error occurred while updating member role",
|
|
3109
3177
|
"projects.settings.member.removed.title": "Member removed successfully",
|
|
3110
3178
|
"projects.settings.member.remove.error.title": "An error occurred while removing member",
|
|
3179
|
+
"projects.settings.member.added.title": "Member added successfully",
|
|
3111
3180
|
"projects.sharing.noMatchingProjects": "There are no available projects",
|
|
3112
3181
|
"projects.sharing.noMatchingUsers": "No matching users or projects",
|
|
3113
3182
|
"projects.sharing.select.placeholder": "Select project or user",
|
|
@@ -3227,6 +3296,7 @@ var englishBaseText = {
|
|
|
3227
3296
|
"type.boolean": "Boolean",
|
|
3228
3297
|
"type.array": "Array",
|
|
3229
3298
|
"type.object": "Object",
|
|
3299
|
+
"type.binary": "Binary Data",
|
|
3230
3300
|
"filter.operator.equals": "is equal to",
|
|
3231
3301
|
"filter.operator.notEquals": "is not equal to",
|
|
3232
3302
|
"filter.operator.contains": "contains",
|
|
@@ -3273,6 +3343,7 @@ var englishBaseText = {
|
|
|
3273
3343
|
"assignment.add": "Add Field",
|
|
3274
3344
|
"assignment.addAll": "Add All",
|
|
3275
3345
|
"assignment.clearAll": "Clear All",
|
|
3346
|
+
"assignment.binaryData.placeholder": "Name of binary input (or expression referencing it)",
|
|
3276
3347
|
"templateSetup.title": "Set up '{name}' template",
|
|
3277
3348
|
"templateSetup.instructions": "You need {0} account to setup this template",
|
|
3278
3349
|
"templateSetup.skip": "Skip",
|
|
@@ -3448,6 +3519,7 @@ var englishBaseText = {
|
|
|
3448
3519
|
"insights.dashboard.table.title": "Breakdown by workflow",
|
|
3449
3520
|
"insights.dashboard.table.estimate": "Estimate",
|
|
3450
3521
|
"insights.dashboard.title": "Insights",
|
|
3522
|
+
"insights.dashboard.search.placeholder": "All projects",
|
|
3451
3523
|
"insights.dashboard.paywall.title": "Upgrade to access more detailed insights",
|
|
3452
3524
|
"insights.dashboard.paywall.description": "Gain access to more granular, per-workflow insights and visual breakdown of production executions over different time periods.",
|
|
3453
3525
|
"insights.banner.title.timeSaved.tooltip": "Total time saved calculated from your estimated time savings per execution across all workflows",
|
package/dist/types.d.ts
CHANGED
|
@@ -95,12 +95,14 @@ var englishBaseText = {
|
|
|
95
95
|
"generic.startNow": "Start now",
|
|
96
96
|
"generic.dismiss": "Dismiss",
|
|
97
97
|
"generic.saving": "Saving",
|
|
98
|
+
"generic.name": "Name",
|
|
98
99
|
"generic.unsavedWork.confirmMessage.headline": "Save changes before leaving?",
|
|
99
100
|
"generic.unsavedWork.confirmMessage.message": "If you don't save, you will lose your changes.",
|
|
100
101
|
"generic.unsavedWork.confirmMessage.confirmButtonText": "Save",
|
|
101
102
|
"generic.unsavedWork.confirmMessage.cancelButtonText": "Leave without saving",
|
|
102
103
|
"generic.upgrade": "Upgrade",
|
|
103
104
|
"generic.upgradeNow": "Upgrade now",
|
|
105
|
+
"generic.update": "Update",
|
|
104
106
|
"generic.credential": "Credential | {count} Credential | {count} Credentials",
|
|
105
107
|
"generic.credentials": "Credentials",
|
|
106
108
|
"generic.workflow": "Workflow | {count} Workflow | {count} Workflows",
|
|
@@ -126,6 +128,9 @@ var englishBaseText = {
|
|
|
126
128
|
"generic.never": "Never",
|
|
127
129
|
"generic.list.clearSelection": "Clear selection",
|
|
128
130
|
"generic.list.selected": "{count} row selected | {count} rows selected",
|
|
131
|
+
"generic.project": "Project",
|
|
132
|
+
"generic.your": "Your",
|
|
133
|
+
"generic.apiKey": "API Key",
|
|
129
134
|
"about.aboutN8n": "About n8n",
|
|
130
135
|
"about.close": "Close",
|
|
131
136
|
"about.license": "License",
|
|
@@ -202,13 +207,14 @@ var englishBaseText = {
|
|
|
202
207
|
"aiAssistant.tabs.build": "Build",
|
|
203
208
|
"aiAssistant.builder.mode": "AI Builder",
|
|
204
209
|
"aiAssistant.builder.placeholder": "Ask n8n to build...",
|
|
210
|
+
"aiAssistant.builder.assistantPlaceholder": "What would you like to modify or add?",
|
|
211
|
+
"aiAssistant.builder.characterLimit": "You've reached the { limit } character limit",
|
|
205
212
|
"aiAssistant.builder.generateNew": "Generate new workflow",
|
|
206
213
|
"aiAssistant.builder.newWorkflowNotice": "The created workflow will be added to the editor",
|
|
207
214
|
"aiAssistant.builder.feedbackPrompt": "Is this workflow helpful?",
|
|
208
215
|
"aiAssistant.builder.invalidPrompt": "Prompt validation failed. Please try again with a clearer description of your workflow requirements and supported integrations.",
|
|
209
216
|
"aiAssistant.builder.workflowParsingError.title": "Unable to insert workflow",
|
|
210
217
|
"aiAssistant.builder.workflowParsingError.content": "The workflow returned by AI could not be parsed. Please try again.",
|
|
211
|
-
"aiAssistant.builder.canvasPrompt.buildWorkflow": "Create workflow",
|
|
212
218
|
"aiAssistant.builder.canvasPrompt.title": "What would you like to automate?",
|
|
213
219
|
"aiAssistant.builder.canvasPrompt.confirmTitle": "Replace current prompt?",
|
|
214
220
|
"aiAssistant.builder.canvasPrompt.confirmMessage": "This will replace your current prompt. Are you sure?",
|
|
@@ -217,6 +223,16 @@ var englishBaseText = {
|
|
|
217
223
|
"aiAssistant.builder.canvasPrompt.startManually.title": "Start manually",
|
|
218
224
|
"aiAssistant.builder.canvasPrompt.startManually.subTitle": "Add the first node",
|
|
219
225
|
"aiAssistant.builder.streamAbortedMessage": "[Task aborted]",
|
|
226
|
+
"aiAssistant.builder.executeMessage.description": "Complete these steps before executing your workflow:",
|
|
227
|
+
"aiAssistant.builder.executeMessage.noIssues": "Your workflow is ready to be executed",
|
|
228
|
+
"aiAssistant.builder.executeMessage.validationTooltip": "Complete the steps above before executing",
|
|
229
|
+
"aiAssistant.builder.executeMessage.execute": "Execute and refine",
|
|
230
|
+
"aiAssistant.builder.executeMessage.noExecutionData": "Workflow execution could not be started. Please try again.",
|
|
231
|
+
"aiAssistant.builder.executeMessage.executionSuccess": "Workflow executed successfully.",
|
|
232
|
+
"aiAssistant.builder.executeMessage.executionFailedOnNode": "Workflow execution failed on node \"{nodeName}\": {errorMessage}",
|
|
233
|
+
"aiAssistant.builder.executeMessage.executionFailed": "Workflow execution failed: {errorMessage}",
|
|
234
|
+
"aiAssistant.builder.toast.title": "Send chat message to start the execution",
|
|
235
|
+
"aiAssistant.builder.toast.description": "Please send a message in the chat panel to start the execution of your workflow",
|
|
220
236
|
"aiAssistant.assistant": "AI Assistant",
|
|
221
237
|
"aiAssistant.newSessionModal.title.part1": "Start new",
|
|
222
238
|
"aiAssistant.newSessionModal.title.part2": "session",
|
|
@@ -589,6 +605,9 @@ var englishBaseText = {
|
|
|
589
605
|
"codeNodeEditor.defaultsTo": "Defaults to {default}.",
|
|
590
606
|
"collectionParameter.choose": "Choose...",
|
|
591
607
|
"collectionParameter.noProperties": "No properties",
|
|
608
|
+
"communityNodeFooter.legacy": "Legacy",
|
|
609
|
+
"communityNodeFooter.manage": "Manage",
|
|
610
|
+
"communityNodeFooter.reportIssue": "Report issue",
|
|
592
611
|
"credentialEdit.credentialConfig.accountConnected": "Account connected",
|
|
593
612
|
"credentialEdit.credentialConfig.clickToCopy": "Click To Copy",
|
|
594
613
|
"credentialEdit.credentialConfig.connectionTestedSuccessfully": "Connection tested successfully",
|
|
@@ -751,6 +770,12 @@ var englishBaseText = {
|
|
|
751
770
|
"duplicateWorkflowDialog.errors.forbidden.message": "This action is forbidden. Do you have the correct permissions?",
|
|
752
771
|
"duplicateWorkflowDialog.errors.generic.title": "Duplicate workflow failed",
|
|
753
772
|
"editor.mainHeader.githubButton.label": "Star n8n-io/n8n on GitHub",
|
|
773
|
+
"experiments.personalizedTemplatesV3.browseAllTemplates": "Browse our template library",
|
|
774
|
+
"experiments.personalizedTemplatesV3.couldntFind": "Need something different?",
|
|
775
|
+
"experiments.personalizedTemplatesV3.exploreTemplates": "Get started with HubSpot workflows:",
|
|
776
|
+
"experiments.personalizedTemplatesV3.loadingTemplates": "Loading recommendations...",
|
|
777
|
+
"experiments.personalizedTemplatesV3.recommendationTooltip": "Speed up your automation with these workflows",
|
|
778
|
+
"experiments.personalizedTemplatesV3.recommendedForYou": "Recommended for you",
|
|
754
779
|
error: error,
|
|
755
780
|
"error.goBack": "Go back",
|
|
756
781
|
"error.pageNotFound": "Oops, couldn’t find that",
|
|
@@ -1939,8 +1964,6 @@ var englishBaseText = {
|
|
|
1939
1964
|
"runData.aiContentBlock.tokens": "{count} Tokens",
|
|
1940
1965
|
"runData.aiContentBlock.tokens.prompt": "Prompt:",
|
|
1941
1966
|
"runData.aiContentBlock.tokens.completion": "Completion:",
|
|
1942
|
-
"runData.trimmedData.title": "No data yet",
|
|
1943
|
-
"runData.trimmedData.message": "Data will be available here once the execution has finished.",
|
|
1944
1967
|
"runData.trimmedData.loading": "Loading data",
|
|
1945
1968
|
"runData.panel.actions.collapse": "Collapse panel",
|
|
1946
1969
|
"runData.panel.actions.open": "Open panel",
|
|
@@ -1998,6 +2021,22 @@ var englishBaseText = {
|
|
|
1998
2021
|
"settings.communityNodes.confirmModal.update.buttonLabel": "Confirm update",
|
|
1999
2022
|
"settings.communityNodes.confirmModal.update.buttonLoadingLabel": "Updating...",
|
|
2000
2023
|
"settings.communityNodes.confirmModal.cancel": "Cancel",
|
|
2024
|
+
"settings.mcp": "MCP Access",
|
|
2025
|
+
"settings.mcp.toggle.label": "Enable MCP",
|
|
2026
|
+
"settings.mcp.toggle.description": "Enable MCP access to this n8n instance",
|
|
2027
|
+
"settings.mcp.available.workflows.heading": "Available Workflows",
|
|
2028
|
+
"settings.mcp.connection.info.heading": "How to connect",
|
|
2029
|
+
"settings.mcp.workflows.table.action.removeMCPAccess": "Remove MCP Access",
|
|
2030
|
+
"settings.mcp.empty.title": "No workflows available for MCP",
|
|
2031
|
+
"settings.mcp.empty.description": "Enable MCP access in each workflow's settings to see them here.",
|
|
2032
|
+
"settings.mcp.toggle.disabled.tooltip": "Only the instance owner can change this",
|
|
2033
|
+
"settings.mcp.instructions.enableAccess": "Enable workflow access in at least one workflow via its settings",
|
|
2034
|
+
"settings.mcp.instructions.serverUrl": "Server URL",
|
|
2035
|
+
"settings.mcp.instructions.apiKey.part1": "Create an",
|
|
2036
|
+
"settings.mcp.instructions.apiKey.part2": "No scopes required, MCP uses your role for authorization",
|
|
2037
|
+
"settings.mcp.instructions.json": "Or use the following code in your 'mcp.json' file",
|
|
2038
|
+
"settings.mcp.instructions.docs.part1": "For more detailed instructions and examples, have a look at",
|
|
2039
|
+
"settings.mcp.instructions.docs.part2": "our docs",
|
|
2001
2040
|
"settings.goBack": "Go back",
|
|
2002
2041
|
"settings.personal": "Personal",
|
|
2003
2042
|
"settings.personal.basicInformation": "Basic Information",
|
|
@@ -2252,6 +2291,8 @@ var englishBaseText = {
|
|
|
2252
2291
|
"settings.sourceControl.description": "Use multiple instances for different environments (dev, prod, etc.), deploying between them via a Git repository. {link}",
|
|
2253
2292
|
"settings.sourceControl.description.link": "More info",
|
|
2254
2293
|
"settings.sourceControl.gitConfig": "Git configuration",
|
|
2294
|
+
"settings.sourceControl.connectionType": "Connection Type",
|
|
2295
|
+
"settings.sourceControl.enterValidHttpsUrl": "Please enter a valid HTTPS URL",
|
|
2255
2296
|
"settings.sourceControl.repoUrl": "Git repository URL (SSH)",
|
|
2256
2297
|
"settings.sourceControl.repoUrlPlaceholder": "e.g. git{'@'}github.com:my-team/my-repository",
|
|
2257
2298
|
"settings.sourceControl.repoUrlInvalid": "The Git repository URL is not valid",
|
|
@@ -2347,6 +2388,19 @@ var englishBaseText = {
|
|
|
2347
2388
|
"settings.sourceControl.docs.using.pushPull.url": "https://docs.n8n.io/source-control-environments/using/push-pull",
|
|
2348
2389
|
"settings.sourceControl.error.not.connected.title": "Environments have not been enabled",
|
|
2349
2390
|
"settings.sourceControl.error.not.connected.message": "Please head over to <a href='/settings/environments'>environment settings</a> to connect a git repository first to activate this functionality.",
|
|
2391
|
+
"settings.sourceControl.saved.error": "Error setting branch",
|
|
2392
|
+
"settings.sourceControl.sshRepoUrl": "SSH Repository URL",
|
|
2393
|
+
"settings.sourceControl.httpsRepoUrl": "HTTPS Repository URL",
|
|
2394
|
+
"settings.sourceControl.sshRepoUrlPlaceholder": "git{'@'}github.com:user/repository.git",
|
|
2395
|
+
"settings.sourceControl.httpsRepoUrlPlaceholder": "https://github.com/user/repository.git",
|
|
2396
|
+
"settings.sourceControl.sshFormatNotice": "Use SSH format: git{'@'}github.com:user/repository.git",
|
|
2397
|
+
"settings.sourceControl.httpsFormatNotice": "Use HTTPS format: https://github.com/user/repository.git",
|
|
2398
|
+
"settings.sourceControl.httpsUsername": "Username",
|
|
2399
|
+
"settings.sourceControl.httpsUsernamePlaceholder": "Enter your GitHub username",
|
|
2400
|
+
"settings.sourceControl.httpsPersonalAccessToken": "Personal Access Token",
|
|
2401
|
+
"settings.sourceControl.httpsPersonalAccessTokenPlaceholder": "Enter your Personal Access Token (PAT)",
|
|
2402
|
+
"settings.sourceControl.httpsWarningNotice": "{strong} To create one for GitHub: Go to Settings → Developer settings → Personal access tokens → Tokens (classic). Required scopes: {repo} for private repositories or {publicRepo} for public ones. Other providers are also supported.",
|
|
2403
|
+
"settings.sourceControl.httpsWarningNotice.strong": "Personal Access Token required:",
|
|
2350
2404
|
"showMessage.cancel": "@:_reusableBaseText.cancel",
|
|
2351
2405
|
"showMessage.ok": "OK",
|
|
2352
2406
|
"showMessage.showDetails": "Show Details",
|
|
@@ -2473,6 +2527,7 @@ var englishBaseText = {
|
|
|
2473
2527
|
"ndv.search.placeholder.output": "Search output",
|
|
2474
2528
|
"ndv.search.placeholder.input": "Search selected node",
|
|
2475
2529
|
"ndv.search.placeholder.input.schema": "Search previous nodes' fields",
|
|
2530
|
+
"ndv.search.placeholder.shortcutHint": "Search ({shortcut})",
|
|
2476
2531
|
"ndv.search.noMatch.title": "No matching items",
|
|
2477
2532
|
"ndv.search.noNodeMatch.title": "No matching fields",
|
|
2478
2533
|
"ndv.search.noMatch.description": "Try changing or {link} the filter to see more",
|
|
@@ -2641,6 +2696,10 @@ var englishBaseText = {
|
|
|
2641
2696
|
"workflowSettings.timeSavedPerExecution": "Estimated time saved",
|
|
2642
2697
|
"workflowSettings.timeSavedPerExecution.hint": "Minutes per production execution",
|
|
2643
2698
|
"workflowSettings.timeSavedPerExecution.tooltip": "Total time savings are summarised in the Overview page.",
|
|
2699
|
+
"workflowSettings.availableInMCP": "Available in MCP",
|
|
2700
|
+
"workflowSettings.availableInMCP.tooltip": "Make this workflow visible to AI Agents through n8n MCP",
|
|
2701
|
+
"workflowSettings.toggleMCP.error.title": "Error updating MCP settings",
|
|
2702
|
+
"workflowSettings.toggleMCP.notFoundError": "Workflow not found",
|
|
2644
2703
|
"workflowHistory.title": "Version History",
|
|
2645
2704
|
"workflowHistory.content.title": "Version",
|
|
2646
2705
|
"workflowHistory.content.editedBy": "Edited by",
|
|
@@ -2688,6 +2747,9 @@ var englishBaseText = {
|
|
|
2688
2747
|
"workflows.item.created": "Created",
|
|
2689
2748
|
"workflows.item.readonly": "Read only",
|
|
2690
2749
|
"workflows.item.archived": "Archived",
|
|
2750
|
+
"workflows.item.availableInMCP": "Available in MCP",
|
|
2751
|
+
"workflows.item.enableMCPAccess": "Enable MCP access",
|
|
2752
|
+
"workflows.item.disableMCPAccess": "Remove MCP access",
|
|
2691
2753
|
"workflows.itemSuggestion.try": "Try template",
|
|
2692
2754
|
"workflows.templateRecoV2.starterTemplates": "Starter templates",
|
|
2693
2755
|
"workflows.templateRecoV2.seeMoreStarterTemplates": "See more starter templates",
|
|
@@ -3027,6 +3089,11 @@ var englishBaseText = {
|
|
|
3027
3089
|
"settings.sso.settings.ips.url.invalid": "The Identity Provider Metadata URL is not valid",
|
|
3028
3090
|
"settings.sso.settings.ips.options.url": "Metadata URL",
|
|
3029
3091
|
"settings.sso.settings.ips.options.xml": "XML",
|
|
3092
|
+
"settings.sso.settings.oidc.prompt.none": "None (Silent authentication)",
|
|
3093
|
+
"settings.sso.settings.oidc.prompt.login": "Login (Force the user to log in)",
|
|
3094
|
+
"settings.sso.settings.oidc.prompt.consent": "Consent (Ask the user to consent)",
|
|
3095
|
+
"settings.sso.settings.oidc.prompt.select_account": "Select Account (Allow the user to select an account)",
|
|
3096
|
+
"settings.sso.settings.oidc.prompt.create": "Create (Ask the OP to show the registration page first)",
|
|
3030
3097
|
"settings.sso.settings.test": "Test settings",
|
|
3031
3098
|
"settings.sso.settings.save": "Save settings",
|
|
3032
3099
|
"settings.sso.settings.save.activate.title": "Test and activate SAML SSO",
|
|
@@ -3064,10 +3131,11 @@ var englishBaseText = {
|
|
|
3064
3131
|
"projects.menu.personal": "Personal",
|
|
3065
3132
|
"projects.menu.addFirstProject": "Add project",
|
|
3066
3133
|
"projects.settings": "Project settings",
|
|
3134
|
+
"projects.settings.info": "Project info",
|
|
3067
3135
|
"projects.settings.newProjectName": "My project",
|
|
3068
3136
|
"projects.settings.iconPicker.button.tooltip": "Choose project icon",
|
|
3069
|
-
"projects.settings.name": "
|
|
3070
|
-
"projects.settings.description": "
|
|
3137
|
+
"projects.settings.name": "Icon and name",
|
|
3138
|
+
"projects.settings.description": "Description",
|
|
3071
3139
|
"projects.settings.projectMembers": "Project members",
|
|
3072
3140
|
"projects.settings.message.unsavedChanges": "You have unsaved changes",
|
|
3073
3141
|
"projects.settings.danger.message": "When deleting a project, you can also choose to move all workflows and credentials to another project.",
|
|
@@ -3108,6 +3176,7 @@ var englishBaseText = {
|
|
|
3108
3176
|
"projects.settings.memberRole.update.error.title": "An error occurred while updating member role",
|
|
3109
3177
|
"projects.settings.member.removed.title": "Member removed successfully",
|
|
3110
3178
|
"projects.settings.member.remove.error.title": "An error occurred while removing member",
|
|
3179
|
+
"projects.settings.member.added.title": "Member added successfully",
|
|
3111
3180
|
"projects.sharing.noMatchingProjects": "There are no available projects",
|
|
3112
3181
|
"projects.sharing.noMatchingUsers": "No matching users or projects",
|
|
3113
3182
|
"projects.sharing.select.placeholder": "Select project or user",
|
|
@@ -3227,6 +3296,7 @@ var englishBaseText = {
|
|
|
3227
3296
|
"type.boolean": "Boolean",
|
|
3228
3297
|
"type.array": "Array",
|
|
3229
3298
|
"type.object": "Object",
|
|
3299
|
+
"type.binary": "Binary Data",
|
|
3230
3300
|
"filter.operator.equals": "is equal to",
|
|
3231
3301
|
"filter.operator.notEquals": "is not equal to",
|
|
3232
3302
|
"filter.operator.contains": "contains",
|
|
@@ -3273,6 +3343,7 @@ var englishBaseText = {
|
|
|
3273
3343
|
"assignment.add": "Add Field",
|
|
3274
3344
|
"assignment.addAll": "Add All",
|
|
3275
3345
|
"assignment.clearAll": "Clear All",
|
|
3346
|
+
"assignment.binaryData.placeholder": "Name of binary input (or expression referencing it)",
|
|
3276
3347
|
"templateSetup.title": "Set up '{name}' template",
|
|
3277
3348
|
"templateSetup.instructions": "You need {0} account to setup this template",
|
|
3278
3349
|
"templateSetup.skip": "Skip",
|
|
@@ -3448,6 +3519,7 @@ var englishBaseText = {
|
|
|
3448
3519
|
"insights.dashboard.table.title": "Breakdown by workflow",
|
|
3449
3520
|
"insights.dashboard.table.estimate": "Estimate",
|
|
3450
3521
|
"insights.dashboard.title": "Insights",
|
|
3522
|
+
"insights.dashboard.search.placeholder": "All projects",
|
|
3451
3523
|
"insights.dashboard.paywall.title": "Upgrade to access more detailed insights",
|
|
3452
3524
|
"insights.dashboard.paywall.description": "Gain access to more granular, per-workflow insights and visual breakdown of production executions over different time periods.",
|
|
3453
3525
|
"insights.banner.title.timeSaved.tooltip": "Total time saved calculated from your estimated time savings per execution across all workflows",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/i18n",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.18.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"LICENSE.md",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"vue-i18n": "^11.1.2",
|
|
27
|
-
"n8n-workflow": "1.
|
|
27
|
+
"n8n-workflow": "1.111.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@testing-library/jest-dom": "^6.6.3",
|