@n8n/i18n 1.1.0 → 1.1.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/types.d.cts CHANGED
@@ -984,10 +984,12 @@ var englishBaseText = {
984
984
  "folders.move.modal.message.usedCredentials.warning": "Workflow may not execute correctly if you choose not to share the credentials.",
985
985
  "folders.move.success.title": "Successfully moved folder",
986
986
  "folders.move.success.message": "<b>{folderName}</b> has been moved to <b>{newFolderName}</b>, along with all its workflows and subfolders.<br/><br/><a href=\"{link}\">View {newFolderName}</a>",
987
+ "folders.move.success.messageNoAccess": "<b>{folderName}</b> has been moved to <b>{newFolderName}</b>, along with all its workflows and subfolders.",
987
988
  "folders.move.error.title": "Problem moving folder",
988
989
  "folders.move.workflow.error.title": "Problem moving workflow",
989
990
  "folders.move.workflow.success.title": "Successfully moved workflow",
990
991
  "folders.move.workflow.success.message": "<b>{workflowName}</b> has been moved to <b>{newFolderName}</b>.<br/><br/><a href=\"{link}\">View {newFolderName}</a>",
992
+ "folders.move.workflow.success.messageNoAccess": "<b>{workflowName}</b> has been moved to <b>{newFolderName}</b>.",
991
993
  "folders.move.project.root.name": "No folder (project root)",
992
994
  "folders.open.error.title": "Problem opening folder",
993
995
  "folders.create.error.title": "Problem creating folder",
@@ -1529,7 +1531,7 @@ var englishBaseText = {
1529
1531
  "contextMenu.deselectAll": "Clear selection",
1530
1532
  "contextMenu.tidyUpWorkflow": "Tidy up workflow",
1531
1533
  "contextMenu.tidyUpSelection": "Tidy up selection",
1532
- "contextMenu.extract": "Extract node into sub-workflow | Extract {count} nodes into sub-workflow",
1534
+ "contextMenu.extract": "Convert node to sub-workflow | Convert {count} nodes to sub-workflow",
1533
1535
  "contextMenu.duplicate": "Duplicate | Duplicate {count} {subject}",
1534
1536
  "contextMenu.open": "Open...",
1535
1537
  "contextMenu.test": "Execute step",
@@ -2377,21 +2379,21 @@ var englishBaseText = {
2377
2379
  "workflowDetails.active": "Active",
2378
2380
  "workflowDetails.addTag": "Add tag",
2379
2381
  "workflowDetails.chooseOrCreateATag": "Choose or create a tag",
2380
- "workflowExtraction.error.failure": "Sub-workflow extraction failed",
2382
+ "workflowExtraction.error.failure": "Sub-workflow conversion failed",
2381
2383
  "workflowExtraction.error.selectionGraph.inputEdgeToNonRoot": "Non-input node '{node}' has a connection from a node outside the current selection.",
2382
2384
  "workflowExtraction.error.selectionGraph.outputEdgeFromNonLeaf": "Non-output node '{node}' has a connection to a node outside the current selection.",
2383
2385
  "workflowExtraction.error.selectionGraph.multipleInputNodes": "Multiple nodes [{nodes}] have inputs from outside the selection.",
2384
2386
  "workflowExtraction.error.selectionGraph.multipleOutputNodes": "Multiple nodes [{nodes}] have outputs to outside the selection.",
2385
2387
  "workflowExtraction.error.selectionGraph.noContinuousPathFromRootToLeaf": "First node '{start}' has no selected path to last node '{end}'.",
2386
- "workflowExtraction.error.selectionGraph.listHeader": "Selection is invalid because of these errors:<br><br>{body}<br><br><a href=\"https://docs.n8n.io/workflows/subworkflow-extraction/\" target=\"_blank\">See docs for more info.</a>",
2388
+ "workflowExtraction.error.selectionGraph.listHeader": "Selection is invalid because of these errors:<br><br>{body}<br><br><a href=\"https://docs.n8n.io/workflows/subworkflow-conversion/\" target=\"_blank\">See docs</a> for more info.",
2387
2389
  "workflowExtraction.error.inputNodeHasMultipleInputBranches": "First node '{node}' has multiple input branches, which sub-workflows do not support.",
2388
2390
  "workflowExtraction.error.outputNodeHasMultipleOutputBranches": "Last node '{node}' has multiple output branches, which sub-workflows do not support.",
2389
- "workflowExtraction.error.triggerSelected": "Triggers cannot be extracted into a sub-workflow. Please unselect {nodes}.",
2391
+ "workflowExtraction.error.triggerSelected": "Triggers cannot be converted to a sub-workflow. Please unselect {nodes}.",
2390
2392
  "workflowExtraction.error.subworkflowCreationFailed": "Sub-workflow creation failed, aborting conversion.",
2391
2393
  "workflowExtraction.success.title": "Created sub-workflow",
2392
2394
  "workflowExtraction.success.message": "<a href=\"{url}\" target=\"_blank\">Open in new Tab</a>",
2393
- "workflowExtraction.modal.title": "Move to sub-workflow",
2394
- "workflowExtraction.modal.description": "Extract {nodeCount} node into a new sub-workflow | Extract {nodeCount} nodes into a new sub-workflow",
2395
+ "workflowExtraction.modal.title": "Convert to sub-workflow",
2396
+ "workflowExtraction.modal.description": "Convert {nodeCount} node to a new sub-workflow | Convert {nodeCount} nodes to a new sub-workflow",
2395
2397
  "workflowHelpers.showMessage.title": "Problem saving workflow",
2396
2398
  "workflowOpen.active": "Active",
2397
2399
  "workflowOpen.couldNotLoadActiveWorkflows": "Could not load active workflows",
@@ -3199,8 +3201,6 @@ var englishBaseText = {
3199
3201
 
3200
3202
  type GetBaseTextKey<T> = T extends `_${string}` ? never : T;
3201
3203
  type BaseTextKey = GetBaseTextKey<keyof typeof englishBaseText>;
3202
- type GetCategoryName<T> = T extends `nodeCreator.categoryNames.${infer C}` ? C : never;
3203
- type CategoryName = GetCategoryName<keyof typeof englishBaseText>;
3204
3204
  interface INodeTranslationHeaders {
3205
3205
  data: {
3206
3206
  [key: string]: {
@@ -3210,4 +3210,4 @@ interface INodeTranslationHeaders {
3210
3210
  };
3211
3211
  }
3212
3212
 
3213
- export type { BaseTextKey, CategoryName, GetBaseTextKey, GetCategoryName, INodeTranslationHeaders };
3213
+ export type { BaseTextKey, GetBaseTextKey, INodeTranslationHeaders };
package/dist/types.d.ts CHANGED
@@ -984,10 +984,12 @@ var englishBaseText = {
984
984
  "folders.move.modal.message.usedCredentials.warning": "Workflow may not execute correctly if you choose not to share the credentials.",
985
985
  "folders.move.success.title": "Successfully moved folder",
986
986
  "folders.move.success.message": "<b>{folderName}</b> has been moved to <b>{newFolderName}</b>, along with all its workflows and subfolders.<br/><br/><a href=\"{link}\">View {newFolderName}</a>",
987
+ "folders.move.success.messageNoAccess": "<b>{folderName}</b> has been moved to <b>{newFolderName}</b>, along with all its workflows and subfolders.",
987
988
  "folders.move.error.title": "Problem moving folder",
988
989
  "folders.move.workflow.error.title": "Problem moving workflow",
989
990
  "folders.move.workflow.success.title": "Successfully moved workflow",
990
991
  "folders.move.workflow.success.message": "<b>{workflowName}</b> has been moved to <b>{newFolderName}</b>.<br/><br/><a href=\"{link}\">View {newFolderName}</a>",
992
+ "folders.move.workflow.success.messageNoAccess": "<b>{workflowName}</b> has been moved to <b>{newFolderName}</b>.",
991
993
  "folders.move.project.root.name": "No folder (project root)",
992
994
  "folders.open.error.title": "Problem opening folder",
993
995
  "folders.create.error.title": "Problem creating folder",
@@ -1529,7 +1531,7 @@ var englishBaseText = {
1529
1531
  "contextMenu.deselectAll": "Clear selection",
1530
1532
  "contextMenu.tidyUpWorkflow": "Tidy up workflow",
1531
1533
  "contextMenu.tidyUpSelection": "Tidy up selection",
1532
- "contextMenu.extract": "Extract node into sub-workflow | Extract {count} nodes into sub-workflow",
1534
+ "contextMenu.extract": "Convert node to sub-workflow | Convert {count} nodes to sub-workflow",
1533
1535
  "contextMenu.duplicate": "Duplicate | Duplicate {count} {subject}",
1534
1536
  "contextMenu.open": "Open...",
1535
1537
  "contextMenu.test": "Execute step",
@@ -2377,21 +2379,21 @@ var englishBaseText = {
2377
2379
  "workflowDetails.active": "Active",
2378
2380
  "workflowDetails.addTag": "Add tag",
2379
2381
  "workflowDetails.chooseOrCreateATag": "Choose or create a tag",
2380
- "workflowExtraction.error.failure": "Sub-workflow extraction failed",
2382
+ "workflowExtraction.error.failure": "Sub-workflow conversion failed",
2381
2383
  "workflowExtraction.error.selectionGraph.inputEdgeToNonRoot": "Non-input node '{node}' has a connection from a node outside the current selection.",
2382
2384
  "workflowExtraction.error.selectionGraph.outputEdgeFromNonLeaf": "Non-output node '{node}' has a connection to a node outside the current selection.",
2383
2385
  "workflowExtraction.error.selectionGraph.multipleInputNodes": "Multiple nodes [{nodes}] have inputs from outside the selection.",
2384
2386
  "workflowExtraction.error.selectionGraph.multipleOutputNodes": "Multiple nodes [{nodes}] have outputs to outside the selection.",
2385
2387
  "workflowExtraction.error.selectionGraph.noContinuousPathFromRootToLeaf": "First node '{start}' has no selected path to last node '{end}'.",
2386
- "workflowExtraction.error.selectionGraph.listHeader": "Selection is invalid because of these errors:<br><br>{body}<br><br><a href=\"https://docs.n8n.io/workflows/subworkflow-extraction/\" target=\"_blank\">See docs for more info.</a>",
2388
+ "workflowExtraction.error.selectionGraph.listHeader": "Selection is invalid because of these errors:<br><br>{body}<br><br><a href=\"https://docs.n8n.io/workflows/subworkflow-conversion/\" target=\"_blank\">See docs</a> for more info.",
2387
2389
  "workflowExtraction.error.inputNodeHasMultipleInputBranches": "First node '{node}' has multiple input branches, which sub-workflows do not support.",
2388
2390
  "workflowExtraction.error.outputNodeHasMultipleOutputBranches": "Last node '{node}' has multiple output branches, which sub-workflows do not support.",
2389
- "workflowExtraction.error.triggerSelected": "Triggers cannot be extracted into a sub-workflow. Please unselect {nodes}.",
2391
+ "workflowExtraction.error.triggerSelected": "Triggers cannot be converted to a sub-workflow. Please unselect {nodes}.",
2390
2392
  "workflowExtraction.error.subworkflowCreationFailed": "Sub-workflow creation failed, aborting conversion.",
2391
2393
  "workflowExtraction.success.title": "Created sub-workflow",
2392
2394
  "workflowExtraction.success.message": "<a href=\"{url}\" target=\"_blank\">Open in new Tab</a>",
2393
- "workflowExtraction.modal.title": "Move to sub-workflow",
2394
- "workflowExtraction.modal.description": "Extract {nodeCount} node into a new sub-workflow | Extract {nodeCount} nodes into a new sub-workflow",
2395
+ "workflowExtraction.modal.title": "Convert to sub-workflow",
2396
+ "workflowExtraction.modal.description": "Convert {nodeCount} node to a new sub-workflow | Convert {nodeCount} nodes to a new sub-workflow",
2395
2397
  "workflowHelpers.showMessage.title": "Problem saving workflow",
2396
2398
  "workflowOpen.active": "Active",
2397
2399
  "workflowOpen.couldNotLoadActiveWorkflows": "Could not load active workflows",
@@ -3199,8 +3201,6 @@ var englishBaseText = {
3199
3201
 
3200
3202
  type GetBaseTextKey<T> = T extends `_${string}` ? never : T;
3201
3203
  type BaseTextKey = GetBaseTextKey<keyof typeof englishBaseText>;
3202
- type GetCategoryName<T> = T extends `nodeCreator.categoryNames.${infer C}` ? C : never;
3203
- type CategoryName = GetCategoryName<keyof typeof englishBaseText>;
3204
3204
  interface INodeTranslationHeaders {
3205
3205
  data: {
3206
3206
  [key: string]: {
@@ -3210,4 +3210,4 @@ interface INodeTranslationHeaders {
3210
3210
  };
3211
3211
  }
3212
3212
 
3213
- export type { BaseTextKey, CategoryName, GetBaseTextKey, GetCategoryName, INodeTranslationHeaders };
3213
+ export type { BaseTextKey, GetBaseTextKey, INodeTranslationHeaders };
package/dist/utils.cjs CHANGED
@@ -4,7 +4,6 @@
4
4
 
5
5
 
6
6
  var _chunkMOPMPZJOcjs = require('./chunk-MOPMPZJO.cjs');
7
- require('./chunk-WMF2ZDRE.cjs');
8
7
 
9
8
 
10
9
 
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/n8n/n8n/packages/frontend/@n8n/i18n/dist/utils.cjs"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACF,uQAAC","file":"/home/runner/work/n8n/n8n/packages/frontend/@n8n/i18n/dist/utils.cjs"}
1
+ {"version":3,"sources":["/home/runner/work/n8n/n8n/packages/frontend/@n8n/i18n/dist/utils.cjs"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACF,uQAAC","file":"/home/runner/work/n8n/n8n/packages/frontend/@n8n/i18n/dist/utils.cjs"}
package/dist/utils.js CHANGED
@@ -4,7 +4,6 @@ import {
4
4
  isNestedInCollectionLike,
5
5
  normalize
6
6
  } from "./chunk-NITZKE2M.js";
7
- import "./chunk-QKQ47GQZ.js";
8
7
  export {
9
8
  deriveMiddleKey,
10
9
  insertOptionsAndValues,
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@n8n/i18n",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "files": [
6
6
  "dist",
7
- "LICENSE_EE.md",
8
- "LICENSE.md"
7
+ "LICENSE.md",
8
+ "LICENSE_EE.md"
9
9
  ],
10
10
  "main": "dist/index.cjs",
11
11
  "module": "dist/index.js",
@@ -39,9 +39,9 @@
39
39
  "vite": "^6.3.5",
40
40
  "vitest": "^3.1.3",
41
41
  "vue-tsc": "^2.2.8",
42
- "@n8n/typescript-config": "1.2.0",
43
42
  "@n8n/eslint-config": "0.0.1",
44
- "@n8n/vitest-config": "1.2.0"
43
+ "@n8n/vitest-config": "1.2.0",
44
+ "@n8n/typescript-config": "1.2.0"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "vue": "^3.5.13"
@@ -1,10 +0,0 @@
1
- var __glob = (map) => (path) => {
2
- var fn = map[path];
3
- if (fn) return fn();
4
- throw new Error("Module not found in bundle: " + path);
5
- };
6
-
7
- export {
8
- __glob
9
- };
10
- //# sourceMappingURL=chunk-QKQ47GQZ.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}