@node-red/nodes 2.2.1 → 3.0.0-beta.2

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 (54) hide show
  1. package/99-sample.html.demo +1 -1
  2. package/core/common/05-junction.html +5 -0
  3. package/core/common/05-junction.js +12 -0
  4. package/core/common/20-inject.html +25 -13
  5. package/core/common/21-debug.html +59 -6
  6. package/core/common/21-debug.js +57 -27
  7. package/core/common/60-link.html +65 -29
  8. package/core/common/60-link.js +169 -20
  9. package/core/common/lib/debug/debug-utils.js +34 -1
  10. package/core/function/10-function.html +57 -21
  11. package/core/function/10-switch.html +19 -12
  12. package/core/function/10-switch.js +1 -0
  13. package/core/function/15-change.html +40 -12
  14. package/core/function/16-range.html +14 -5
  15. package/core/function/80-template.html +16 -12
  16. package/core/function/89-delay.html +46 -6
  17. package/core/function/89-trigger.html +12 -4
  18. package/core/function/rbe.html +7 -3
  19. package/core/network/05-tls.html +10 -4
  20. package/core/network/06-httpproxy.html +10 -1
  21. package/core/network/10-mqtt.html +73 -17
  22. package/core/network/10-mqtt.js +252 -105
  23. package/core/network/21-httpin.html +10 -6
  24. package/core/network/21-httprequest.html +219 -12
  25. package/core/network/21-httprequest.js +98 -17
  26. package/core/network/22-websocket.html +19 -5
  27. package/core/network/22-websocket.js +16 -13
  28. package/core/network/31-tcpin.html +47 -10
  29. package/core/network/31-tcpin.js +8 -3
  30. package/core/network/32-udp.html +14 -2
  31. package/core/parsers/70-CSV.html +4 -1
  32. package/core/parsers/70-JSON.html +3 -2
  33. package/core/parsers/70-XML.html +2 -1
  34. package/core/parsers/70-YAML.html +2 -1
  35. package/core/sequence/17-split.html +6 -2
  36. package/core/sequence/19-batch.html +28 -4
  37. package/core/storage/10-file.html +68 -8
  38. package/core/storage/10-file.js +46 -3
  39. package/core/storage/23-watch.html +2 -1
  40. package/core/storage/23-watch.js +21 -43
  41. package/locales/de/messages.json +1 -0
  42. package/locales/en-US/common/60-link.html +19 -3
  43. package/locales/en-US/messages.json +71 -18
  44. package/locales/en-US/network/21-httprequest.html +1 -1
  45. package/locales/en-US/storage/10-file.html +6 -2
  46. package/locales/ja/common/60-link.html +13 -0
  47. package/locales/ja/messages.json +84 -32
  48. package/locales/ja/network/21-httprequest.html +1 -1
  49. package/locales/ja/storage/10-file.html +8 -6
  50. package/locales/ko/messages.json +1 -0
  51. package/locales/ru/messages.json +1 -0
  52. package/locales/zh-CN/messages.json +1 -0
  53. package/locales/zh-TW/messages.json +1 -0
  54. package/package.json +12 -12
@@ -29,8 +29,8 @@
29
29
  <p>Create virtual wires between flows.</p>
30
30
  <h3>Details</h3>
31
31
  <p>This node can be configured to either send messages to all <code>link in</code>
32
- nodes it is connected to, or to send a response back to the <code>link call</code>
33
- node that triggered the flow.</p>
32
+ nodes it is connected to, or to send a response back to the <code>link call</code>
33
+ node that triggered the flow.</p>
34
34
  <p>When in 'send to all' mode, the wires between link nodes are only displayed when
35
35
  the node is selected. If there are any wires to other tabs, a virtual node
36
36
  is shown that can be clicked on to jump to the appropriate tab.</p>
@@ -39,12 +39,28 @@
39
39
 
40
40
  <script type="text/html" data-help-name="link call">
41
41
  <p>Calls a flow that starts with a <code>link in</code> node and passes on the response.</p>
42
+ <h3>Inputs</h3>
43
+ <dl class="message-properties">
44
+ <dt class="optional">target<span class="property-type">string</span></dt>
45
+ <dd>When the option <b>Link Type</b> is set to "Dynamic target", set <code>msg.target</code> to the name of the
46
+ <code>link in</code> node you wish to call.</dd>
47
+ </dl>
42
48
  <h3>Details</h3>
43
49
  <p>This node can be connected to a <code>link in</code> node that exists on any tab.
44
50
  The flow connected to that node must end with a <code>link out</code> node configured
45
51
  in 'return' mode.</p>
46
52
  <p>When this node receives a message, it is passed to the connected <code>link in</code> node.
47
- It then waits for a response which it then sends on.</o>
53
+ It then waits for a response which it then sends on.</p>
48
54
  <p>If no response is received within the configured timeout, default 30 seconds, the node
49
55
  will log an error that can be caught using the <code>catch</code> node.</p>
56
+ <p>When the option <b>Link Type</b> is set to "Dynamic target" <code>msg.target</code> can be used to call a
57
+ <code>link in</code> by name or id.
58
+ <ul>
59
+ <li>If there is a <code>link in</code> nodes with the same id, it will be called</li>
60
+ <li>If there are two or more <code>link in</code> nodes with the same name, an error will be raised</li>
61
+ <li>A <code>link call</code> cannot call a <code>link in</code> node inside a subflow</li>
62
+ </ul>
63
+ </p>
64
+ The flow connected to that node must end with a <code>link out</code> node configured
65
+ in 'return' mode.</p>
50
66
  </script>
@@ -85,7 +85,11 @@
85
85
  "errors": {
86
86
  "failed": "inject failed, see log for details",
87
87
  "toolong": "Interval too large",
88
- "invalid-expr": "Invalid JSONata expression: __error__"
88
+ "invalid-expr": "Invalid JSONata expression: __error__",
89
+ "invalid-jsonata": "__prop__: invalid property expression: __error__",
90
+ "invalid-prop": "__prop__: invalid property expression: __error__",
91
+ "invalid-json": "__prop__: invalid JSON data: __error__",
92
+ "invalid-repeat": "Invalid repeat value"
89
93
  }
90
94
  },
91
95
  "catch": {
@@ -125,6 +129,7 @@
125
129
  "msgprop": "message property",
126
130
  "msgobj": "complete msg object",
127
131
  "autostatus": "same as debug output",
132
+ "messageCount": "message count",
128
133
  "to": "To",
129
134
  "debtab": "debug tab",
130
135
  "tabcon": "debug tab and console",
@@ -170,6 +175,11 @@
170
175
  "outMode": "Mode",
171
176
  "sendToAll": "Send to all connected link nodes",
172
177
  "returnToCaller": "Return to calling link node",
178
+ "timeout": "timeout",
179
+ "linkCallType": "Link Type",
180
+ "staticLinkCall": "Fixed target",
181
+ "dynamicLinkCall": "Dynamic target (msg.target)",
182
+ "dynamicLinkLabel": "Dynamic",
173
183
  "error": {
174
184
  "missingReturn": "Missing return node information"
175
185
  }
@@ -196,7 +206,9 @@
196
206
  "alpnprotocol":"for use with ALPN"
197
207
  },
198
208
  "error": {
199
- "missing-file": "No certificate/key file provided"
209
+ "missing-file": "No certificate/key file provided",
210
+ "invalid-cert": "Certificate not specified",
211
+ "invalid-key": "Private key not specified"
200
212
  }
201
213
  },
202
214
  "exec": {
@@ -251,7 +263,9 @@
251
263
  "moduleNameError": "Invalid module variable name: __name__",
252
264
  "moduleNameReserved": "Reserved variable name: __name__",
253
265
  "inputListener":"Cannot add listener to 'input' event within Function",
254
- "non-message-returned":"Function tried to send a message of type __type__"
266
+ "non-message-returned":"Function tried to send a message of type __type__",
267
+ "invalid-js": "Error in JavaScript code",
268
+ "missing-module": "Module __module__ missing"
255
269
  }
256
270
  },
257
271
  "template": {
@@ -305,6 +319,9 @@
305
319
  "limit": "limit",
306
320
  "limitTopic": "limit topic",
307
321
  "random": "random",
322
+ "rate": "rate",
323
+ "random-first": "first random value",
324
+ "random-last": "last random value",
308
325
  "units" : {
309
326
  "second": {
310
327
  "plural" : "Seconds",
@@ -325,7 +342,12 @@
325
342
  }
326
343
  },
327
344
  "errors": {
328
- "too-many" : "too many pending messages in delay node"
345
+ "too-many" : "too many pending messages in delay node",
346
+ "invalid-timeout": "Invalid delay value",
347
+ "invalid-rate": "Invalid rate value",
348
+ "invalid-rate-unit": "Invalid rate unit value",
349
+ "invalid-random-first": "Invalid first random value",
350
+ "invalid-random-last": "Invalid last random value"
329
351
  }
330
352
  },
331
353
  "trigger": {
@@ -362,7 +384,9 @@
362
384
  "reset": "Reset the trigger if:",
363
385
  "resetMessage":"msg.reset is set",
364
386
  "resetPayload":"msg.payload equals",
365
- "resetprompt": "optional"
387
+ "resetprompt": "optional",
388
+ "duration": "duration",
389
+ "topic": "topic"
366
390
  }
367
391
  },
368
392
  "comment": {
@@ -420,7 +444,8 @@
420
444
  "action": "Action",
421
445
  "staticTopic": "Subscribe to single topic",
422
446
  "dynamicTopic": "Dynamic subscription",
423
- "auto-connect": "Connect automatically"
447
+ "auto-connect": "Connect automatically",
448
+ "auto-mode-depreciated": "This option is depreciated. Please use the new auto-detect mode."
424
449
  },
425
450
  "sections-label":{
426
451
  "birth-message": "Message sent on connection (birth message)",
@@ -451,6 +476,7 @@
451
476
  "string": "a String",
452
477
  "base64": "a Base64 encoded string",
453
478
  "auto": "auto-detect (string or buffer)",
479
+ "auto-detect": "auto-detect (parsed JSON object, string or buffer)",
454
480
  "json": "a parsed JSON object"
455
481
  },
456
482
  "true": "true",
@@ -465,7 +491,9 @@
465
491
  "invalid-json-parse": "Failed to parse JSON string",
466
492
  "invalid-action-action": "Invalid action specified",
467
493
  "invalid-action-alreadyconnected": "Disconnect from broker before connecting",
468
- "invalid-action-badsubscription": "msg.topic is missing or invalid"
494
+ "invalid-action-badsubscription": "msg.topic is missing or invalid",
495
+ "invalid-client-id": "Missing Client ID"
496
+
469
497
  }
470
498
  },
471
499
  "httpin": {
@@ -521,7 +549,8 @@
521
549
  "invalid-transport":"non-http transport requested",
522
550
  "timeout-isnan": "Timeout value is not a valid number, ignoring",
523
551
  "timeout-isnegative": "Timeout value is negative, ignoring",
524
- "invalid-payload": "Invalid payload"
552
+ "invalid-payload": "Invalid payload",
553
+ "invalid-url": "Invalid url"
525
554
  },
526
555
  "status": {
527
556
  "requesting": "requesting"
@@ -554,7 +583,9 @@
554
583
  "connect-error": "An error occurred on the ws connection: ",
555
584
  "send-error": "An error occurred while sending: ",
556
585
  "missing-conf": "Missing server configuration",
557
- "duplicate-path": "Cannot have two WebSocket listeners on the same path: __path__"
586
+ "duplicate-path": "Cannot have two WebSocket listeners on the same path: __path__",
587
+ "missing-server": "Missing server configuration",
588
+ "missing-client": "Missing client configuration"
558
589
  }
559
590
  },
560
591
  "watch": {
@@ -583,7 +614,8 @@
583
614
  "ms": "ms",
584
615
  "chars": "chars",
585
616
  "close": "Close",
586
- "optional": "(optional)"
617
+ "optional": "(optional)",
618
+ "reattach": "re-attach delimiter"
587
619
  },
588
620
  "type": {
589
621
  "listen": "Listen on",
@@ -624,7 +656,9 @@
624
656
  "no-host": "Host and/or port not set",
625
657
  "connect-timeout": "connect timeout",
626
658
  "connect-fail": "connect failed",
627
- "bad-string": "failed to convert to string"
659
+ "bad-string": "failed to convert to string",
660
+ "invalid-host": "Invalid host",
661
+ "invalid-port": "Invalid port"
628
662
  }
629
663
  },
630
664
  "udp": {
@@ -638,7 +672,8 @@
638
672
  "send": "Send a",
639
673
  "toport": "to port",
640
674
  "address": "Address",
641
- "decode-base64": "Decode Base64 encoded payload?"
675
+ "decode-base64": "Decode Base64 encoded payload?",
676
+ "port": "port"
642
677
  },
643
678
  "placeholder": {
644
679
  "interface": "(optional) local interface or address to bind to",
@@ -685,7 +720,8 @@
685
720
  "port-notset": "udp: port not set",
686
721
  "port-invalid": "udp: port number not valid",
687
722
  "alreadyused": "udp: port __port__ already in use",
688
- "ifnotfound": "udp: interface __iface__ not found"
723
+ "ifnotfound": "udp: interface __iface__ not found",
724
+ "invalid-group": "invalid multicast group"
689
725
  }
690
726
  },
691
727
  "switch": {
@@ -693,7 +729,9 @@
693
729
  "label": {
694
730
  "property": "Property",
695
731
  "rule": "rule",
696
- "repair": "recreate message sequences"
732
+ "repair": "recreate message sequences",
733
+ "value-rules": "value rules",
734
+ "sequence-rules": "sequence rules"
697
735
  },
698
736
  "previous": "previous value",
699
737
  "and": "and",
@@ -749,7 +787,9 @@
749
787
  "invalid-from": "Invalid 'from' property: __error__",
750
788
  "invalid-json": "Invalid 'to' JSON property",
751
789
  "invalid-expr": "Invalid JSONata expression: __error__",
752
- "no-override": "Cannot set property of non-object type: __property__"
790
+ "no-override": "Cannot set property of non-object type: __property__",
791
+ "invalid-prop": "Invalid property expression: __property__",
792
+ "invalid-json-data": "Invalid JSON data: __error__"
753
793
  }
754
794
  },
755
795
  "range": {
@@ -760,7 +800,11 @@
760
800
  "resultrange": "to the target range",
761
801
  "from": "from",
762
802
  "to": "to",
763
- "roundresult": "Round result to the nearest integer?"
803
+ "roundresult": "Round result to the nearest integer?",
804
+ "minin": "input from",
805
+ "maxin": "input to",
806
+ "minout": "target from",
807
+ "maxout": "target to"
764
808
  },
765
809
  "placeholder": {
766
810
  "min": "e.g. 0",
@@ -985,6 +1029,7 @@
985
1029
  "complete": "After a message with the <code>msg.complete</code> property set",
986
1030
  "tip": "This mode assumes this node is either paired with a <i>split</i> node or the received messages will have a properly configured <code>msg.parts</code> property.",
987
1031
  "too-many": "too many pending messages in join node",
1032
+ "message-prop": "message property",
988
1033
  "merge": {
989
1034
  "topics-label": "Merged Topics",
990
1035
  "topics": "topics",
@@ -1042,7 +1087,12 @@
1042
1087
  },
1043
1088
  "too-many" : "too many pending messages in batch node",
1044
1089
  "unexpected" : "unexpected mode",
1045
- "no-parts" : "no parts property in message"
1090
+ "no-parts" : "no parts property in message",
1091
+ "error": {
1092
+ "invalid-count": "Invalid count",
1093
+ "invalid-overlap": "Invalid overlap",
1094
+ "invalid-interval": "Invalid interval"
1095
+ }
1046
1096
  },
1047
1097
  "rbe": {
1048
1098
  "rbe": "filter",
@@ -1051,7 +1101,10 @@
1051
1101
  "init": "Send initial value",
1052
1102
  "start": "Start value",
1053
1103
  "name": "Name",
1054
- "septopics": "Apply mode separately for each "
1104
+ "septopics": "Apply mode separately for each ",
1105
+ "gap": "value change",
1106
+ "property": "property",
1107
+ "topic": "topic"
1055
1108
  },
1056
1109
  "placeholder":{
1057
1110
  "bandgap": "e.g. 10 or 5%",
@@ -25,7 +25,7 @@
25
25
  <dd>If not configured in the node, this optional property sets the HTTP method of the request.
26
26
  Must be one of <code>GET</code>, <code>PUT</code>, <code>POST</code>, <code>PATCH</code> or <code>DELETE</code>.</dd>
27
27
  <dt class="optional">headers <span class="property-type">object</span></dt>
28
- <dd>Sets the HTTP headers of the request.</dd>
28
+ <dd>Sets the HTTP headers of the request. NOTE: Any headers set in the node configuration will overwrite any matching headers in <code>msg.headers</code> </dd>
29
29
  <dt class="optional">cookies <span class="property-type">object</span></dt>
30
30
  <dd>If set, can be used to send cookies with the request.</dd>
31
31
  <dt class="optional">payload</dt>
@@ -20,7 +20,9 @@
20
20
  <h3>Inputs</h3>
21
21
  <dl class="message-properties">
22
22
  <dt class="optional">filename <span class="property-type">string</span></dt>
23
- <dd>If not configured in the node, this optional property sets the name of the file to be updated.</dd>
23
+ <dd>The name of the file to be updated can be provided in the node configuration, or as a message property.
24
+ By default it will use <code>msg.filename</code> but this can be customised in the node.
25
+ </dd>
24
26
  <dt class="optional">encoding <span class="property-type">string</span></dt>
25
27
  <dd>If encoding is configured to be set by msg, then this optional property can set the encoding.</dt>
26
28
  </dl>
@@ -43,7 +45,9 @@
43
45
  <h3>Inputs</h3>
44
46
  <dl class="message-properties">
45
47
  <dt class="optional">filename <span class="property-type">string</span></dt>
46
- <dd>if not set in the node configuration, this property sets the filename to read.</dd>
48
+ <dd>The name of the file to be read can be provided in the node configuration, or as a message property.
49
+ By default it will use <code>msg.filename</code> but this can be customised in the node.
50
+ </dd>
47
51
  </dl>
48
52
  <h3>Outputs</h3>
49
53
  <dl class="message-properties">
@@ -32,9 +32,22 @@
32
32
 
33
33
  <script type="text/html" data-help-name="link call">
34
34
  <p><code>link in</code> で始まり、応答を返すフローを呼び出します。</p>
35
+ <h3>入力</h3>
36
+ <dl class="message-properties">
37
+ <dt class="optional">target<span class="property-type">文字列</span></dt>
38
+ <dd><b>リンクの種類</b>で"対象を動的に指定"を選択した場合、<code>msg.target</code>に呼び出したい<code>link in</code>ノードの名前を指定します。</dd>
39
+ </dl>
35
40
  <h3>詳細</h3>
36
41
  <p>本ノードは、任意のタブ内に存在する <code>link in</code> ノードに接続できます。 接続先のフローは、`返却`モードが設定された <code>link out</code> ノードで終了する必要があります。</p>
37
42
  <p>本ノードはメッセージを受信すると、メッセージを接続した <code>link in</code> ノードへ渡します。
38
43
  その後、応答を待った後にメッセージを送信します。</o>
39
44
  <p>もし、設定したタイムアウト(デフォルト30秒)以内に応答がない場合は、<code>catch</code> ノードを用いてエラーをログに記録することもできます。</p>
45
+ <p><b>リンクの種類</b>で"対象を動的に指定"を選択した場合、<code>link in</code>ノードのIDもしくは名前を<code>msg.target</code>に指定して呼び出すことができます。
46
+ <ul>
47
+ <li>同じIDの<code>link in</code>ノードがある場合、それを呼び出します。</li>
48
+ <li>もし、同じ名前を付けた<code>link in</code>ノードが2つ以上ある場合、エラーが発生します。</li>
49
+ <li><code>link call</code>は、サブフローの中の<code>link in</code>ノードを呼び出すことはできません。</li>
50
+ </ul>
51
+ </p>
52
+ 本ノードから呼び出すフローは、終端の<code>link out</code>ノードに'返却'モードを設定する必要があります。</p>
40
53
  </script>
@@ -85,7 +85,11 @@
85
85
  "errors": {
86
86
  "failed": "inject処理が失敗しました。詳細はログを確認してください。",
87
87
  "toolong": "時間間隔が大き過ぎます",
88
- "invalid-expr": "JSONata式が不正: __error__"
88
+ "invalid-expr": "JSONata式が不正: __error__",
89
+ "invalid-jsonata": "__prop__: プロパティ式が不正: __error__",
90
+ "invalid-prop": "__prop__: プロパティ式が不正: __error__",
91
+ "invalid-json": "__prop__: JSONデータが不正: __error__",
92
+ "invalid-repeat": "繰り返し数が不正"
89
93
  }
90
94
  },
91
95
  "catch": {
@@ -125,6 +129,7 @@
125
129
  "msgprop": "メッセージプロパティ",
126
130
  "msgobj": "msgオブジェクト全体",
127
131
  "autostatus": "デバッグ出力と同じ",
132
+ "messageCount": "メッセージ数をカウント",
128
133
  "to": "出力先",
129
134
  "debtab": "デバッグタブ",
130
135
  "tabcon": "デバッグタブとコンソール",
@@ -170,6 +175,11 @@
170
175
  "outMode": "モード",
171
176
  "sendToAll": "接続された全てのlinkノードへ送信",
172
177
  "returnToCaller": "link callノードへ返却",
178
+ "timeout": "タイムアウト",
179
+ "linkCallType": "リンクの種類",
180
+ "staticLinkCall": "対象を固定で指定",
181
+ "dynamicLinkCall": "対象を動的に指定 (msg.target)",
182
+ "dynamicLinkLabel": "動的",
173
183
  "error": {
174
184
  "missingReturn": "返却するノードの情報が存在しません"
175
185
  }
@@ -196,7 +206,9 @@
196
206
  "alpnprotocol": "ALPNで使用"
197
207
  },
198
208
  "error": {
199
- "missing-file": "証明書と秘密鍵のファイルが設定されていません"
209
+ "missing-file": "証明書と秘密鍵のファイルが設定されていません",
210
+ "invalid-cert": "証明書が指定されていません",
211
+ "invalid-key": "秘密鍵が指定されていません"
200
212
  }
201
213
  },
202
214
  "exec": {
@@ -251,7 +263,9 @@
251
263
  "moduleNameError": "モジュール変数名が不正です: __name__",
252
264
  "moduleNameReserved": "予約された変数名です: __name__",
253
265
  "inputListener": "コード内で'input'イベントのリスナを設定できません",
254
- "non-message-returned": "Functionノードが __type__ 型のメッセージ送信を試みました"
266
+ "non-message-returned": "Functionノードが __type__ 型のメッセージ送信を試みました",
267
+ "invalid-js": "JavaScriptコードのエラー",
268
+ "missing-module": "モジュール __module__ が存在しません"
255
269
  }
256
270
  },
257
271
  "template": {
@@ -305,6 +319,9 @@
305
319
  "limit": "limit",
306
320
  "limitTopic": "limit topic",
307
321
  "random": "random",
322
+ "rate": "流量",
323
+ "random-first": "ランダム最小値",
324
+ "random-last": "ランダム最大値",
308
325
  "units": {
309
326
  "second": {
310
327
  "plural": "秒",
@@ -325,7 +342,12 @@
325
342
  }
326
343
  },
327
344
  "errors": {
328
- "too-many": "delayノード内で保持しているメッセージが多すぎます"
345
+ "too-many": "delayノード内で保持しているメッセージが多すぎます",
346
+ "invalid-timeout": "遅延時間が不正",
347
+ "invalid-rate": "流量値が不正",
348
+ "invalid-rate-unit": "流量単位時間が不正",
349
+ "invalid-random-first": "ランダム最小値が不正",
350
+ "invalid-random-last": "ランダム最大値が不正"
329
351
  }
330
352
  },
331
353
  "trigger": {
@@ -362,7 +384,9 @@
362
384
  "reset": "初期化条件:",
363
385
  "resetMessage": "msg.resetを設定",
364
386
  "resetPayload": "msg.payloadが次の値",
365
- "resetprompt": "任意"
387
+ "resetprompt": "任意",
388
+ "duration": "時間間隔",
389
+ "topic": "トピック"
366
390
  }
367
391
  },
368
392
  "comment": {
@@ -420,7 +444,8 @@
420
444
  "action": "動作",
421
445
  "staticTopic": "1つのトピックを購読",
422
446
  "dynamicTopic": "動的な購読",
423
- "auto-connect": "自動接続"
447
+ "auto-connect": "自動接続",
448
+ "auto-mode-depreciated": "本オプションは非推奨になりました。新しい自動判定モードを使用してください。"
424
449
  },
425
450
  "sections-label": {
426
451
  "birth-message": "接続時の送信メッセージ(Birthメッセージ)",
@@ -451,6 +476,7 @@
451
476
  "string": "文字列",
452
477
  "base64": "Base64文字列",
453
478
  "auto": "自動判定(文字列もしくはバイナリバッファ)",
479
+ "auto-detect": "自動判定(JSONオブジェクト、文字列もしくはバイナリバッファ)",
454
480
  "json": "JSONオブジェクト"
455
481
  },
456
482
  "true": "する",
@@ -465,7 +491,8 @@
465
491
  "invalid-json-parse": "JSON文字列のパースに失敗しました",
466
492
  "invalid-action-action": "指定された動作が不正です",
467
493
  "invalid-action-alreadyconnected": "接続する前にブローカから切断してください",
468
- "invalid-action-badsubscription": "msg.topicが存在しないか不正です"
494
+ "invalid-action-badsubscription": "msg.topicが存在しないか不正です",
495
+ "invalid-client-id": "クライアントIDが未指定"
469
496
  }
470
497
  },
471
498
  "httpin": {
@@ -521,7 +548,8 @@
521
548
  "invalid-transport": "httpでないトランスポートが要求されました",
522
549
  "timeout-isnan": "タイムアウト値が数値ではないため無視します",
523
550
  "timeout-isnegative": "タイムアウト値が負数のため無視します",
524
- "invalid-payload": "不正なペイロード"
551
+ "invalid-payload": "不正なペイロード",
552
+ "invalid-url": "URLが不正"
525
553
  },
526
554
  "status": {
527
555
  "requesting": "要求中"
@@ -554,7 +582,9 @@
554
582
  "connect-error": "ws接続でエラーが発生しました: ",
555
583
  "send-error": "送信中にエラーが発生しました: ",
556
584
  "missing-conf": "サーバ設定が不足しています",
557
- "duplicate-path": "同じパスに対して2つのWebSocketリスナは指定できません: __path__"
585
+ "duplicate-path": "同じパスに対して2つのWebSocketリスナは指定できません: __path__",
586
+ "missing-server": "サーバが設定されていません",
587
+ "missing-client": "クライアントが設定されていません"
558
588
  }
559
589
  },
560
590
  "watch": {
@@ -583,7 +613,8 @@
583
613
  "ms": "ミリ秒",
584
614
  "chars": "文字",
585
615
  "close": "終了",
586
- "optional": "(任意)"
616
+ "optional": "(任意)",
617
+ "reattach": "区切り文字を再追加"
587
618
  },
588
619
  "type": {
589
620
  "listen": "待ち受け",
@@ -623,7 +654,9 @@
623
654
  "no-host": "ホスト名またはポートが設定されていません",
624
655
  "connect-timeout": "接続がタイムアウトしました",
625
656
  "connect-fail": "接続に失敗しました",
626
- "bad-string": "文字列への変換に失敗しました"
657
+ "bad-string": "文字列への変換に失敗しました",
658
+ "invalid-host": "ホスト名が不正",
659
+ "invalid-port": "ポートが不正"
627
660
  }
628
661
  },
629
662
  "udp": {
@@ -637,7 +670,8 @@
637
670
  "send": "送信",
638
671
  "toport": "ポート",
639
672
  "address": "アドレス",
640
- "decode-base64": "Base64形式のペイロードを復号"
673
+ "decode-base64": "Base64形式のペイロードを復号",
674
+ "port": "ポート"
641
675
  },
642
676
  "placeholder": {
643
677
  "interface": "(任意) 使用するローカルインターフェイスもしくはアドレス",
@@ -684,7 +718,8 @@
684
718
  "port-notset": "udp: ポートが設定されていません",
685
719
  "port-invalid": "udp: ポート番号が不正です",
686
720
  "alreadyused": "udp: 既に__port__番ポートが使用されています",
687
- "ifnotfound": "udp: インターフェイス __iface__ がありません"
721
+ "ifnotfound": "udp: インターフェイス __iface__ がありません",
722
+ "invalid-group": "マルチキャストグループが不正"
688
723
  }
689
724
  },
690
725
  "switch": {
@@ -692,7 +727,9 @@
692
727
  "label": {
693
728
  "property": "プロパティ",
694
729
  "rule": "条件",
695
- "repair": "メッセージ列の補正"
730
+ "repair": "メッセージ列の補正",
731
+ "value-rules": "値ルール",
732
+ "sequence-rules": "列ルール"
696
733
  },
697
734
  "previous": "前回の値",
698
735
  "and": "~",
@@ -700,22 +737,22 @@
700
737
  "stopfirst": "最初に合致した条件で終了",
701
738
  "ignorecase": "大文字、小文字を区別しない",
702
739
  "rules": {
703
- "btwn": "is between",
704
- "cont": "contains",
705
- "regex": "matches regex",
706
- "true": "is true",
707
- "false": "is false",
708
- "null": "is null",
709
- "nnull": "is not null",
710
- "istype": "is of type",
711
- "empty": "is empty",
712
- "nempty": "is not empty",
713
- "head": "head",
714
- "tail": "tail",
715
- "index": "index between",
740
+ "btwn": "範囲内である",
741
+ "cont": "要素に含む",
742
+ "regex": "正規表現にマッチ",
743
+ "true": "trueである",
744
+ "false": "falseである",
745
+ "null": "nullである",
746
+ "nnull": "nullでない",
747
+ "istype": "指定型である",
748
+ "empty": "空である",
749
+ "nempty": "空でない",
750
+ "head": "先頭要素である",
751
+ "tail": "末尾要素である",
752
+ "index": "指定添字範囲要素である",
716
753
  "exp": "JSONata式",
717
754
  "else": "その他",
718
- "hask": "has key"
755
+ "hask": "キーを含む"
719
756
  },
720
757
  "errors": {
721
758
  "invalid-expr": "不正な表現: __error__",
@@ -748,7 +785,9 @@
748
785
  "invalid-from": "操作対象のプロパティが不正: __error__",
749
786
  "invalid-json": "対象の値のJSONプロパティが不正",
750
787
  "invalid-expr": "JSONata式が不正: __error__",
751
- "no-override": "オブジェクト型でないプロパティを設定できません: __property__"
788
+ "no-override": "オブジェクト型でないプロパティを設定できません: __property__",
789
+ "invalid-prop": "プロパティ式が不正: __property__",
790
+ "invalid-json-data": "JSONデータが不正: __error__"
752
791
  }
753
792
  },
754
793
  "range": {
@@ -759,7 +798,11 @@
759
798
  "resultrange": "出力値の範囲",
760
799
  "from": "最小値",
761
800
  "to": "最大値",
762
- "roundresult": "小数値を四捨五入し整数値へ変換"
801
+ "roundresult": "小数値を四捨五入し整数値へ変換",
802
+ "minin": "入力最小値",
803
+ "maxin": "入力最大値",
804
+ "minout": "出力最小値",
805
+ "maxout": "出力最大値"
763
806
  },
764
807
  "placeholder": {
765
808
  "min": "例) 0",
@@ -984,6 +1027,7 @@
984
1027
  "complete": "<code>msg.complete</code> プロパティが設定されたメッセージ受信後",
985
1028
  "tip": "このモードでは、本ノードが <i>split</i> ノードと組となるか、 <code>msg.parts</code> プロパティが設定されたメッセージを受け取ることが前提となります。",
986
1029
  "too-many": "joinノード内部で保持しているメッセージが多すぎます",
1030
+ "message-prop": "メッセージプロパティ",
987
1031
  "merge": {
988
1032
  "topics-label": "対象トピック",
989
1033
  "topics": "トピック",
@@ -1041,7 +1085,12 @@
1041
1085
  },
1042
1086
  "too-many": "batchノード内で保持しているメッセージが多すぎます",
1043
1087
  "unexpected": "想定外のモード",
1044
- "no-parts": "メッセージにpartsプロパティがありません"
1088
+ "no-parts": "メッセージにpartsプロパティがありません",
1089
+ "error": {
1090
+ "invalid-count": "メッセージ数が不正",
1091
+ "invalid-overlap": "オーバラップが不正",
1092
+ "invalid-interval": "時間間隔が不正"
1093
+ }
1045
1094
  },
1046
1095
  "rbe": {
1047
1096
  "rbe": "filter",
@@ -1050,7 +1099,10 @@
1050
1099
  "init": "初期値を送付",
1051
1100
  "start": "初期値",
1052
1101
  "name": "名前",
1053
- "septopics": "個別に動作を適用"
1102
+ "septopics": "個別に動作を適用",
1103
+ "gap": "変化量",
1104
+ "property": "プロパティ",
1105
+ "topic": "トピック"
1054
1106
  },
1055
1107
  "placeholder": {
1056
1108
  "bandgap": "例:10、5%",
@@ -24,7 +24,7 @@
24
24
  <dt class="optional">method <span class="property-type">文字列</span></dt>
25
25
  <dd>ノードの設定で指定していない場合、このプロパティでリクエストに用いるHTTPメソッドを設定します。<code>GET</code>, <code>PUT</code>, <code>POST</code>, <code>PATCH</code>, <code>DELETE</code>のいずれかを指定してください。</dd>
26
26
  <dt class="optional">headers <span class="property-type">オブジェクト</span></dt>
27
- <dd>リクエストのHTTPヘッダを指定します。</dd>
27
+ <dd>リクエストのHTTPヘッダを指定します。注釈: <code>msg.headers</code>のヘッダは、ノード設定のヘッダで上書きされます。</dd>
28
28
  <dt class="optional">cookies <span class="property-type">オブジェクト</span></dt>
29
29
  <dd>設定すると、リクエストと共にクッキーを送ることができます。</dd>
30
30
  <dt class="optional">payload</dt>