mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Move messages to editor.json
This commit is contained in:
parent
7c21bf4555
commit
9e16d7f433
@ -15,6 +15,17 @@
|
|||||||
"next": "Next",
|
"next": "Next",
|
||||||
"clone": "Clone project",
|
"clone": "Clone project",
|
||||||
"cont": "Continue"
|
"cont": "Continue"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"string": "string",
|
||||||
|
"number": "number",
|
||||||
|
"boolean": "boolean",
|
||||||
|
"array": "array",
|
||||||
|
"buffer": "buffer",
|
||||||
|
"object": "object",
|
||||||
|
"jsonString": "JSON string",
|
||||||
|
"undefined": "undefined",
|
||||||
|
"null": "null"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
|
@ -15,6 +15,17 @@
|
|||||||
"next": "進む",
|
"next": "進む",
|
||||||
"clone": "プロジェクトをクローン",
|
"clone": "プロジェクトをクローン",
|
||||||
"cont": "続ける"
|
"cont": "続ける"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"string": "文字列",
|
||||||
|
"number": "数値",
|
||||||
|
"boolean": "真偽値",
|
||||||
|
"array": "配列",
|
||||||
|
"buffer": "バッファ",
|
||||||
|
"object": "オブジェクト",
|
||||||
|
"jsonString": "JSON文字列",
|
||||||
|
"undefined": "undefined",
|
||||||
|
"null": "null"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
|
@ -237,15 +237,15 @@
|
|||||||
|
|
||||||
function createTypeValueField(){
|
function createTypeValueField(){
|
||||||
return $('<input/>',{class:"node-input-rule-type-value",type:"text",style:"margin-left: 5px;"}).appendTo(row).typedInput({default:'string',types:[
|
return $('<input/>',{class:"node-input-rule-type-value",type:"text",style:"margin-left: 5px;"}).appendTo(row).typedInput({default:'string',types:[
|
||||||
{value:"string",label:RED._("node-red:switch.label.string"),hasValue:false,icon:"red/images/typedInput/az.png"},
|
{value:"string",label:RED._("common.type.string"),hasValue:false,icon:"red/images/typedInput/az.png"},
|
||||||
{value:"number",label:RED._("node-red:switch.label.number"),hasValue:false,icon:"red/images/typedInput/09.png"},
|
{value:"number",label:RED._("common.type.number"),hasValue:false,icon:"red/images/typedInput/09.png"},
|
||||||
{value:"boolean",label:RED._("node-red:switch.label.boolean"),hasValue:false,icon:"red/images/typedInput/bool.png"},
|
{value:"boolean",label:RED._("common.type.boolean"),hasValue:false,icon:"red/images/typedInput/bool.png"},
|
||||||
{value:"array",label:RED._("node-red:switch.label.array"),hasValue:false,icon:"red/images/typedInput/json.png"},
|
{value:"array",label:RED._("common.type.array"),hasValue:false,icon:"red/images/typedInput/json.png"},
|
||||||
{value:"buffer",label:RED._("node-red:switch.label.buffer"),hasValue:false,icon:"red/images/typedInput/bin.png"},
|
{value:"buffer",label:RED._("common.type.buffer"),hasValue:false,icon:"red/images/typedInput/bin.png"},
|
||||||
{value:"object",label:RED._("node-red:switch.label.object"),hasValue:false,icon:"red/images/typedInput/json.png"},
|
{value:"object",label:RED._("common.type.object"),hasValue:false,icon:"red/images/typedInput/json.png"},
|
||||||
{value:"json",label:RED._("node-red:switch.label.jsonString"),hasValue:false,icon:"red/images/typedInput/json.png"},
|
{value:"json",label:RED._("common.type.jsonString"),hasValue:false,icon:"red/images/typedInput/json.png"},
|
||||||
{value:"undefined",label:RED._("node-red:switch.label.undefined"),hasValue:false},
|
{value:"undefined",label:RED._("common.type.undefined"),hasValue:false},
|
||||||
{value:"null",label:RED._("node-red:switch.label.null"),hasValue:false}
|
{value:"null",label:RED._("common.type.null"),hasValue:false}
|
||||||
]});
|
]});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -604,15 +604,6 @@
|
|||||||
"label": {
|
"label": {
|
||||||
"property": "Property",
|
"property": "Property",
|
||||||
"rule": "rule",
|
"rule": "rule",
|
||||||
"string": "string",
|
|
||||||
"number": "number",
|
|
||||||
"boolean": "boolean",
|
|
||||||
"array": "array",
|
|
||||||
"buffer": "buffer",
|
|
||||||
"object": "object",
|
|
||||||
"jsonString": "JSON string",
|
|
||||||
"undefined": "undefined",
|
|
||||||
"null": "null",
|
|
||||||
"repair": "recreate message sequences"
|
"repair": "recreate message sequences"
|
||||||
},
|
},
|
||||||
"previous": "previous value",
|
"previous": "previous value",
|
||||||
|
@ -602,15 +602,6 @@
|
|||||||
"label": {
|
"label": {
|
||||||
"property": "プロパティ",
|
"property": "プロパティ",
|
||||||
"rule": "条件",
|
"rule": "条件",
|
||||||
"string": "文字列",
|
|
||||||
"number": "数値",
|
|
||||||
"boolean": "真偽値",
|
|
||||||
"array": "配列",
|
|
||||||
"buffer": "バッファ",
|
|
||||||
"object": "オブジェクト",
|
|
||||||
"jsonString": "JSON文字列",
|
|
||||||
"undefined": "undefined",
|
|
||||||
"null": "null",
|
|
||||||
"repair": "メッセージ列の補正"
|
"repair": "メッセージ列の補正"
|
||||||
},
|
},
|
||||||
"previous": "前回の値",
|
"previous": "前回の値",
|
||||||
|
Loading…
Reference in New Issue
Block a user