@node-red/editor-client 2.2.2 → 3.0.0-beta.3

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.
Files changed (147) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +88 -57
  3. package/locales/en-US/infotips.json +19 -19
  4. package/locales/en-US/jsonata.json +40 -40
  5. package/locales/ja/editor.json +54 -17
  6. package/locales/ja/infotips.json +1 -1
  7. package/locales/ko/editor.json +5 -2
  8. package/locales/ru/editor.json +14 -11
  9. package/locales/zh-CN/editor.json +14 -11
  10. package/locales/zh-TW/editor.json +14 -11
  11. package/package.json +1 -1
  12. package/public/red/about +151 -0
  13. package/public/red/images/grip-horizontal.svg +1 -0
  14. package/public/red/images/grip.svg +1 -0
  15. package/public/red/keymap.json +5 -1
  16. package/public/red/red.js +2837 -839
  17. package/public/red/red.min.js +2 -2
  18. package/public/red/style.min.css +2 -2
  19. package/public/red/tours/images/context-menu.png +0 -0
  20. package/public/red/tours/images/continuous-search.png +0 -0
  21. package/public/red/tours/images/debug-path-tooltip.png +0 -0
  22. package/public/red/tours/images/junction-quick-add.png +0 -0
  23. package/public/red/tours/images/junction-slice.gif +0 -0
  24. package/public/red/tours/images/split-wire-with-links.gif +0 -0
  25. package/public/red/tours/welcome.js +91 -95
  26. package/public/types/node/assert.d.ts +5 -1
  27. package/public/types/node/async_hooks.d.ts +4 -1
  28. package/public/types/node/buffer.d.ts +68 -1
  29. package/public/types/node/child_process.d.ts +4 -1
  30. package/public/types/node/cluster.d.ts +4 -1
  31. package/public/types/node/console.d.ts +10 -1
  32. package/public/types/node/crypto.d.ts +6 -3
  33. package/public/types/node/dgram.d.ts +12 -9
  34. package/public/types/node/dns.d.ts +8 -1
  35. package/public/types/node/domain.d.ts +4 -1
  36. package/public/types/node/events.d.ts +5 -1
  37. package/public/types/node/fs.d.ts +10 -7
  38. package/public/types/node/globals.d.ts +140 -7
  39. package/public/types/node/http.d.ts +10 -4
  40. package/public/types/node/http2.d.ts +8 -5
  41. package/public/types/node/https.d.ts +4 -1
  42. package/public/types/node/module.d.ts +5 -1
  43. package/public/types/node/net.d.ts +7 -4
  44. package/public/types/node/os.d.ts +4 -1
  45. package/public/types/node/path.d.ts +5 -1
  46. package/public/types/node/perf_hooks.d.ts +4 -1
  47. package/public/types/node/process.d.ts +6 -2
  48. package/public/types/node/querystring.d.ts +4 -1
  49. package/public/types/node/readline.d.ts +5 -1
  50. package/public/types/node/stream.d.ts +13 -9
  51. package/public/types/node/string_decoder.d.ts +4 -1
  52. package/public/types/node/timers.d.ts +4 -1
  53. package/public/types/node/tls.d.ts +6 -2
  54. package/public/types/node/trace_events.d.ts +4 -1
  55. package/public/types/node/tty.d.ts +4 -1
  56. package/public/types/node/url.d.ts +35 -2
  57. package/public/types/node/util.d.ts +11 -2
  58. package/public/types/node/v8.d.ts +4 -1
  59. package/public/types/node/vm.d.ts +4 -1
  60. package/public/types/node/wasi.d.ts +4 -1
  61. package/public/types/node/worker_threads.d.ts +4 -1
  62. package/public/types/node/zlib.d.ts +4 -1
  63. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +382 -217
  64. package/public/vendor/monaco/dist/ade705761eb7e702770d.ttf +0 -0
  65. package/public/vendor/monaco/dist/css.worker.js +2 -1
  66. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +6 -0
  67. package/public/vendor/monaco/dist/editor.js +2 -5
  68. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +8 -0
  69. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  70. package/public/vendor/monaco/dist/html.worker.js +2 -1
  71. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +6 -0
  72. package/public/vendor/monaco/dist/json.worker.js +2 -1
  73. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +6 -0
  74. package/public/vendor/monaco/dist/locale/cs.js +1550 -1445
  75. package/public/vendor/monaco/dist/locale/de.js +1550 -1445
  76. package/public/vendor/monaco/dist/locale/es.js +1550 -1445
  77. package/public/vendor/monaco/dist/locale/fr.js +1550 -1445
  78. package/public/vendor/monaco/dist/locale/it.js +1550 -1445
  79. package/public/vendor/monaco/dist/locale/ja.js +1550 -1445
  80. package/public/vendor/monaco/dist/locale/ko.js +1550 -1445
  81. package/public/vendor/monaco/dist/locale/pl.js +1550 -1445
  82. package/public/vendor/monaco/dist/locale/pt-br.js +1550 -1445
  83. package/public/vendor/monaco/dist/locale/qps-ploc.js +1550 -1445
  84. package/public/vendor/monaco/dist/locale/ru.js +1550 -1445
  85. package/public/vendor/monaco/dist/locale/tr.js +1550 -1445
  86. package/public/vendor/monaco/dist/locale/zh-hans.js +1550 -1445
  87. package/public/vendor/monaco/dist/locale/zh-hant.js +1550 -1445
  88. package/public/vendor/monaco/dist/theme/ace.json +197 -0
  89. package/public/vendor/monaco/dist/theme/active4d.json +4 -0
  90. package/public/vendor/monaco/dist/theme/all-hallows-eve.json +4 -0
  91. package/public/vendor/monaco/dist/theme/amy.json +4 -0
  92. package/public/vendor/monaco/dist/theme/birds-of-paradise.json +4 -0
  93. package/public/vendor/monaco/dist/theme/blackboard.json +4 -0
  94. package/public/vendor/monaco/dist/theme/brilliance-black.json +4 -0
  95. package/public/vendor/monaco/dist/theme/brilliance-dull.json +4 -0
  96. package/public/vendor/monaco/dist/theme/chrome-devtools.json +4 -0
  97. package/public/vendor/monaco/dist/theme/clouds-midnight.json +4 -0
  98. package/public/vendor/monaco/dist/theme/clouds.json +4 -0
  99. package/public/vendor/monaco/dist/theme/cobalt.json +4 -0
  100. package/public/vendor/monaco/dist/theme/cobalt2.json +859 -0
  101. package/public/vendor/monaco/dist/theme/dawn.json +4 -0
  102. package/public/vendor/monaco/dist/theme/dracula.json +208 -0
  103. package/public/vendor/monaco/dist/theme/dreamweaver.json +4 -0
  104. package/public/vendor/monaco/dist/theme/eiffel.json +4 -0
  105. package/public/vendor/monaco/dist/theme/espresso-libre.json +4 -0
  106. package/public/vendor/monaco/dist/theme/github.json +4 -0
  107. package/public/vendor/monaco/dist/theme/idle.json +4 -0
  108. package/public/vendor/monaco/dist/theme/idlefingers.json +4 -0
  109. package/public/vendor/monaco/dist/theme/iplastic.json +4 -0
  110. package/public/vendor/monaco/dist/theme/katzenmilch.json +4 -0
  111. package/public/vendor/monaco/dist/theme/krtheme.json +4 -0
  112. package/public/vendor/monaco/dist/theme/kuroir-theme.json +4 -0
  113. package/public/vendor/monaco/dist/theme/lazy.json +4 -0
  114. package/public/vendor/monaco/dist/theme/magicwb-amiga.json +4 -0
  115. package/public/vendor/monaco/dist/theme/merbivore-soft.json +4 -0
  116. package/public/vendor/monaco/dist/theme/merbivore.json +4 -0
  117. package/public/vendor/monaco/dist/theme/monoindustrial.json +4 -0
  118. package/public/vendor/monaco/dist/theme/monokai-bright.json +4 -0
  119. package/public/vendor/monaco/dist/theme/monokai.json +4 -0
  120. package/public/vendor/monaco/dist/theme/night-owl.json +4 -0
  121. package/public/vendor/monaco/dist/theme/oceanic-next.json +4 -0
  122. package/public/vendor/monaco/dist/theme/pastels-on-dark.json +4 -0
  123. package/public/vendor/monaco/dist/theme/slush-and-poppies.json +4 -0
  124. package/public/vendor/monaco/dist/theme/solarized-dark.json +4 -0
  125. package/public/vendor/monaco/dist/theme/solarized-light.json +4 -0
  126. package/public/vendor/monaco/dist/theme/spacecadet.json +4 -0
  127. package/public/vendor/monaco/dist/theme/sunburst.json +4 -0
  128. package/public/vendor/monaco/dist/theme/textmate-mac-classic.json +4 -0
  129. package/public/vendor/monaco/dist/theme/tomorrow-night-blue.json +4 -0
  130. package/public/vendor/monaco/dist/theme/tomorrow-night-bright.json +4 -0
  131. package/public/vendor/monaco/dist/theme/tomorrow-night-eighties.json +4 -0
  132. package/public/vendor/monaco/dist/theme/tomorrow-night.json +4 -0
  133. package/public/vendor/monaco/dist/theme/tomorrow.json +4 -0
  134. package/public/vendor/monaco/dist/theme/twilight.json +4 -0
  135. package/public/vendor/monaco/dist/theme/upstream-sunburst.json +4 -0
  136. package/public/vendor/monaco/dist/theme/vibrant-ink.json +4 -0
  137. package/public/vendor/monaco/dist/theme/xcode_default.json +4 -0
  138. package/public/vendor/monaco/dist/theme/zenburnesque.json +4 -0
  139. package/public/vendor/monaco/dist/ts.worker.js +2 -16
  140. package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +6 -0
  141. package/public/vendor/vendor.js +4 -4
  142. package/public/red/images/grip-horizontal.png +0 -0
  143. package/public/red/images/grip.png +0 -0
  144. package/public/red/tours/images/delete-repair.gif +0 -0
  145. package/public/red/tours/images/detach-repair.gif +0 -0
  146. package/public/red/tours/images/slice.gif +0 -0
  147. package/public/red/tours/images/subflow-labels.png +0 -0
@@ -185,7 +185,8 @@
185
185
  "create-default-package": "Standardpaketdatei erstellen",
186
186
  "no-thanks": "Nein, Danke",
187
187
  "create-default-project": "Standardprojektdateien erstellen",
188
- "show-merge-conflicts": "Merge-Konflikte anzeigen"
188
+ "show-merge-conflicts": "Merge-Konflikte anzeigen",
189
+ "unknownNodesButton": "Finden Sie unbekannte nodes"
189
190
  }
190
191
  },
191
192
  "clipboard": {
@@ -269,7 +270,9 @@
269
270
  "successfulRestart": "Flows erfolgreich neugestartet",
270
271
  "deployFailed": "Übernahme (deploy) fehlgeschlagen: __message__",
271
272
  "unusedConfigNodes": "Einige Konfigurations-Nodes werden nicht verwendet.",
272
- "unusedConfigNodesLink": "Hier klicken, um sie anzuschauen.",
273
+ "unusedConfigNodesButton":"Finden Sie ungenutzte konfig nodes",
274
+ "unknownNodesButton":"Finden Sie unbekannte nodes",
275
+ "invalidNodesButton":"Finden Sie ungültige nodes",
273
276
  "errors": {
274
277
  "noResponse": "Keine Antwort vom Server"
275
278
  },
@@ -634,14 +637,7 @@
634
637
  "empty": "leer",
635
638
  "globalConfig": "Globale Konfigurations-Nodes",
636
639
  "triggerAction": "Auslösen",
637
- "find": "Suche im Arbeitsbereich",
638
- "search": {
639
- "configNodes": "Konfigurations-Nodes",
640
- "unusedConfigNodes": "Unbenutzte Konfigurations-Nodes",
641
- "invalidNodes": "Ungültige Nodes",
642
- "uknownNodes": "Unbekannte Nodes",
643
- "unusedSubflows": "Unbenutzte Subflows"
644
- }
640
+ "find": "Suche im Arbeitsbereich"
645
641
  },
646
642
  "help": {
647
643
  "name": "Hilfe",
@@ -863,7 +859,14 @@
863
859
  },
864
860
  "search": {
865
861
  "empty": "Keine Übereinstimmungen gefunden",
866
- "addNode": "Node hinzufügen ..."
862
+ "addNode": "Node hinzufügen ...",
863
+ "options": {
864
+ "configNodes": "Konfigurations-Nodes",
865
+ "unusedConfigNodes": "Unbenutzte Konfigurations-Nodes",
866
+ "invalidNodes": "Ungültige Nodes",
867
+ "uknownNodes": "Unbekannte Nodes",
868
+ "unusedSubflows": "Unbenutzte Subflows"
869
+ }
867
870
  },
868
871
  "expressionEditor": {
869
872
  "functions": "Funktionen",
@@ -3,7 +3,7 @@
3
3
  "label": {
4
4
  "name": "Name",
5
5
  "ok": "Ok",
6
- "done":"Done",
6
+ "done": "Done",
7
7
  "cancel": "Cancel",
8
8
  "delete": "Delete",
9
9
  "close": "Close",
@@ -66,7 +66,7 @@
66
66
  "listSubflows": "List subflows",
67
67
  "status": "Status",
68
68
  "enabled": "Enabled",
69
- "disabled":"Disabled",
69
+ "disabled": "Disabled",
70
70
  "info": "Description",
71
71
  "selectNodes": "Click nodes to select"
72
72
  },
@@ -114,7 +114,7 @@
114
114
  "keyboardShortcuts": "Keyboard shortcuts",
115
115
  "login": "Login",
116
116
  "logout": "Logout",
117
- "editPalette":"Manage palette",
117
+ "editPalette": "Manage palette",
118
118
  "other": "Other",
119
119
  "showTips": "Show tips",
120
120
  "showWelcomeTours": "Show guided tours for new versions",
@@ -130,26 +130,30 @@
130
130
  "ungroupSelection": "Ungroup selection",
131
131
  "groupMergeSelection": "Merge selection",
132
132
  "groupRemoveSelection": "Remove from group",
133
- "arrange":"Arrange",
134
- "alignLeft":"Align to left",
135
- "alignCenter":"Align to center",
136
- "alignRight":"Align to right",
137
- "alignTop":"Align to top",
138
- "alignMiddle":"Align to middle",
139
- "alignBottom":"Align to bottom",
140
- "distributeHorizontally":"Distribute horizontally",
141
- "distributeVertically":"Distribute vertically",
142
- "moveToBack":"Move to back",
143
- "moveToFront":"Move to front",
144
- "moveBackwards":"Move backwards",
145
- "moveForwards":"Move forwards"
133
+ "arrange": "Arrange",
134
+ "alignLeft": "Align to left",
135
+ "alignCenter": "Align to center",
136
+ "alignRight": "Align to right",
137
+ "alignTop": "Align to top",
138
+ "alignMiddle": "Align to middle",
139
+ "alignBottom": "Align to bottom",
140
+ "distributeHorizontally": "Distribute horizontally",
141
+ "distributeVertically": "Distribute vertically",
142
+ "moveToBack": "Move to back",
143
+ "moveToFront": "Move to front",
144
+ "moveBackwards": "Move backwards",
145
+ "moveForwards": "Move forwards"
146
146
  }
147
147
  },
148
148
  "actions": {
149
149
  "toggle-navigator": "Toggle navigator",
150
150
  "zoom-out": "Zoom out",
151
151
  "zoom-reset": "Reset zoom",
152
- "zoom-in": "Zoom in"
152
+ "zoom-in": "Zoom in",
153
+ "search-flows": "Search flows",
154
+ "search-prev": "Previous",
155
+ "search-next": "Next",
156
+ "search-counter": "\"__term__\" __result__ of __count__"
153
157
  },
154
158
  "user": {
155
159
  "loggedInAs": "Logged in as __name__",
@@ -172,10 +176,10 @@
172
176
  "nodeActionDisabledSubflow": "node actions disabled within subflow",
173
177
  "missing-types": "<p>Flows stopped due to missing node types.</p>",
174
178
  "missing-modules": "<p>Flows stopped due to missing modules.</p>",
175
- "safe-mode":"<p>Flows stopped in safe mode.</p><p>You can modify your flows and deploy the changes to restart.</p>",
179
+ "safe-mode": "<p>Flows stopped in safe mode.</p><p>You can modify your flows and deploy the changes to restart.</p>",
176
180
  "restartRequired": "Node-RED must be restarted to enable upgraded modules",
177
181
  "credentials_load_failed": "<p>Flows stopped as the credentials could not be decrypted.</p><p>The flow credential file is encrypted, but the project's encryption key is missing or invalid.</p>",
178
- "credentials_load_failed_reset":"<p>Credentials could not be decrypted</p><p>The flow credential file is encrypted, but the project's encryption key is missing or invalid.</p><p>The flow credential file will be reset on the next deployment. Any existing flow credentials will be cleared.</p>",
182
+ "credentials_load_failed_reset": "<p>Credentials could not be decrypted</p><p>The flow credential file is encrypted, but the project's encryption key is missing or invalid.</p><p>The flow credential file will be reset on the next deployment. Any existing flow credentials will be cleared.</p>",
179
183
  "missing_flow_file": "<p>Project flow file not found.</p><p>The project is not configured with a flow file.</p>",
180
184
  "missing_package_file": "<p>Project package file not found.</p><p>The project is missing a package.json file.</p>",
181
185
  "project_empty": "<p>The project is empty.</p><p>Do you want to create a default set of project files?<br/>Otherwise, you will have to manually add files to the project outside of the editor.</p>",
@@ -213,7 +217,8 @@
213
217
  "create-default-package": "Create default package file",
214
218
  "no-thanks": "No thanks",
215
219
  "create-default-project": "Create default project files",
216
- "show-merge-conflicts": "Show merge conflicts"
220
+ "show-merge-conflicts": "Show merge conflicts",
221
+ "unknownNodesButton": "Search for unknown nodes"
217
222
  }
218
223
  },
219
224
  "clipboard": {
@@ -252,11 +257,11 @@
252
257
  "recoveredNodesInfo": "The nodes on this flow were missing a valid flow id when they were imported. They have been added to this flow so you can either restore or delete them.",
253
258
  "recoveredNodesNotification": "<p>Imported nodes without a valid flow id</p><p>They have been added to a new flow called '__flowName__'.</p>",
254
259
  "export": {
255
- "selected":"selected nodes",
256
- "current":"current flow",
257
- "all":"all flows",
258
- "compact":"compact",
259
- "formatted":"formatted",
260
+ "selected": "selected nodes",
261
+ "current": "current flow",
262
+ "all": "all flows",
263
+ "compact": "compact",
264
+ "formatted": "formatted",
260
265
  "copy": "Copy to clipboard",
261
266
  "export": "Export to library",
262
267
  "exportAs": "Export as",
@@ -296,8 +301,10 @@
296
301
  "successfulDeploy": "Successfully deployed",
297
302
  "successfulRestart": "Successfully restarted flows",
298
303
  "deployFailed": "Deploy failed: __message__",
299
- "unusedConfigNodes":"You have some unused configuration nodes.",
300
- "unusedConfigNodesLink":"Click here to see them",
304
+ "unusedConfigNodes": "You have some unused configuration nodes.",
305
+ "unusedConfigNodesButton": "Search unused config nodes",
306
+ "unknownNodesButton": "Search for unknown nodes",
307
+ "invalidNodesButton": "Search for invalid nodes",
301
308
  "errors": {
302
309
  "noResponse": "no response from server"
303
310
  },
@@ -344,8 +351,8 @@
344
351
  },
345
352
  "nodeCount": "__count__ node",
346
353
  "nodeCount_plural": "__count__ nodes",
347
- "local":"Local changes",
348
- "remote":"Remote changes",
354
+ "local": "Local changes",
355
+ "remote": "Remote changes",
349
356
  "reviewChanges": "Review Changes",
350
357
  "noBinaryFileShowed": "Cannot show binary file contents",
351
358
  "viewCommitDiff": "View Commit Changes",
@@ -429,7 +436,7 @@
429
436
  "inputType": "Input type",
430
437
  "selectType": "select types...",
431
438
  "loadCredentials": "Loading node credentials",
432
- "inputs" : {
439
+ "inputs": {
433
440
  "input": "input",
434
441
  "select": "select",
435
442
  "checkbox": "checkbox",
@@ -497,7 +504,8 @@
497
504
  "redoChange": "Redo",
498
505
  "searchBox": "Open search box",
499
506
  "managePalette": "Manage palette",
500
- "actionList":"Action list"
507
+ "actionList": "Action list",
508
+ "splitWireWithLinks": "Split selection with Link nodes"
501
509
  },
502
510
  "library": {
503
511
  "library": "Library",
@@ -609,19 +617,19 @@
609
617
  },
610
618
  "confirm": {
611
619
  "install": {
612
- "body":"<p>Installing '__module__'</p><p>Before installing, please read the node's documentation. Some nodes have dependencies that cannot be automatically resolved and can require a restart of Node-RED.</p>",
620
+ "body": "<p>Installing '__module__'</p><p>Before installing, please read the node's documentation. Some nodes have dependencies that cannot be automatically resolved and can require a restart of Node-RED.</p>",
613
621
  "title": "Install nodes"
614
622
  },
615
623
  "remove": {
616
- "body":"<p>Removing '__module__'</p><p>Removing the node will uninstall it from Node-RED. The node may continue to use resources until Node-RED is restarted.</p>",
624
+ "body": "<p>Removing '__module__'</p><p>Removing the node will uninstall it from Node-RED. The node may continue to use resources until Node-RED is restarted.</p>",
617
625
  "title": "Remove nodes"
618
626
  },
619
627
  "update": {
620
- "body":"<p>Updating '__module__'</p><p>Updating the node will require a restart of Node-RED to complete the update. This must be done manually.</p>",
628
+ "body": "<p>Updating '__module__'</p><p>Updating the node will require a restart of Node-RED to complete the update. This must be done manually.</p>",
621
629
  "title": "Update nodes"
622
630
  },
623
631
  "cannotUpdate": {
624
- "body":"An update for this node is available, but it is not installed in a location that the palette manager can update.<br/><br/>Please refer to the documentation for how to update this node."
632
+ "body": "An update for this node is available, but it is not installed in a location that the palette manager can update.<br/><br/>Please refer to the documentation for how to update this node."
625
633
  },
626
634
  "button": {
627
635
  "review": "Open node information",
@@ -655,27 +663,19 @@
655
663
  "showMore": "show more",
656
664
  "showLess": "show less",
657
665
  "flow": "Flow",
658
- "selection":"Selection",
659
- "nodes":"__count__ nodes",
666
+ "selection": "Selection",
667
+ "nodes": "__count__ nodes",
660
668
  "flowDesc": "Flow Description",
661
669
  "subflowDesc": "Subflow Description",
662
670
  "nodeHelp": "Node Help",
663
- "none":"None",
671
+ "none": "None",
664
672
  "arrayItems": "__count__ items",
665
- "showTips":"You can open the tips from the settings panel",
673
+ "showTips": "You can open the tips from the settings panel",
666
674
  "outline": "Outline",
667
675
  "empty": "empty",
668
676
  "globalConfig": "Global Configuration Nodes",
669
677
  "triggerAction": "Trigger action",
670
- "find": "Find in workspace",
671
- "search": {
672
- "configNodes": "Configuration nodes",
673
- "unusedConfigNodes": "Unused configuration nodes",
674
- "invalidNodes": "Invalid nodes",
675
- "uknownNodes": "Unknown nodes",
676
- "unusedSubflows": "Unused subflows",
677
- "hiddenFlows": "Hidden flows"
678
- }
678
+ "find": "Find in workspace"
679
679
  },
680
680
  "help": {
681
681
  "name": "Help",
@@ -701,8 +701,8 @@
701
701
  "filtered": "__count__ hidden"
702
702
  },
703
703
  "context": {
704
- "name":"Context Data",
705
- "label":"context",
704
+ "name": "Context Data",
705
+ "label": "context",
706
706
  "none": "none selected",
707
707
  "refresh": "refresh to load",
708
708
  "empty": "empty",
@@ -740,9 +740,9 @@
740
740
  "files": "Files",
741
741
  "flow": "Flow",
742
742
  "credentials": "Credentials",
743
- "package":"Package",
744
- "packageCreate":"File will be created when changes are saved",
745
- "fileNotExist":"File does not exist",
743
+ "package": "Package",
744
+ "packageCreate": "File will be created when changes are saved",
745
+ "fileNotExist": "File does not exist",
746
746
  "selectFile": "Select File",
747
747
  "invalidEncryptionKey": "Invalid encryption key",
748
748
  "encryptionEnabled": "Encryption enabled",
@@ -899,7 +899,17 @@
899
899
  "history": "Search history",
900
900
  "clear": "clear all",
901
901
  "empty": "No matches found",
902
- "addNode": "add a node..."
902
+ "addNode": "add a node...",
903
+ "options": {
904
+ "configNodes": "Configuration nodes",
905
+ "unusedConfigNodes": "Unused configuration nodes",
906
+ "invalidNodes": "Invalid nodes",
907
+ "uknownNodes": "Unknown nodes",
908
+ "unusedSubflows": "Unused subflows",
909
+ "hiddenFlows": "Hidden flows",
910
+ "modifiedNodes": "Modified nodes and flows",
911
+ "thisFlow": "Current flow"
912
+ }
903
913
  },
904
914
  "expressionEditor": {
905
915
  "functions": "Functions",
@@ -934,6 +944,8 @@
934
944
  "format": "format JSON",
935
945
  "rawMode": "Edit JSON",
936
946
  "uiMode": "Visual editor",
947
+ "rawMode-readonly": "JSON",
948
+ "uiMode-readonly": "Visual",
937
949
  "insertAbove": "Insert above",
938
950
  "insertBelow": "Insert below",
939
951
  "addItem": "Add item",
@@ -966,7 +978,7 @@
966
978
  "title": "Buffer editor",
967
979
  "modeString": "Handle as UTF-8 String",
968
980
  "modeArray": "Handle as JSON array",
969
- "modeDesc":"<h3>Buffer editor</h3><p>The Buffer type is stored as a JSON array of byte values. The editor will attempt to parse the entered value as a JSON array. If it is not valid JSON, it will be treated as a UTF-8 String and converted to an array of the individual character code points.</p><p>For example, a value of <code>Hello World</code> will be converted to the JSON array:<pre>[72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100]</pre></p>"
981
+ "modeDesc": "<h3>Buffer editor</h3><p>The Buffer type is stored as a JSON array of byte values. The editor will attempt to parse the entered value as a JSON array. If it is not valid JSON, it will be treated as a UTF-8 String and converted to an array of the individual character code points.</p><p>For example, a value of <code>Hello World</code> will be converted to the JSON array:<pre>[72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100]</pre></p>"
970
982
  },
971
983
  "projects": {
972
984
  "config-git": "Configure Git client",
@@ -1128,7 +1140,7 @@
1128
1140
  "no-empty": "Cannot create default file set on a non-empty project",
1129
1141
  "git-error": "git error"
1130
1142
  },
1131
- "errors" : {
1143
+ "errors": {
1132
1144
  "no-username-email": "Your Git client is not configured with a username/email.",
1133
1145
  "unexpected": "An unexpected error occurred",
1134
1146
  "code": "code"
@@ -1148,7 +1160,10 @@
1148
1160
  "start": "Start",
1149
1161
  "next": "Next"
1150
1162
  },
1151
- "languages" : {
1163
+ "diagnostics": {
1164
+ "title": "System Info"
1165
+ },
1166
+ "languages": {
1152
1167
  "de": "German",
1153
1168
  "en-US": "English",
1154
1169
  "ja": "Japanese",
@@ -1156,5 +1171,21 @@
1156
1171
  "ru": "Russian",
1157
1172
  "zh-CN": "Chinese(Simplified)",
1158
1173
  "zh-TW": "Chinese(Traditional)"
1174
+ },
1175
+ "validator": {
1176
+ "errors": {
1177
+ "invalid-json": "Invalid JSON data: __error__",
1178
+ "invalid-json-prop": "__prop__: invalid JSON data: __error__",
1179
+ "invalid-prop": "Invalid property expression",
1180
+ "invalid-prop-prop": "__prop__: invalid property expression",
1181
+ "invalid-num": "Invalid number",
1182
+ "invalid-num-prop": "__prop__: invalid number",
1183
+ "invalid-regexp": "Invalid input pattern",
1184
+ "invalid-regex-prop": "__prop__: invalid input pattern",
1185
+ "missing-required-prop": "__prop__: property value missing",
1186
+ "invalid-config": "__prop__: invalid configuration node",
1187
+ "missing-config": "__prop__: missing configuration node",
1188
+ "validation-error": "__prop__: validation error: __node__, __id__: __error__"
1189
+ }
1159
1190
  }
1160
1191
  }
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "info": {
3
- "tip0" : "You can remove the selected nodes or links with {{core:delete-selection}}",
4
- "tip1" : "Search for nodes using {{core:search}}",
5
- "tip2" : "{{core:toggle-sidebar}} will toggle the view of this sidebar",
6
- "tip3" : "You can manage your palette of nodes with {{core:manage-palette}}",
7
- "tip4" : "Your flow configuration nodes are listed in the sidebar panel. It can be accessed from the menu or with {{core:show-config-tab}}",
8
- "tip5" : "Enable or disable these tips from the option in the settings",
9
- "tip6" : "Move the selected nodes using the [left] [up] [down] and [right] keys. Hold [shift] to nudge them further",
10
- "tip7" : "Dragging a node onto a wire will splice it into the link",
11
- "tip8" : "Export the selected nodes, or the current tab with {{core:show-export-dialog}}",
12
- "tip9" : "Import a flow by dragging its JSON into the editor, or with {{core:show-import-dialog}}",
13
- "tip10" : "[shift] [click] and drag on a node port to move all of the attached wires or just the selected one",
14
- "tip11" : "Show the Info tab with {{core:show-info-tab}} or the Debug tab with {{core:show-debug-tab}}",
15
- "tip12" : "[ctrl] [click] in the workspace to open the quick-add dialog",
16
- "tip13" : "Hold down [ctrl] when you [click] on a node port to enable quick-wiring",
17
- "tip14" : "Hold down [shift] when you [click] on a node to also select all of its connected nodes",
18
- "tip15" : "Hold down [ctrl] when you [click] on a node to add or remove it from the current selection",
19
- "tip16" : "Switch flow tabs with {{core:show-previous-tab}} and {{core:show-next-tab}}",
20
- "tip17" : "You can confirm your changes in the node edit tray with {{core:confirm-edit-tray}} or cancel them with {{core:cancel-edit-tray}}",
21
- "tip18" : "Pressing {{core:edit-selected-node}} will edit the first node in the current selection"
3
+ "tip0": "You can remove the selected nodes or links with {{core:delete-selection}}",
4
+ "tip1": "Search for nodes using {{core:search}}",
5
+ "tip2": "{{core:toggle-sidebar}} will toggle the view of this sidebar",
6
+ "tip3": "You can manage your palette of nodes with {{core:manage-palette}}",
7
+ "tip4": "Your flow configuration nodes are listed in the sidebar panel. It can be accessed from the menu or with {{core:show-config-tab}}",
8
+ "tip5": "Enable or disable these tips from the option in the settings",
9
+ "tip6": "Move the selected nodes using the [left] [up] [down] and [right] keys. Hold [shift] to nudge them further",
10
+ "tip7": "Dragging a node onto a wire will splice it into the link",
11
+ "tip8": "Export the selected nodes, or the current tab with {{core:show-export-dialog}}",
12
+ "tip9": "Import a flow by dragging its JSON into the editor, or with {{core:show-import-dialog}}",
13
+ "tip10": "[shift] [click] and drag on a node port to move all of the attached wires or just the selected one",
14
+ "tip11": "Show the Info tab with {{core:show-info-tab}} or the Debug tab with {{core:show-debug-tab}}",
15
+ "tip12": "[ctrl] [click] in the workspace to open the quick-add dialog",
16
+ "tip13": "Hold down [ctrl] when you [click] on a node port to enable quick-wiring",
17
+ "tip14": "Hold down [shift] when you [click] on a node to also select all of its connected nodes",
18
+ "tip15": "Hold down [ctrl] when you [click] on a node to add or remove it from the current selection",
19
+ "tip16": "Switch flow tabs with {{core:show-previous-tab}} and {{core:show-next-tab}}",
20
+ "tip17": "You can confirm your changes in the node edit tray with {{core:confirm-edit-tray}} or cancel them with {{core:cancel-edit-tray}}",
21
+ "tip18": "Pressing {{core:edit-selected-node}} will edit the first node in the current selection"
22
22
  }
23
23
  }
@@ -52,52 +52,52 @@
52
52
  "desc": "Finds occurrences of `pattern` within `str` and replaces them with `replacement`.\n\nThe optional `limit` parameter is the maximum number of replacements."
53
53
  },
54
54
  "$now": {
55
- "args":"$[picture [, timezone]]",
56
- "desc":"Generates a timestamp in ISO 8601 compatible format and returns it as a string. If the optional picture and timezone parameters are supplied, then the current timestamp is formatted as described by the `$fromMillis()` function"
55
+ "args": "$[picture [, timezone]]",
56
+ "desc": "Generates a timestamp in ISO 8601 compatible format and returns it as a string. If the optional picture and timezone parameters are supplied, then the current timestamp is formatted as described by the `$fromMillis()` function"
57
57
  },
58
58
  "$base64encode": {
59
- "args":"string",
60
- "desc":"Converts an ASCII string to a base 64 representation. Each character in the string is treated as a byte of binary data. This requires that all characters in the string are in the 0x00 to 0xFF range, which includes all characters in URI encoded strings. Unicode characters outside of that range are not supported."
59
+ "args": "string",
60
+ "desc": "Converts an ASCII string to a base 64 representation. Each character in the string is treated as a byte of binary data. This requires that all characters in the string are in the 0x00 to 0xFF range, which includes all characters in URI encoded strings. Unicode characters outside of that range are not supported."
61
61
  },
62
62
  "$base64decode": {
63
- "args":"string",
64
- "desc":"Converts base 64 encoded bytes to a string, using a UTF-8 Unicode codepage."
63
+ "args": "string",
64
+ "desc": "Converts base 64 encoded bytes to a string, using a UTF-8 Unicode codepage."
65
65
  },
66
66
  "$number": {
67
67
  "args": "arg",
68
68
  "desc": "Casts the `arg` parameter to a number using the following casting rules:\n\n - Numbers are unchanged\n - Strings that contain a sequence of characters that represent a legal JSON number are converted to that number\n - All other values cause an error to be thrown."
69
69
  },
70
70
  "$abs": {
71
- "args":"number",
72
- "desc":"Returns the absolute value of the `number` parameter."
71
+ "args": "number",
72
+ "desc": "Returns the absolute value of the `number` parameter."
73
73
  },
74
74
  "$floor": {
75
- "args":"number",
76
- "desc":"Returns the value of `number` rounded down to the nearest integer that is smaller or equal to `number`."
75
+ "args": "number",
76
+ "desc": "Returns the value of `number` rounded down to the nearest integer that is smaller or equal to `number`."
77
77
  },
78
78
  "$ceil": {
79
- "args":"number",
80
- "desc":"Returns the value of `number` rounded up to the nearest integer that is greater than or equal to `number`."
79
+ "args": "number",
80
+ "desc": "Returns the value of `number` rounded up to the nearest integer that is greater than or equal to `number`."
81
81
  },
82
82
  "$round": {
83
- "args":"number [, precision]",
84
- "desc":"Returns the value of the `number` parameter rounded to the number of decimal places specified by the optional `precision` parameter."
83
+ "args": "number [, precision]",
84
+ "desc": "Returns the value of the `number` parameter rounded to the number of decimal places specified by the optional `precision` parameter."
85
85
  },
86
86
  "$power": {
87
- "args":"base, exponent",
88
- "desc":"Returns the value of `base` raised to the power of `exponent`."
87
+ "args": "base, exponent",
88
+ "desc": "Returns the value of `base` raised to the power of `exponent`."
89
89
  },
90
90
  "$sqrt": {
91
- "args":"number",
92
- "desc":"Returns the square root of the value of the `number` parameter."
91
+ "args": "number",
92
+ "desc": "Returns the square root of the value of the `number` parameter."
93
93
  },
94
94
  "$random": {
95
- "args":"",
96
- "desc":"Returns a pseudo random number greater than or equal to zero and less than one."
95
+ "args": "",
96
+ "desc": "Returns a pseudo random number greater than or equal to zero and less than one."
97
97
  },
98
98
  "$millis": {
99
- "args":"",
100
- "desc":"Returns the number of milliseconds since the Unix Epoch (1 January, 1970 UTC) as a number. All invocations of `$millis()` within an evaluation of an expression will all return the same value."
99
+ "args": "",
100
+ "desc": "Returns the number of milliseconds since the Unix Epoch (1 January, 1970 UTC) as a number. All invocations of `$millis()` within an evaluation of an expression will all return the same value."
101
101
  },
102
102
  "$sum": {
103
103
  "args": "array",
@@ -136,20 +136,20 @@
136
136
  "desc": "Appends two arrays"
137
137
  },
138
138
  "$sort": {
139
- "args":"array [, function]",
140
- "desc":"Returns an array containing all the values in the `array` parameter, but sorted into order.\n\nIf a comparator `function` is supplied, then it must be a function that takes two parameters:\n\n`function(left, right)`\n\nThis function gets invoked by the sorting algorithm to compare two values left and right. If the value of left should be placed after the value of right in the desired sort order, then the function must return Boolean `true` to indicate a swap. Otherwise it must return `false`."
139
+ "args": "array [, function]",
140
+ "desc": "Returns an array containing all the values in the `array` parameter, but sorted into order.\n\nIf a comparator `function` is supplied, then it must be a function that takes two parameters:\n\n`function(left, right)`\n\nThis function gets invoked by the sorting algorithm to compare two values left and right. If the value of left should be placed after the value of right in the desired sort order, then the function must return Boolean `true` to indicate a swap. Otherwise it must return `false`."
141
141
  },
142
142
  "$reverse": {
143
- "args":"array",
144
- "desc":"Returns an array containing all the values from the `array` parameter, but in reverse order."
143
+ "args": "array",
144
+ "desc": "Returns an array containing all the values from the `array` parameter, but in reverse order."
145
145
  },
146
146
  "$shuffle": {
147
- "args":"array",
148
- "desc":"Returns an array containing all the values from the `array` parameter, but shuffled into random order."
147
+ "args": "array",
148
+ "desc": "Returns an array containing all the values from the `array` parameter, but shuffled into random order."
149
149
  },
150
150
  "$zip": {
151
- "args":"array, ...",
152
- "desc":"Returns a convolved (zipped) array containing grouped arrays of values from the `array1` … `arrayN` arguments from index 0, 1, 2...."
151
+ "args": "array, ...",
152
+ "desc": "Returns a convolved (zipped) array containing grouped arrays of values from the `array1` … `arrayN` arguments from index 0, 1, 2...."
153
153
  },
154
154
  "$keys": {
155
155
  "args": "object",
@@ -168,24 +168,24 @@
168
168
  "desc": "Merges an array of `objects` into a single `object` containing all the key/value pairs from each of the objects in the input array. If any of the input objects contain the same key, then the returned `object` will contain the value of the last one in the array. It is an error if the input array contains an item that is not an object."
169
169
  },
170
170
  "$sift": {
171
- "args":"object, function",
172
- "desc":"Returns an object that contains only the key/value pairs from the `object` parameter that satisfy the predicate `function` passed in as the second parameter.\n\nThe `function` that is supplied as the second parameter must have the following signature:\n\n`function(value [, key [, object]])`"
171
+ "args": "object, function",
172
+ "desc": "Returns an object that contains only the key/value pairs from the `object` parameter that satisfy the predicate `function` passed in as the second parameter.\n\nThe `function` that is supplied as the second parameter must have the following signature:\n\n`function(value [, key [, object]])`"
173
173
  },
174
174
  "$each": {
175
- "args":"object, function",
176
- "desc":"Returns an array containing the values return by the `function` when applied to each key/value pair in the `object`."
175
+ "args": "object, function",
176
+ "desc": "Returns an array containing the values return by the `function` when applied to each key/value pair in the `object`."
177
177
  },
178
178
  "$map": {
179
- "args":"array, function",
180
- "desc":"Returns an array containing the results of applying the `function` parameter to each value in the `array` parameter.\n\nThe `function` that is supplied as the second parameter must have the following signature:\n\n`function(value [, index [, array]])`"
179
+ "args": "array, function",
180
+ "desc": "Returns an array containing the results of applying the `function` parameter to each value in the `array` parameter.\n\nThe `function` that is supplied as the second parameter must have the following signature:\n\n`function(value [, index [, array]])`"
181
181
  },
182
182
  "$filter": {
183
- "args":"array, function",
184
- "desc":"Returns an array containing only the values in the `array` parameter that satisfy the `function` predicate.\n\nThe `function` that is supplied as the second parameter must have the following signature:\n\n`function(value [, index [, array]])`"
183
+ "args": "array, function",
184
+ "desc": "Returns an array containing only the values in the `array` parameter that satisfy the `function` predicate.\n\nThe `function` that is supplied as the second parameter must have the following signature:\n\n`function(value [, index [, array]])`"
185
185
  },
186
186
  "$reduce": {
187
- "args":"array, function [, init]",
188
- "desc":"Returns an aggregated value derived from applying the `function` parameter successively to each value in `array` in combination with the result of the previous application of the function.\n\nThe function must accept two arguments, and behaves like an infix operator between each value within the `array`. The signature of `function` must be of the form: `myfunc($accumulator, $value[, $index[, $array]])`\n\nThe optional `init` parameter is used as the initial value in the aggregation."
187
+ "args": "array, function [, init]",
188
+ "desc": "Returns an aggregated value derived from applying the `function` parameter successively to each value in `array` in combination with the result of the previous application of the function.\n\nThe function must accept two arguments, and behaves like an infix operator between each value within the `array`. The signature of `function` must be of the form: `myfunc($accumulator, $value[, $index[, $array]])`\n\nThe optional `init` parameter is used as the initial value in the aggregation."
189
189
  },
190
190
  "$flowContext": {
191
191
  "args": "string[, string]",