mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Merge pull request #3530 from Steve-Mcl/mqtt-payload-auto-parsing
MQTT payload auto parsing improvements
This commit is contained in:
@@ -423,6 +423,7 @@
|
||||
"string": "Ein String",
|
||||
"base64": "Ein Base64-kodierter String",
|
||||
"auto": "Auto-Erkennung (string oder buffer)",
|
||||
"auto-detect": "Auto-Erkennung (parsed JSON-Objekt, string oder buffer)",
|
||||
"json": "Ein analysiertes (parsed) JSON-Objekt"
|
||||
},
|
||||
"true": "wahr",
|
||||
|
@@ -424,7 +424,8 @@
|
||||
"action": "Action",
|
||||
"staticTopic": "Subscribe to single topic",
|
||||
"dynamicTopic": "Dynamic subscription",
|
||||
"auto-connect": "Connect automatically"
|
||||
"auto-connect": "Connect automatically",
|
||||
"auto-mode-depreciated": "This option is depreciated. Please use the new auto-detect mode."
|
||||
},
|
||||
"sections-label":{
|
||||
"birth-message": "Message sent on connection (birth message)",
|
||||
@@ -455,6 +456,7 @@
|
||||
"string": "a String",
|
||||
"base64": "a Base64 encoded string",
|
||||
"auto": "auto-detect (string or buffer)",
|
||||
"auto-detect": "auto-detect (parsed JSON object, string or buffer)",
|
||||
"json": "a parsed JSON object"
|
||||
},
|
||||
"true": "true",
|
||||
|
@@ -455,6 +455,7 @@
|
||||
"string": "文字列",
|
||||
"base64": "Base64文字列",
|
||||
"auto": "自動判定(文字列もしくはバイナリバッファ)",
|
||||
"auto-detect": "自動判定(JSONオブジェクト、文字列もしくはバイナリバッファ)",
|
||||
"json": "JSONオブジェクト"
|
||||
},
|
||||
"true": "する",
|
||||
|
@@ -362,6 +362,7 @@
|
||||
"string": "문자열",
|
||||
"base64": "Base64문자열",
|
||||
"auto": "자동판정(문자열혹은 바이너리버퍼)",
|
||||
"auto-detect": "자동판정(JSON오브젝트, 문자열혹은 바이너리버퍼)",
|
||||
"json": "JSON오브젝트"
|
||||
},
|
||||
"true": "한다",
|
||||
|
@@ -385,6 +385,7 @@
|
||||
"string": "строка",
|
||||
"base64": "строка в кодировке Base64",
|
||||
"auto": "автоопределение (строка или буфер)",
|
||||
"auto-detect": "автоопределение (разобрать объект JSON, строка или буфер)",
|
||||
"json": "объект JSON"
|
||||
},
|
||||
"true": "да",
|
||||
|
@@ -382,6 +382,7 @@
|
||||
"string": "字符串",
|
||||
"base64": "Base64编码字符串",
|
||||
"auto": "自动检测 (字符串或buffer)",
|
||||
"auto-detect": "自动检测 (已解析的JSON对象、字符串或buffer)",
|
||||
"json": "解析的JSON对象"
|
||||
},
|
||||
"true": "是",
|
||||
|
@@ -386,6 +386,7 @@
|
||||
"string": "字串",
|
||||
"base64": "Base64編碼字串",
|
||||
"auto": "自動檢測 (字符串或buffer)",
|
||||
"auto-detect": "自动检测 (已解析的JSON对象、字符串或buffer)",
|
||||
"json": "解析的JSON對象"
|
||||
},
|
||||
"true": "是",
|
||||
|
Reference in New Issue
Block a user