Update mqtt node options to include will/cleansession/keepalive

This commit is contained in:
Nick O'Leary
2015-09-01 22:30:15 +01:00
parent 437b2d506b
commit fa5e37993e
3 changed files with 198 additions and 95 deletions

View File

@@ -211,13 +211,30 @@
},
"mqtt": {
"label": {
"broker": "Broker",
"broker": "Server",
"qos": "QoS",
"clientid": "Client ID",
"port": "Port"
"port": "Port",
"keepalive": "Keep alive time (s)",
"cleansession": "Use clean session",
"use-tls": "Enable secure (SSL/TLS) connection",
"verify-server-cert":"Verify server certificate",
"compatmode": "Use legacy MQTT 3.1 support"
},
"tabs-label": {
"connection": "Connection",
"security": "Security",
"will": "Will Message"
},
"placeholder": {
"clientid": "Leave blank for auto generated"
"clientid": "Leave blank for auto generated",
"clientid-nonclean":"Must be set for non-clean sessions",
"will-topic": "Leave blank to disable will message"
},
"state": {
"connected": "Connected to broker: __broker__",
"disconnected": "Disconnected from broker: __broker__",
"connect-failed": "Connection failed to broker: __broker__"
},
"retain": "Retain",
"true": "true",
@@ -226,7 +243,8 @@
"errors": {
"not-defined": "topic not defined",
"missing-config": "missing broker configuration",
"invalid-topic": "Invalid topic specified"
"invalid-topic": "Invalid topic specified",
"nonclean-missingclientid": "No client ID set, using clean session"
}
},
"httpin": {