@node-red/editor-client 3.0.1 → 3.1.0-beta.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.
Files changed (34) hide show
  1. package/locales/de/editor.json +44 -33
  2. package/locales/de/infotips.json +0 -0
  3. package/locales/de/jsonata.json +0 -0
  4. package/locales/en-US/editor.json +31 -6
  5. package/locales/en-US/infotips.json +0 -0
  6. package/locales/en-US/jsonata.json +0 -0
  7. package/locales/ja/editor.json +37 -9
  8. package/locales/ko/editor.json +0 -0
  9. package/locales/ko/infotips.json +0 -0
  10. package/locales/ko/jsonata.json +0 -0
  11. package/locales/ru/editor.json +0 -0
  12. package/locales/ru/infotips.json +0 -0
  13. package/locales/ru/jsonata.json +0 -0
  14. package/package.json +1 -1
  15. package/public/red/about +111 -0
  16. package/public/red/red.js +1781 -557
  17. package/public/red/red.min.js +4 -3
  18. package/public/red/style.min.css +1 -1
  19. package/public/red/tours/3.0/images/context-menu.png +0 -0
  20. package/public/red/tours/{images → 3.0/images}/continuous-search.png +0 -0
  21. package/public/red/tours/{images → 3.0/images}/debug-path-tooltip.png +0 -0
  22. package/public/red/tours/{images → 3.0/images}/junction-quick-add.png +0 -0
  23. package/public/red/tours/{images → 3.0/images}/junction-slice.gif +0 -0
  24. package/public/red/tours/{images → 3.0/images}/split-wire-with-links.gif +0 -0
  25. package/public/red/tours/3.0/welcome.js +155 -0
  26. package/public/red/tours/images/context-menu.png +0 -0
  27. package/public/red/tours/images/global-env-vars.png +0 -0
  28. package/public/red/tours/images/hiding-flows.png +0 -0
  29. package/public/red/tours/images/locking-flows.png +0 -0
  30. package/public/red/tours/images/mermaid.png +0 -0
  31. package/public/red/tours/welcome.js +59 -98
  32. package/public/types/node-red/func.d.ts +3 -0
  33. package/public/vendor/mermaid/mermaid.min.js +1284 -0
  34. package/public/vendor/vendor.js +4 -3
@@ -105,7 +105,7 @@
105
105
  "search": "Flows durchsuchen",
106
106
  "searchInput": "Flows durchsuchen",
107
107
  "subflows": "Subflow",
108
- "createSubflow": "Subflow",
108
+ "createSubflow": "Hinzufügen",
109
109
  "selectionToSubflow": "Auswahl in Subflow umwandeln",
110
110
  "flows": "Flow",
111
111
  "add": "Hinzufügen",
@@ -152,7 +152,8 @@
152
152
  "zoom-in": "Vergrößern",
153
153
  "search-flows": "Flows durchsuchen",
154
154
  "search-prev": "Vorherige",
155
- "search-next": "Nächste"
155
+ "search-next": "Nächste",
156
+ "search-counter": "\"__term__\" __result__ von __count__"
156
157
  },
157
158
  "user": {
158
159
  "loggedInAs": "Angemeldet als __name__",
@@ -168,7 +169,11 @@
168
169
  }
169
170
  },
170
171
  "notification": {
171
- "warning": "<strong>Warnung:</strong> __message__",
172
+ "state": {
173
+ "flowsStopped": "Flows gestoppt",
174
+ "flowsStarted": "Flows gestartet"
175
+ },
176
+ "warning": "<strong>Warnung</strong>: __message__",
172
177
  "warnings": {
173
178
  "undeployedChanges": "Node hat nicht übernommene (deploy) Änderungen",
174
179
  "nodeActionDisabled": "Node-Aktionen deaktiviert",
@@ -177,15 +182,15 @@
177
182
  "missing-modules": "<p>Flows angehalten aufgrund fehlender Module</p>",
178
183
  "safe-mode": "<p>Flows sind im abgesicherten Modus gestoppt.</p><p>Flows können bearbeitet und übernommen (deploy) werden, um sie neu zu starten.</p>",
179
184
  "restartRequired": "Node-RED muss neu gestartet werden, damit die Module nach Upgrade aktiviert werden",
180
- "credentials_load_failed": "<p>Flows gestoppt, da die Berechtigungen nicht entschlüsselt werden konnten.</p><p>Die Datei mit dem Flow-Berechtigungen ist verschlüsselt, aber der Schlüssel des Projekts fehlt oder ist ungültig.</p>",
181
- "credentials_load_failed_reset": "<p>Die Berechtigungen konnten nicht entschlüsselt werden.</p><p>Die Datei mit den Flow-Berechtigungen ist verschlüsselt, aber der Schlüssel des Projekts fehlt oder ist ungültig.</p><p>Die Datei mit den Flow-Berechtigungen wird bei der nächsten Übernahme (deploy) zurückgesetzt. Alle vorhandenen Flow-Berechtigungen werden gelöscht.</p>",
185
+ "credentials_load_failed": "<p>Flows gestoppt, da die Credentials nicht entschlüsselt werden konnten.</p><p>Die Datei mit den Flow-Credentials ist verschlüsselt, aber der Schlüssel des Projekts fehlt oder ist ungültig.</p>",
186
+ "credentials_load_failed_reset": "<p>Die Credentials konnten nicht entschlüsselt werden.</p><p>Die Datei mit den Flow-Credentials ist verschlüsselt, aber der Schlüssel des Projekts fehlt oder ist ungültig.</p><p>Die Datei mit den Flow-Credentials wird bei der nächsten Übernahme (deploy) zurückgesetzt. Alle vorhandenen Flow-Credentials werden gelöscht.</p>",
182
187
  "missing_flow_file": "<p>Die Flow-Datei des Projekts wurde nicht gefunden.</p><p>Das Projekt ist nicht mit einer Flow-Datei konfiguriert.</p>",
183
188
  "missing_package_file": "<p>Die Paket-Datei des Projekts wurde nicht gefunden.</p><p>In dem Projekt fehlt die 'package.json'-Datei.</p>",
184
189
  "project_empty": "<p>Das Projekt ist leer.</p><p>Soll ein Standardsatz an Projektdateien erstellen werden?<br/>Andernfalls müssen die Dateien manuell außerhalb des Editors dem Projekt hinzugefügt werden.</p>",
185
190
  "project_not_found": "<p>Das Projekt '__project__' wurde nicht gefunden.</p>",
186
191
  "git_merge_conflict": "<p>Der automatische Merge der Änderungen ist fehlgeschlagen.</p><p>Die Merge-Konflikte müssen behoben und die Ergebnisse ins Repository übertragen werden (commit).</p>"
187
192
  },
188
- "error": "<strong>Fehler:</strong> __message__",
193
+ "error": "<strong>Fehler</strong>: __message__",
189
194
  "errors": {
190
195
  "lostConnection": "Verbindung zum Server verloren. Verbindung wird erneut hergestellt ...",
191
196
  "lostConnectionReconnect": "Verbindung zum Server verloren. Wiederherstellung der Verbindung in __time__s.",
@@ -203,7 +208,7 @@
203
208
  "pull": "Projekt '__project__' erneut geladen",
204
209
  "revert": "Änderungen im Projekt '__project__' rückgängig gemacht",
205
210
  "merge-complete": "Git-Merge abgeschlossen",
206
- "setupCredentials": "Berechtigungen einrichten",
211
+ "setupCredentials": "Credentials einrichten",
207
212
  "setupProjectFiles": "Projektdateien einrichten",
208
213
  "no": "Nein, Danke",
209
214
  "createDefault": "Standardprojektdateien erstellen",
@@ -211,7 +216,7 @@
211
216
  },
212
217
  "label": {
213
218
  "manage-project-dep": "Projektabhängigkeiten verwalten",
214
- "setup-cred": "Berechtigungen einrichten",
219
+ "setup-cred": "Credentials einrichten",
215
220
  "setup-project": "Projektdateien einrichten",
216
221
  "create-default-package": "Standardpaketdatei erstellen",
217
222
  "no-thanks": "Nein, Danke",
@@ -295,6 +300,10 @@
295
300
  "modifiedFlowsDesc": "Übernimmt nur Flows, die geänderte Nodes enthalten",
296
301
  "modifiedNodes": "Geänderte Nodes",
297
302
  "modifiedNodesDesc": "Übernimmt nur Nodes, die sich geändert haben",
303
+ "startFlows": "Start",
304
+ "startFlowsDesc": "Flows starten",
305
+ "stopFlows": "Stop",
306
+ "stopFlowsDesc": "Flows stoppen",
298
307
  "restartFlows": "Flows neustarten",
299
308
  "restartFlowsDesc": "Startet die aktuell übernommenen Flows (ohne vorheriges Deploy)",
300
309
  "successfulDeploy": "Erfolgreich übernommen (deploy)",
@@ -376,7 +385,7 @@
376
385
  "confirmDelete": "Sind Sie sicher mit dem Löschen dieses Subflows?",
377
386
  "info": "Beschreibung",
378
387
  "category": "Kategorie",
379
- "module": "Module",
388
+ "module": "Modul",
380
389
  "license": "Lizenz",
381
390
  "licenseNone": "Keine",
382
391
  "licenseOther": "Andere",
@@ -434,7 +443,7 @@
434
443
  "icon": "Icon",
435
444
  "inputType": "Eingangstyp",
436
445
  "selectType": "Wähle Typen ...",
437
- "loadCredentials": "Lade Node-Berechtigungen",
446
+ "loadCredentials": "Lade Node-Credentials",
438
447
  "inputs": {
439
448
  "input": "Eingang",
440
449
  "select": "Auswahl",
@@ -450,7 +459,7 @@
450
459
  "json": "JSON",
451
460
  "bin": "buffer",
452
461
  "env": "Umgebungsvariable",
453
- "cred": "Berechtigung"
462
+ "cred": "Credentials"
454
463
  },
455
464
  "menu": {
456
465
  "input": "Eingang",
@@ -470,7 +479,7 @@
470
479
  "errors": {
471
480
  "scopeChange": "Wenn Sie den Geltungsbereich (scope) ändern, wird er für Nodes in anderen Flows nicht verfügbar sein",
472
481
  "invalidProperties": "Ungültige Eigenschaften:",
473
- "credentialLoadFailed": "Laden der Node-Berechtigungen fehlgeschlagen"
482
+ "credentialLoadFailed": "Laden der Node-Credentials fehlgeschlagen"
474
483
  }
475
484
  },
476
485
  "keyboard": {
@@ -683,7 +692,8 @@
683
692
  "showHelp": "Hilfe zeigen",
684
693
  "showInOutline": "Zeige im Editor",
685
694
  "showTopics": "Zeige Hilfethemen",
686
- "noHelp": "Kein Hilfethema ausgewählt"
695
+ "noHelp": "Kein Hilfethema ausgewählt",
696
+ "changeLog": "Änderungsprotokoll"
687
697
  },
688
698
  "config": {
689
699
  "name": "Konfigurations-Node",
@@ -737,7 +747,7 @@
737
747
  "addToProject": "Zu Projekt hinzufügen",
738
748
  "files": "Dateien",
739
749
  "flow": "Flow",
740
- "credentials": "Berechtigungen",
750
+ "credentials": "Credentials",
741
751
  "package": "Paket",
742
752
  "packageCreate": "Datei wird erstellt beim Speichern der Änderungen",
743
753
  "fileNotExist": "Datei existiert nicht",
@@ -750,7 +760,7 @@
750
760
  "changeTheEncryptionKey": "Schlüssel ändern",
751
761
  "currentKey": "Aktueller Schlüssel",
752
762
  "newKey": "Neuer Schlüssel",
753
- "credentialsAlert": "Dadurch werden alle vorhandenen Berechtigungen gelöscht",
763
+ "credentialsAlert": "Dadurch werden alle vorhandenen Credentials gelöscht",
754
764
  "versionControl": "Versionsverwaltung (Git)",
755
765
  "branches": "Branches",
756
766
  "noBranches": "Keine Branches",
@@ -886,7 +896,7 @@
886
896
  "date": "timestamp",
887
897
  "jsonata": "JSONata",
888
898
  "env": "Umgebungsvariable",
889
- "cred": "Berechtigung"
899
+ "cred": "Credentials"
890
900
  }
891
901
  },
892
902
  "editableList": {
@@ -1026,7 +1036,7 @@
1026
1036
  "passphrase": "Passphrase",
1027
1037
  "ssh-key-desc": "Bevor Sie ein Repository über SSH lokal klonen können, müssen Sie einen SSH-Schlüssel hinzufügen, um auf diesen zugreifen zu können",
1028
1038
  "ssh-key-add": "SSH-Schlüssel hinzufügen",
1029
- "credential-key": "Schlüssel für Berechtigungen",
1039
+ "credential-key": "Schlüssel für Credentials",
1030
1040
  "cant-get-ssh-key": "Fehler! Der ausgewählte SSH-Schlüsselpfad kann nicht abgerufen werden",
1031
1041
  "already-exists2": "bereits vorhanden",
1032
1042
  "git-error": "Git-Fehler",
@@ -1038,27 +1048,27 @@
1038
1048
  "create": "Erstellen Sie Ihre Projektdateien",
1039
1049
  "desc0": "Ein Projekt enthält Ihre Flow-Dateien, eine README-Datei und die 'package.json'-Datei.",
1040
1050
  "desc1": "Es kann alle anderen Dateien enthalten, die im Git-Repository verwaltet werden sollen.",
1041
- "desc2": "Ihre vorhandenen Flow- und Berechtigungs-Dateien werden in das Projekt kopiert.",
1051
+ "desc2": "Ihre vorhandenen Flow- und Credential-Dateien werden in das Projekt kopiert.",
1042
1052
  "flow-file": "Flow-Datei",
1043
- "credentials-file": "Datei mit Berechtigungen"
1053
+ "credentials-file": "Datei mit Credentials"
1044
1054
  },
1045
1055
  "encryption-config": {
1046
- "setup": "Einrichtung der Verschlüsselung Ihrer Datei mit den Berechtigungen",
1047
- "desc0": "Die Datei mit den Flow-Berechtigungen kann verschlüsselt werden, um ihren Inhalt zu schützen.",
1048
- "desc1": "Wenn Sie diese Berechtigungen in einem öffentlichen Repository speichern möchten, müssen Sie sie mit einen geheimen Schlüsselausdruck verschlüsseln.",
1049
- "desc2": "Die Datei mit den Flow-Berechtigungen ist derzeit nicht verschlüsselt.",
1056
+ "setup": "Einrichtung der Verschlüsselung Ihrer Datei mit den Credentials",
1057
+ "desc0": "Die Datei mit den Flow-Credentials kann verschlüsselt werden, um ihren Inhalt zu schützen.",
1058
+ "desc1": "Wenn Sie diese Credentials in einem öffentlichen Repository speichern möchten, müssen Sie sie mit einen geheimen Schlüsselausdruck verschlüsseln.",
1059
+ "desc2": "Die Datei mit den Flow-Credentials ist derzeit nicht verschlüsselt.",
1050
1060
  "desc3": "D.h. ihr Inhalt (z.B. Passwörter und Zugriffs-Tokens) kann von jedem mit Zugriff auf die Datei gelesen werden.",
1051
- "desc4": "Wenn Sie diese Berechtigungen in einen öffentlichen Repository speichern möchten, müssen Sie diese verschlüsseln, indem Sie einen geheimen Schlüsselausdruck eingeben.",
1052
- "desc5": "Ihre Datei mit den Flow-Berechtigungen wird derzeit mit dem Eintrag 'credentialSecret' Ihrer Einstellungsdatei als Schlüssel verschlüsselt.",
1053
- "desc6": "Die Datei mit den Flow-Berechtigungen wird derzeit mit einem vom System generierten Schlüssel verschlüsselt. Sie sollten einen neuen geheimen Schlüssel für dieses Projekt vorgeben.",
1061
+ "desc4": "Wenn Sie diese Credentials in einen öffentlichen Repository speichern möchten, müssen Sie diese verschlüsseln, indem Sie einen geheimen Schlüsselausdruck eingeben.",
1062
+ "desc5": "Ihre Datei mit den Flow-Credentials wird derzeit mit dem Eintrag 'credentialSecret' Ihrer Einstellungsdatei als Schlüssel verschlüsselt.",
1063
+ "desc6": "Die Datei mit den Flow-Credentials wird derzeit mit einem vom System generierten Schlüssel verschlüsselt. Sie sollten einen neuen geheimen Schlüssel für dieses Projekt vorgeben.",
1054
1064
  "desc7": "Der Schlüssel wird separat von den Projektdateien gespeichert. Sie müssen den Schlüssel angeben, damit dieses Projekt auch in einem anderen Node-RED-System verwendet werden kann.",
1055
- "credentials": "Berechtigung",
1065
+ "credentials": "Credentials",
1056
1066
  "enable": "Verschlüsselung aktivieren",
1057
1067
  "disable": "Verschlüsselung deaktivieren",
1058
1068
  "disabled": "deaktiviert",
1059
1069
  "copy": "Vorhandenen Schlüssel ersetzen",
1060
1070
  "use-custom": "Eigenen Schlüssel verwenden",
1061
- "desc8": "Die Datei mit den Berechtigungen wird nicht verschlüsselt, und ihr Inhalt kann leicht gelesen werden",
1071
+ "desc8": "Die Datei mit den Credentials wird nicht verschlüsselt und ihr Inhalt kann leicht gelesen werden",
1062
1072
  "create-project-files": "Projektdateien erstellen",
1063
1073
  "create-project": "Projekt erstellen",
1064
1074
  "already-exists": "bereits vorhanden",
@@ -1083,12 +1093,12 @@
1083
1093
  "desc": "Beschreibung",
1084
1094
  "opt": "Optional",
1085
1095
  "flow-file": "Flow-Datei",
1086
- "credentials": "Berechtigungen",
1096
+ "credentials": "Credentials",
1087
1097
  "enable-encryption": "Verschlüsselung aktivieren",
1088
1098
  "disable-encryption": "Verschlüsselung deaktivieren",
1089
1099
  "encryption-key": "Schlüssel",
1090
- "desc0": "Eine Floskel, mit der Sie Ihre Berechtigungen schützen",
1091
- "desc1": "Die Datei mit den Berechtigungen wird nicht verschlüsselt, und ihr Inhalt kann leicht gelesen werden",
1100
+ "desc0": "Eine Ausdruck, mit der Sie Ihre Credentials schützen",
1101
+ "desc1": "Die Datei mit den Credentials wird nicht verschlüsselt und ihr Inhalt kann leicht gelesen werden",
1092
1102
  "git-url": "Git-Repository-URL",
1093
1103
  "protocols": "https://, ssh:// oder file://",
1094
1104
  "auth-failed": "Authentifizierung fehlgeschlagen",
@@ -1098,7 +1108,7 @@
1098
1108
  "passphrase": "Passphrase",
1099
1109
  "desc2": "Bevor Sie ein Repository über SSH klonen können, müssen Sie einen SSH-Schlüssel hinzufügen, um auf diesen zu zugreifen",
1100
1110
  "add-ssh-key": "Einen SSH-Schlüssel hinzufügen",
1101
- "credentials-encryption-key": "Schlüssel für Berechtigungen",
1111
+ "credentials-encryption-key": "Schlüssel für Credentials",
1102
1112
  "already-exists-2": "bereits vorhanden",
1103
1113
  "git-error": "Git-Fehler",
1104
1114
  "con-failed": "Verbindung fehlgeschlagen",
@@ -1156,7 +1166,8 @@
1156
1166
  "tourGuide": {
1157
1167
  "takeATour": "Tour starten",
1158
1168
  "start": "Start",
1159
- "next": "Nächste"
1169
+ "next": "Nächste",
1170
+ "welcomeTours": "Welcome Tours"
1160
1171
  },
1161
1172
  "diagnostics": {
1162
1173
  "title": "System-Informationen"
File without changes
File without changes
@@ -23,7 +23,9 @@
23
23
  "position": "Position",
24
24
  "enable": "Enable",
25
25
  "disable": "Disable",
26
- "upload": "Upload"
26
+ "upload": "Upload",
27
+ "lock": "Lock",
28
+ "unlock": "Unlock"
27
29
  },
28
30
  "type": {
29
31
  "string": "string",
@@ -53,22 +55,30 @@
53
55
  "confirmDelete": "Confirm delete",
54
56
  "delete": "Are you sure you want to delete '__label__'?",
55
57
  "dropFlowHere": "Drop the flow here",
58
+ "dropImageHere": "Drop the image here",
56
59
  "addFlow": "Add flow",
57
60
  "addFlowToRight": "Add flow to the right",
61
+ "closeFlow": "Close flow",
58
62
  "hideFlow": "Hide flow",
59
63
  "hideOtherFlows": "Hide other flows",
60
- "showAllFlows": "Show all flows",
64
+ "showAllFlows": "Show all flows (__count__ hidden)",
61
65
  "hideAllFlows": "Hide all flows",
62
66
  "hiddenFlows": "List __count__ hidden flow",
63
67
  "hiddenFlows_plural": "List __count__ hidden flows",
64
- "showLastHiddenFlow": "Show last hidden flow",
68
+ "showLastHiddenFlow": "Reopen hidden flow",
65
69
  "listFlows": "List flows",
66
70
  "listSubflows": "List subflows",
67
71
  "status": "Status",
68
72
  "enabled": "Enabled",
69
73
  "disabled": "Disabled",
70
74
  "info": "Description",
71
- "selectNodes": "Click nodes to select"
75
+ "selectNodes": "Click nodes to select",
76
+ "enableFlow": "Enable flow",
77
+ "disableFlow": "Disable flow",
78
+ "lockFlow": "Lock flow",
79
+ "unlockFlow": "Unlock flow",
80
+ "moveToStart": "Move flow to start",
81
+ "moveToEnd": "Move flow to end"
72
82
  },
73
83
  "menu": {
74
84
  "label": {
@@ -101,6 +111,7 @@
101
111
  "displayStatus": "Show node status",
102
112
  "displayConfig": "Configuration nodes",
103
113
  "import": "Import",
114
+ "importExample": "Import Example Flow",
104
115
  "export": "Export",
105
116
  "search": "Search flows",
106
117
  "searchInput": "search your flows",
@@ -497,6 +508,7 @@
497
508
  "addRemoveNode": "Add/remove node from selection",
498
509
  "editSelected": "Edit selected node",
499
510
  "deleteSelected": "Delete selected nodes or link",
511
+ "deleteReconnect": "Delete and Reconnect",
500
512
  "importNode": "Import nodes",
501
513
  "exportNode": "Export nodes",
502
514
  "nudgeNode": "Move selected nodes (1px)",
@@ -683,7 +695,9 @@
683
695
  "empty": "empty",
684
696
  "globalConfig": "Global Configuration Nodes",
685
697
  "triggerAction": "Trigger action",
686
- "find": "Find in workspace"
698
+ "find": "Find in workspace",
699
+ "copyItemUrl": "Copy item url",
700
+ "copyURL2Clipboard": "Copied url to clipboard"
687
701
  },
688
702
  "help": {
689
703
  "name": "Help",
@@ -936,6 +950,9 @@
936
950
  "invalid-expr": "Invalid JSONata expression:\n __message__",
937
951
  "invalid-msg": "Invalid example JSON message:\n __message__",
938
952
  "context-unsupported": "Cannot test context functions\n $flowContext or $globalContext",
953
+ "env-unsupported": "Cannot test $env function",
954
+ "moment-unsupported": "Cannot test $moment function",
955
+ "clone-unsupported": "Cannot test $clone function",
939
956
  "eval": "Error evaluating expression:\n __message__"
940
957
  }
941
958
  },
@@ -981,7 +998,10 @@
981
998
  "quote": "Quote",
982
999
  "link": "Link",
983
1000
  "horizontal-rule": "Horizontal rule",
984
- "toggle-preview": "Toggle preview"
1001
+ "toggle-preview": "Toggle preview",
1002
+ "mermaid": {
1003
+ "summary": "Mermaid Diagram"
1004
+ }
985
1005
  },
986
1006
  "bufferEditor": {
987
1007
  "title": "Buffer editor",
@@ -1203,5 +1223,10 @@
1203
1223
  "node": "Node",
1204
1224
  "junction": "Junction",
1205
1225
  "linkNodes": "Link Nodes"
1226
+ },
1227
+ "env-var": {
1228
+ "environment": "Environment",
1229
+ "header": "Global Environment Variables",
1230
+ "revert": "Revert"
1206
1231
  }
1207
1232
  }
File without changes
File without changes
@@ -23,7 +23,9 @@
23
23
  "position": "配置",
24
24
  "enable": "有効",
25
25
  "disable": "無効",
26
- "upload": "アップロード"
26
+ "upload": "アップロード",
27
+ "lock": "固定",
28
+ "unlock": "固定を解除"
27
29
  },
28
30
  "type": {
29
31
  "string": "文字列",
@@ -53,8 +55,10 @@
53
55
  "confirmDelete": "削除の確認",
54
56
  "delete": "本当に '__label__' を削除しますか?",
55
57
  "dropFlowHere": "ここにフローをドロップしてください",
58
+ "dropImageHere": "ここに画像ファイルをドロップしてください",
56
59
  "addFlow": "フローの追加",
57
60
  "addFlowToRight": "右側にフローを追加",
61
+ "closeFlow": "フローを閉じる",
58
62
  "hideFlow": "フローを非表示",
59
63
  "hideOtherFlows": "他のフローを非表示",
60
64
  "showAllFlows": "全てのフローを表示",
@@ -68,7 +72,13 @@
68
72
  "enabled": "有効",
69
73
  "disabled": "無効",
70
74
  "info": "詳細",
71
- "selectNodes": "ノードをクリックして選択"
75
+ "selectNodes": "ノードをクリックして選択",
76
+ "enableFlow": "フローを有効化",
77
+ "disableFlow": "フローを無効化",
78
+ "lockFlow": "フローを固定",
79
+ "unlockFlow": "フローの固定を解除",
80
+ "moveToStart": "フローを先頭へ移動",
81
+ "moveToEnd": "フローを最後へ移動"
72
82
  },
73
83
  "menu": {
74
84
  "label": {
@@ -101,6 +111,7 @@
101
111
  "displayStatus": "ノードのステータスを表示",
102
112
  "displayConfig": "設定ノード",
103
113
  "import": "読み込み",
114
+ "importExample": "フロー例を読み込み",
104
115
  "export": "書き出し",
105
116
  "search": "ノードを検索",
106
117
  "searchInput": "ノードを検索",
@@ -497,6 +508,7 @@
497
508
  "addRemoveNode": "ノードの選択、選択解除",
498
509
  "editSelected": "選択したノードを編集",
499
510
  "deleteSelected": "選択したノードや接続を削除",
511
+ "deleteReconnect": "削除と再接続",
500
512
  "importNode": "フローの読み込み",
501
513
  "exportNode": "フローの書き出し",
502
514
  "nudgeNode": "選択したノードを移動(移動量小)",
@@ -683,7 +695,9 @@
683
695
  "empty": "空",
684
696
  "globalConfig": "グローバル設定ノード",
685
697
  "triggerAction": "アクションを実行",
686
- "find": "ワークスペース内を検索"
698
+ "find": "ワークスペース内を検索",
699
+ "copyItemUrl": "要素のURLをコピー",
700
+ "copyURL2Clipboard": "URLをクリップボードにコピーしました"
687
701
  },
688
702
  "help": {
689
703
  "name": "ヘルプ",
@@ -935,8 +949,11 @@
935
949
  "errors": {
936
950
  "invalid-expr": "不正なJSONata式:\n __message__",
937
951
  "invalid-msg": "不正なJSONメッセージ例:\n __message__",
938
- "context-unsupported": "$flowContext や $globalContextの\nコンテキスト機能をテストできません",
939
- "eval": "表現評価エラー:\n __message__"
952
+ "context-unsupported": "$flowContext や $globalContextの\nコンテキスト関数をテストできません",
953
+ "env-unsupported": "$env関数はテストできません",
954
+ "moment-unsupported": "$moment関数はテストできません",
955
+ "clone-unsupported": "$clone関数はテストできません",
956
+ "eval": "式評価エラー:\n __message__"
940
957
  }
941
958
  },
942
959
  "monaco": {
@@ -981,7 +998,10 @@
981
998
  "quote": "引用",
982
999
  "link": "リンク",
983
1000
  "horizontal-rule": "区切り線",
984
- "toggle-preview": "プレビュー表示切替え"
1001
+ "toggle-preview": "プレビュー表示切替え",
1002
+ "mermaid": {
1003
+ "summary": "Mermaid図"
1004
+ }
985
1005
  },
986
1006
  "bufferEditor": {
987
1007
  "title": "バッファエディタ",
@@ -1168,8 +1188,7 @@
1168
1188
  "takeATour": "ツアーを開始",
1169
1189
  "start": "開始",
1170
1190
  "next": "次へ",
1171
- "welcomeTours": "ウェルカムツアー",
1172
- "tours": "ツアー"
1191
+ "welcomeTours": "ウェルカムツアー"
1173
1192
  },
1174
1193
  "diagnostics": {
1175
1194
  "title": "システム情報"
@@ -1205,6 +1224,11 @@
1205
1224
  "junction": "分岐点",
1206
1225
  "linkNodes": "Linkノード"
1207
1226
  },
1227
+ "env-var": {
1228
+ "environment": "環境変数",
1229
+ "header": "大域環境変数",
1230
+ "revert": "破棄"
1231
+ },
1208
1232
  "action-list": {
1209
1233
  "toggle-show-tips": "ヒント表示切替",
1210
1234
  "show-about": "Node-REDの説明を表示",
@@ -1348,6 +1372,10 @@
1348
1372
  "show-project-settings": "プロジェクト設定を表示",
1349
1373
  "show-version-control-tab": "バージョンコントロールタブを表示",
1350
1374
  "start-flows": "フローを開始",
1351
- "stop-flows": "フローを停止"
1375
+ "stop-flows": "フローを停止",
1376
+ "copy-item-url": "要素のURLをコピー",
1377
+ "copy-item-edit-url": "要素の編集URLをコピー",
1378
+ "move-flow-to-start": "フローを先頭に移動",
1379
+ "move-flow-to-end": "フローを末尾に移動"
1352
1380
  }
1353
1381
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/editor-client",
3
- "version": "3.0.1",
3
+ "version": "3.1.0-beta.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/public/red/about CHANGED
@@ -1,3 +1,114 @@
1
+ #### 3.1.0-beta.1: Beta Release
2
+
3
+
4
+ Editor
5
+
6
+ - NEW: Locking Flows (#3938) @knolleary
7
+ - NEW: Improve UX around hiding flows via context menu (#3930) @knolleary
8
+ - NEW: Add support for inline image in markdown editor by drag and drop of an image file (#4006) @HiroyasuNishiyama
9
+ - NEW: Add support for mermaid diagram to markdown editor (#4007) @HiroyasuNishiyama
10
+ - NEW: Support uri fragments for nodes and groups including edit support (#3870) @knolleary
11
+ - NEW: Add global environment variable feature (#3941) @HiroyasuNishiyama
12
+
13
+ - Remember compact/pretty flow export user choice (#3974) @Steve-Mcl
14
+ - fix .red-ui-notification class (#4035) @xiaobinqt
15
+ - Fix border radius on Modules list header (#4038) @bonanitech
16
+ - fix workspace reference error in case of empty tabs (#4029) @HiroyasuNishiyama
17
+ - Disable delete tab menu when single tab exists (#4030) @HiroyasuNishiyama
18
+ - Disable hide all menu if all tabs hidden (#4031) @HiroyasuNishiyama
19
+ - fix hide subflow tooltip (#4033) @HiroyasuNishiyama
20
+ - Fix disabled menu items in project feature (#4027) @kazuhitoyokoi
21
+ - Let themes change radialMenu text colors (#3995) @bonanitech
22
+ - Add Japanese translations for v3.0.3 (#4012) @kazuhitoyokoi
23
+ - Add Japanese translation for v3.1.0-beta.0 (#3997) @kazuhitoyokoi
24
+ - Add Japanese translation for v3.1.0-beta.0 (#3916) @kazuhitoyokoi
25
+ - Hide subflow category after deleting subflow (#3980) @kazuhitoyokoi
26
+ - Prevent dbl-click opening node edit dialog with text selected (#3970) @knolleary
27
+ - Handle replacing unknown node inside group or subflow (#3921) @knolleary
28
+ - Fix #3939, red border red-ui-typedInput-container (#3949) @Steveorevo
29
+ - i18n item URL copy notification & add Japanese message (#3946) @HiroyasuNishiyama
30
+ - add Japanese message for item url copy actions (#3947) @HiroyasuNishiyama
31
+ - Fix autocomplete entry for responseUrl (#3884) @knolleary
32
+ - Fix Japanese translation for JSONata editor (#3872) @HiroyasuNishiyama
33
+ - Fix search type with spaces (#3841) @Steve-Mcl
34
+ - Fix error hanndling of JSONata expression editor for extended functions (#3871) @HiroyasuNishiyama
35
+ - Add button type to the adding SSH key button (#3866) @kazuhitoyokoi
36
+ - Check radio button as default in project dialog (#3879) @kazuhitoyokoi
37
+ - Add $clone as supported function (#3874) @HiroyasuNishiyama
38
+ - Env var jsonata (#3807) @HiroyasuNishiyama
39
+ - Add Japanese translation for v3.0.2 (#3852) @kazuhitoyokoi
40
+
41
+ Runtime
42
+
43
+ - Force IPv4 name resolution to have priority (#4019) @dceejay
44
+ - Fix async loading of modules containing both nodes and plugins (#3999) @knolleary
45
+ - Use main branch as default in project feature (#4036) @kazuhitoyokoi
46
+ - Rename package var to avoid strict mode error (#4020) @knolleary
47
+ - Fix typos in settings.js (#4013) @ypid
48
+ - Ensure credentials object is removed before returning node in getFlow request (#3971) @knolleary
49
+ - Ignore commit error in project feature (#3987) @kazuhitoyokoi
50
+ - Update dependencies (#3969) @knolleary
51
+ - Add check that node sends object rather than primitive type (#3909) @knolleary
52
+ - Ensure key_path is quoted in GIT_SSH_COMMAND in case of spaces in pathname (#3912) @knolleary
53
+ - Fix nodesDir scan when node package has js/html in sub dir to package.json (#3867) @Steve-Mcl
54
+ - Fix file permissions (#3917) @kazuhitoyokoi
55
+ - ci: add minimum GitHub token permissions for workflows (#3907) @boahc077
56
+
57
+ Nodes
58
+
59
+ - Catch: fix typo in catch.html (#3965) @we11adam
60
+ - Change: Fix change node overwriting msg with itself (#3899) @dceejay
61
+ - Comment node: Clarify where the text will appear (#4004) @dirkjanfaber
62
+ - CSV: change replace to replaceAll (#3990) @dceejay
63
+ - CSV node: check header properties for ' and " (#3920) @dceejay
64
+ - CSV: Fix for CSV undefined property (#3906) @dceejay
65
+ - Delay: let delay node handle both flush then reset (#3898) @dceejay
66
+ - Function: Limit number of ports in function node (#3886) @kazuhitoyokoi
67
+ - Function: Remove dot from variable name for external module in function node (#3880) @kazuhitoyokoi
68
+ - Function: add function node monaco types util and promisify (#3868) @Steve-Mcl
69
+ - HTTP In: Ensure msg.req.headers is enumerable (#3908) @knolleary
70
+ - HTTP Request: Support form-data arrays (#3991) @hardillb
71
+ - HTTP Request: Fix httprequest tests to be more lenient on error message (#3922) @knolleary
72
+ - HTTP Request: Add missing property to node object HTTPRequest (#3842) @hardillb
73
+ - HTTP Request/Response: Support sortable list on property UI of http request and http response nodes (#3857) @kazuhitoyokoi
74
+ - HTTP Response: Ensure statusCode is a number (#3894) @hardillb
75
+ - Inject: Allow Inject node to work with async context stores (#4021) @knolleary
76
+ - Join/Batch: Add count to join and batch node labels (#4028) @dceejay
77
+ - MQTT: Fix birth topic handling in MQTT node (#3905) @Steve-Mcl
78
+ - MQTT: Fix pull-down menus of MQTT configuration node (#3890) @kazuhitoyokoi
79
+ - MQTT: Prevent invalid mqtt birth topic crashing node-red (#3869) @Steve-Mcl
80
+ - MQTT: ensure sessionExpiry(Interval) is applied (#3840) @Steve-Mcl
81
+ - MQTT: Fix mqtt nodes not reconnecting on modified-flows deploy (#3992) @knolleary
82
+ - MQTT: fix single subscription mqtt node status (#3966) @Steve-Mcl
83
+ - Range: Add drop mode to range node (#3935) @dceejay
84
+ - Remove done from describe (#3873) @HiroyasuNishiyama
85
+ - Split node: avoid duplicate done call for buffer split (#4000) @knolleary
86
+ - Status: Fix typo in 25-status.html (#3981) @kazuhitoyokoi
87
+ - TCP Node: ensure newline substitution applies to whole message (#4009) @dceejay
88
+ - Template: Add information about environment variable to template node (#3882) @kazuhitoyokoi
89
+ - Trigger: Hide trigger node repeat send option if sending nothing (#4023) @dceejay
90
+ - Watch: fix watch node test on MacOS/ARM (#3942) @HiroyasuNishiyama
91
+
92
+ #### 3.0.2: Maintenance Release
93
+
94
+ Editor
95
+
96
+ - Fix workspace chart bottom property (#3812) @bonanitech
97
+ - Update german translation (#3802) @Dennis14e
98
+ - Support color reset to the default in subflow and group (#3801) @kazuhitoyokoi
99
+ - Allow generateNodeNames to handle names containing regex control chars (#3817) @knolleary
100
+ - Hide scrollbars until they're needed (#3808) @bonanitech
101
+ - Include junctions/groups when exporting subflows plus related fixes (#3816) @knolleary
102
+ - remove console.log (#3820) @Steve-Mcl
103
+
104
+ Runtime
105
+
106
+ - Register subflow module instance node with parent flow (#3818) @knolleary
107
+
108
+ Nodes
109
+
110
+ - HTTP Request: Allow HTTP Headers not in spec (#3776) @hardillb
111
+
1
112
  #### 3.0.1: Maintenance Release
2
113
 
3
114
  Editor