mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
add support of property validation message
This commit is contained in:
@@ -85,7 +85,11 @@
|
||||
"errors": {
|
||||
"failed": "inject failed, see log for details",
|
||||
"toolong": "Interval too large",
|
||||
"invalid-expr": "Invalid JSONata expression: __error__"
|
||||
"invalid-expr": "Invalid JSONata expression: __error__",
|
||||
"invalid-jsonata": "__prop__: invalid property expression: __error__",
|
||||
"invalid-prop": "__prop__: invalid property expression: __error__",
|
||||
"invalid-json": "__prop__: invalid JSON data: __error__",
|
||||
"invalid-repeat": "Invalid repeat value"
|
||||
}
|
||||
},
|
||||
"catch": {
|
||||
@@ -170,6 +174,7 @@
|
||||
"outMode": "Mode",
|
||||
"sendToAll": "Send to all connected link nodes",
|
||||
"returnToCaller": "Return to calling link node",
|
||||
"timeout": "timeout",
|
||||
"error": {
|
||||
"missingReturn": "Missing return node information"
|
||||
}
|
||||
@@ -196,7 +201,9 @@
|
||||
"alpnprotocol":"for use with ALPN"
|
||||
},
|
||||
"error": {
|
||||
"missing-file": "No certificate/key file provided"
|
||||
"missing-file": "No certificate/key file provided",
|
||||
"invalid-cert": "Certificate not specified",
|
||||
"invalid-key": "Private key not specified"
|
||||
}
|
||||
},
|
||||
"exec": {
|
||||
@@ -251,7 +258,9 @@
|
||||
"moduleNameError": "Invalid module variable name: __name__",
|
||||
"moduleNameReserved": "Reserved variable name: __name__",
|
||||
"inputListener":"Cannot add listener to 'input' event within Function",
|
||||
"non-message-returned":"Function tried to send a message of type __type__"
|
||||
"non-message-returned":"Function tried to send a message of type __type__",
|
||||
"invalid-js": "Error in JavaScript code",
|
||||
"missing-module": "Module __module__ missing"
|
||||
}
|
||||
},
|
||||
"template": {
|
||||
@@ -305,6 +314,9 @@
|
||||
"limit": "limit",
|
||||
"limitTopic": "limit topic",
|
||||
"random": "random",
|
||||
"rate": "rate",
|
||||
"random-first": "first random value",
|
||||
"random-last": "last random value",
|
||||
"units" : {
|
||||
"second": {
|
||||
"plural" : "Seconds",
|
||||
@@ -325,7 +337,12 @@
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"too-many" : "too many pending messages in delay node"
|
||||
"too-many" : "too many pending messages in delay node",
|
||||
"invalid-timeout": "Invalid delay value",
|
||||
"invalid-rate": "Invalid rate value",
|
||||
"invalid-rate-unit": "Invalid rate unit value",
|
||||
"invalid-random-first": "Invalid first random value",
|
||||
"invalid-random-last": "Invalid last random value"
|
||||
}
|
||||
},
|
||||
"trigger": {
|
||||
@@ -362,7 +379,9 @@
|
||||
"reset": "Reset the trigger if:",
|
||||
"resetMessage":"msg.reset is set",
|
||||
"resetPayload":"msg.payload equals",
|
||||
"resetprompt": "optional"
|
||||
"resetprompt": "optional",
|
||||
"duration": "duration",
|
||||
"topic": "topic"
|
||||
}
|
||||
},
|
||||
"comment": {
|
||||
@@ -465,7 +484,9 @@
|
||||
"invalid-json-parse": "Failed to parse JSON string",
|
||||
"invalid-action-action": "Invalid action specified",
|
||||
"invalid-action-alreadyconnected": "Disconnect from broker before connecting",
|
||||
"invalid-action-badsubscription": "msg.topic is missing or invalid"
|
||||
"invalid-action-badsubscription": "msg.topic is missing or invalid",
|
||||
"invalid-client-id": "Missing Client ID"
|
||||
|
||||
}
|
||||
},
|
||||
"httpin": {
|
||||
@@ -521,7 +542,8 @@
|
||||
"invalid-transport":"non-http transport requested",
|
||||
"timeout-isnan": "Timeout value is not a valid number, ignoring",
|
||||
"timeout-isnegative": "Timeout value is negative, ignoring",
|
||||
"invalid-payload": "Invalid payload"
|
||||
"invalid-payload": "Invalid payload",
|
||||
"invalid-url": "Invalid url"
|
||||
},
|
||||
"status": {
|
||||
"requesting": "requesting"
|
||||
@@ -554,7 +576,9 @@
|
||||
"connect-error": "An error occurred on the ws connection: ",
|
||||
"send-error": "An error occurred while sending: ",
|
||||
"missing-conf": "Missing server configuration",
|
||||
"duplicate-path": "Cannot have two WebSocket listeners on the same path: __path__"
|
||||
"duplicate-path": "Cannot have two WebSocket listeners on the same path: __path__",
|
||||
"missing-server": "Missing server configuration",
|
||||
"missing-client": "Missing client configuration"
|
||||
}
|
||||
},
|
||||
"watch": {
|
||||
@@ -624,7 +648,9 @@
|
||||
"no-host": "Host and/or port not set",
|
||||
"connect-timeout": "connect timeout",
|
||||
"connect-fail": "connect failed",
|
||||
"bad-string": "failed to convert to string"
|
||||
"bad-string": "failed to convert to string",
|
||||
"invalid-host": "Invalid host",
|
||||
"invalid-port": "Invalid port"
|
||||
}
|
||||
},
|
||||
"udp": {
|
||||
@@ -638,7 +664,8 @@
|
||||
"send": "Send a",
|
||||
"toport": "to port",
|
||||
"address": "Address",
|
||||
"decode-base64": "Decode Base64 encoded payload?"
|
||||
"decode-base64": "Decode Base64 encoded payload?",
|
||||
"port": "port"
|
||||
},
|
||||
"placeholder": {
|
||||
"interface": "(optional) local interface or address to bind to",
|
||||
@@ -685,7 +712,8 @@
|
||||
"port-notset": "udp: port not set",
|
||||
"port-invalid": "udp: port number not valid",
|
||||
"alreadyused": "udp: port __port__ already in use",
|
||||
"ifnotfound": "udp: interface __iface__ not found"
|
||||
"ifnotfound": "udp: interface __iface__ not found",
|
||||
"invalid-group": "invalid multicast group"
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
@@ -749,7 +777,9 @@
|
||||
"invalid-from": "Invalid 'from' property: __error__",
|
||||
"invalid-json": "Invalid 'to' JSON property",
|
||||
"invalid-expr": "Invalid JSONata expression: __error__",
|
||||
"no-override": "Cannot set property of non-object type: __property__"
|
||||
"no-override": "Cannot set property of non-object type: __property__",
|
||||
"invalid-prop": "Invalid property expression: __property__",
|
||||
"invalid-json-data": "Invalid JSON data: __error__"
|
||||
}
|
||||
},
|
||||
"range": {
|
||||
@@ -760,7 +790,11 @@
|
||||
"resultrange": "to the target range",
|
||||
"from": "from",
|
||||
"to": "to",
|
||||
"roundresult": "Round result to the nearest integer?"
|
||||
"roundresult": "Round result to the nearest integer?",
|
||||
"minin": "input from",
|
||||
"maxin": "input to",
|
||||
"minout": "target from",
|
||||
"maxout": "target to"
|
||||
},
|
||||
"placeholder": {
|
||||
"min": "e.g. 0",
|
||||
@@ -985,6 +1019,7 @@
|
||||
"complete": "After a message with the <code>msg.complete</code> property set",
|
||||
"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.",
|
||||
"too-many": "too many pending messages in join node",
|
||||
"message-prop": "message property",
|
||||
"merge": {
|
||||
"topics-label": "Merged Topics",
|
||||
"topics": "topics",
|
||||
@@ -1042,7 +1077,12 @@
|
||||
},
|
||||
"too-many" : "too many pending messages in batch node",
|
||||
"unexpected" : "unexpected mode",
|
||||
"no-parts" : "no parts property in message"
|
||||
"no-parts" : "no parts property in message",
|
||||
"error": {
|
||||
"invalid-count": "Invalid count",
|
||||
"invalid-overlap": "Invalid overlap",
|
||||
"invalid-interval": "Invalid interval"
|
||||
}
|
||||
},
|
||||
"rbe": {
|
||||
"rbe": "filter",
|
||||
@@ -1051,7 +1091,10 @@
|
||||
"init": "Send initial value",
|
||||
"start": "Start value",
|
||||
"name": "Name",
|
||||
"septopics": "Apply mode separately for each "
|
||||
"septopics": "Apply mode separately for each ",
|
||||
"gap": "value change",
|
||||
"property": "property",
|
||||
"topic": "topic"
|
||||
},
|
||||
"placeholder":{
|
||||
"bandgap": "e.g. 10 or 5%",
|
||||
|
@@ -85,7 +85,11 @@
|
||||
"errors": {
|
||||
"failed": "inject処理が失敗しました。詳細はログを確認してください。",
|
||||
"toolong": "時間間隔が大き過ぎます",
|
||||
"invalid-expr": "JSONata式が不正: __error__"
|
||||
"invalid-expr": "JSONata式が不正: __error__",
|
||||
"invalid-jsonata": "__prop__: プロパティ式が不正: __error__",
|
||||
"invalid-prop": "__prop__: プロパティ式が不正: __error__",
|
||||
"invalid-json": "__prop__: JSONデータが不正: __error__",
|
||||
"invalid-repeat": "繰り返し数が不正"
|
||||
}
|
||||
},
|
||||
"catch": {
|
||||
@@ -170,6 +174,7 @@
|
||||
"outMode": "モード",
|
||||
"sendToAll": "接続された全てのlinkノードへ送信",
|
||||
"returnToCaller": "link callノードへ返却",
|
||||
"timeout": "タイムアウト",
|
||||
"error": {
|
||||
"missingReturn": "返却するノードの情報が存在しません"
|
||||
}
|
||||
@@ -196,7 +201,9 @@
|
||||
"alpnprotocol": "ALPNで使用"
|
||||
},
|
||||
"error": {
|
||||
"missing-file": "証明書と秘密鍵のファイルが設定されていません"
|
||||
"missing-file": "証明書と秘密鍵のファイルが設定されていません",
|
||||
"invalid-cert": "証明書が指定されていません",
|
||||
"invalid-key": "秘密鍵が指定されていません"
|
||||
}
|
||||
},
|
||||
"exec": {
|
||||
@@ -251,7 +258,9 @@
|
||||
"moduleNameError": "モジュール変数名が不正です: __name__",
|
||||
"moduleNameReserved": "予約された変数名です: __name__",
|
||||
"inputListener": "コード内で'input'イベントのリスナを設定できません",
|
||||
"non-message-returned": "Functionノードが __type__ 型のメッセージ送信を試みました"
|
||||
"non-message-returned": "Functionノードが __type__ 型のメッセージ送信を試みました",
|
||||
"invalid-js": "JavaScriptコードのエラー",
|
||||
"missing-module": "モジュール __module__ が存在しません"
|
||||
}
|
||||
},
|
||||
"template": {
|
||||
@@ -305,6 +314,9 @@
|
||||
"limit": "limit",
|
||||
"limitTopic": "limit topic",
|
||||
"random": "random",
|
||||
"rate": "流量",
|
||||
"random-first": "ランダム最小値",
|
||||
"random-last": "ランダム最大値",
|
||||
"units": {
|
||||
"second": {
|
||||
"plural": "秒",
|
||||
@@ -325,7 +337,12 @@
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"too-many": "delayノード内で保持しているメッセージが多すぎます"
|
||||
"too-many": "delayノード内で保持しているメッセージが多すぎます",
|
||||
"invalid-timeout": "遅延時間が不正",
|
||||
"invalid-rate": "流量値が不正",
|
||||
"invalid-rate-unit": "流量単位時間が不正",
|
||||
"invalid-random-first": "ランダム最小値が不正",
|
||||
"invalid-random-last": "ランダム最大値が不正"
|
||||
}
|
||||
},
|
||||
"trigger": {
|
||||
@@ -362,7 +379,9 @@
|
||||
"reset": "初期化条件:",
|
||||
"resetMessage": "msg.resetを設定",
|
||||
"resetPayload": "msg.payloadが次の値",
|
||||
"resetprompt": "任意"
|
||||
"resetprompt": "任意",
|
||||
"duration": "時間間隔",
|
||||
"topic": "トピック"
|
||||
}
|
||||
},
|
||||
"comment": {
|
||||
@@ -465,7 +484,8 @@
|
||||
"invalid-json-parse": "JSON文字列のパースに失敗しました",
|
||||
"invalid-action-action": "指定された動作が不正です",
|
||||
"invalid-action-alreadyconnected": "接続する前にブローカから切断してください",
|
||||
"invalid-action-badsubscription": "msg.topicが存在しないか不正です"
|
||||
"invalid-action-badsubscription": "msg.topicが存在しないか不正です",
|
||||
"invalid-client-id": "クライアントIDが未指定"
|
||||
}
|
||||
},
|
||||
"httpin": {
|
||||
@@ -521,7 +541,8 @@
|
||||
"invalid-transport": "httpでないトランスポートが要求されました",
|
||||
"timeout-isnan": "タイムアウト値が数値ではないため無視します",
|
||||
"timeout-isnegative": "タイムアウト値が負数のため無視します",
|
||||
"invalid-payload": "不正なペイロード"
|
||||
"invalid-payload": "不正なペイロード",
|
||||
"invalid-url": "URLが不正"
|
||||
},
|
||||
"status": {
|
||||
"requesting": "要求中"
|
||||
@@ -554,7 +575,9 @@
|
||||
"connect-error": "ws接続でエラーが発生しました: ",
|
||||
"send-error": "送信中にエラーが発生しました: ",
|
||||
"missing-conf": "サーバ設定が不足しています",
|
||||
"duplicate-path": "同じパスに対して2つのWebSocketリスナは指定できません: __path__"
|
||||
"duplicate-path": "同じパスに対して2つのWebSocketリスナは指定できません: __path__",
|
||||
"missing-server": "サーバが設定されていません",
|
||||
"missing-client": "クライアントが設定されていません"
|
||||
}
|
||||
},
|
||||
"watch": {
|
||||
@@ -623,7 +646,9 @@
|
||||
"no-host": "ホスト名またはポートが設定されていません",
|
||||
"connect-timeout": "接続がタイムアウトしました",
|
||||
"connect-fail": "接続に失敗しました",
|
||||
"bad-string": "文字列への変換に失敗しました"
|
||||
"bad-string": "文字列への変換に失敗しました",
|
||||
"invalid-host": "ホスト名が不正",
|
||||
"invalid-port": "ポートが不正"
|
||||
}
|
||||
},
|
||||
"udp": {
|
||||
@@ -637,7 +662,8 @@
|
||||
"send": "送信",
|
||||
"toport": "ポート",
|
||||
"address": "アドレス",
|
||||
"decode-base64": "Base64形式のペイロードを復号"
|
||||
"decode-base64": "Base64形式のペイロードを復号",
|
||||
"port": "ポート"
|
||||
},
|
||||
"placeholder": {
|
||||
"interface": "(任意) 使用するローカルインターフェイスもしくはアドレス",
|
||||
@@ -684,7 +710,8 @@
|
||||
"port-notset": "udp: ポートが設定されていません",
|
||||
"port-invalid": "udp: ポート番号が不正です",
|
||||
"alreadyused": "udp: 既に__port__番ポートが使用されています",
|
||||
"ifnotfound": "udp: インターフェイス __iface__ がありません"
|
||||
"ifnotfound": "udp: インターフェイス __iface__ がありません",
|
||||
"invalid-group": "マルチキャストグループが不正"
|
||||
}
|
||||
},
|
||||
"switch": {
|
||||
@@ -748,7 +775,9 @@
|
||||
"invalid-from": "操作対象のプロパティが不正: __error__",
|
||||
"invalid-json": "対象の値のJSONプロパティが不正",
|
||||
"invalid-expr": "JSONata式が不正: __error__",
|
||||
"no-override": "オブジェクト型でないプロパティを設定できません: __property__"
|
||||
"no-override": "オブジェクト型でないプロパティを設定できません: __property__",
|
||||
"invalid-prop": "プロパティ式が不正: __property__",
|
||||
"invalid-json-data": "JSONデータが不正: __error__"
|
||||
}
|
||||
},
|
||||
"range": {
|
||||
@@ -759,7 +788,11 @@
|
||||
"resultrange": "出力値の範囲",
|
||||
"from": "最小値",
|
||||
"to": "最大値",
|
||||
"roundresult": "小数値を四捨五入し整数値へ変換"
|
||||
"roundresult": "小数値を四捨五入し整数値へ変換",
|
||||
"minin": "入力最小値",
|
||||
"maxin": "入力最大値",
|
||||
"minout": "出力最小値",
|
||||
"maxout": "出力最大値"
|
||||
},
|
||||
"placeholder": {
|
||||
"min": "例) 0",
|
||||
@@ -984,7 +1017,8 @@
|
||||
"complete": "<code>msg.complete</code> プロパティが設定されたメッセージ受信後",
|
||||
"tip": "このモードでは、本ノードが <i>split</i> ノードと組となるか、 <code>msg.parts</code> プロパティが設定されたメッセージを受け取ることが前提となります。",
|
||||
"too-many": "joinノード内部で保持しているメッセージが多すぎます",
|
||||
"merge": {
|
||||
"message-prop": "メッセージプロパティ",
|
||||
"merge": {
|
||||
"topics-label": "対象トピック",
|
||||
"topics": "トピック",
|
||||
"topic": "トピック",
|
||||
@@ -1041,7 +1075,12 @@
|
||||
},
|
||||
"too-many": "batchノード内で保持しているメッセージが多すぎます",
|
||||
"unexpected": "想定外のモード",
|
||||
"no-parts": "メッセージにpartsプロパティがありません"
|
||||
"no-parts": "メッセージにpartsプロパティがありません",
|
||||
"error": {
|
||||
"invalid-count": "メッセージ数が不正",
|
||||
"invalid-overlap": "オーバラップが不正",
|
||||
"invalid-interval": "時間間隔が不正"
|
||||
}
|
||||
},
|
||||
"rbe": {
|
||||
"rbe": "filter",
|
||||
@@ -1050,7 +1089,10 @@
|
||||
"init": "初期値を送付",
|
||||
"start": "初期値",
|
||||
"name": "名前",
|
||||
"septopics": "個別に動作を適用"
|
||||
"septopics": "個別に動作を適用",
|
||||
"gap": "変化量",
|
||||
"property": "プロパティ",
|
||||
"topic": "トピック"
|
||||
},
|
||||
"placeholder": {
|
||||
"bandgap": "例:10、5%",
|
||||
|
Reference in New Issue
Block a user