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%",
|
||||
|
||||
Reference in New Issue
Block a user