mirror of https://github.com/node-red/node-red.git
Merge bde5a2b7cd
into 23c44db30d
commit
272a5dfb7b
|
@ -307,6 +307,7 @@
|
|||
"alreadyExists": "This node already exists"
|
||||
},
|
||||
"copyMessagePath": "Path copied",
|
||||
"copyMessagePathForMustache": "Path copied for Mustache",
|
||||
"copyMessageValue": "Value copied",
|
||||
"copyMessageValue_truncated": "Truncated value copied"
|
||||
},
|
||||
|
|
|
@ -307,6 +307,7 @@
|
|||
"alreadyExists": "本ノードは既に存在"
|
||||
},
|
||||
"copyMessagePath": "パスをコピーしました",
|
||||
"copyMessagePathForMustache": "Mustache向けのパスをコピーしました",
|
||||
"copyMessageValue": "値をコピーしました",
|
||||
"copyMessageValue_truncated": "切り捨てられた値をコピーしました"
|
||||
},
|
||||
|
|
|
@ -237,12 +237,21 @@ RED.utils = (function() {
|
|||
var tools = $('<span class="red-ui-debug-msg-tools"></span>').appendTo(obj);
|
||||
var copyTools = $('<span class="red-ui-debug-msg-tools-copy button-group"></span>').appendTo(tools);
|
||||
if (!!key) {
|
||||
var mustachePath = key.replace(/\["([^\]]+)"\]/g,'.$1').replace(/\[([0-9]+)\]/g,'.$1');
|
||||
var copyPath = $('<button class="red-ui-button red-ui-button-small"><i class="fa fa-terminal"></i></button>').appendTo(copyTools).on("click", function(e) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
RED.clipboard.copyText(key,copyPath,"clipboard.copyMessagePath");
|
||||
if ((e.ctrlKey || e.metaKey) && key !== mustachePath) {
|
||||
RED.clipboard.copyText(mustachePath,copyPath,"clipboard.copyMessagePathForMustache");
|
||||
} else {
|
||||
RED.clipboard.copyText(key,copyPath,"clipboard.copyMessagePath");
|
||||
}
|
||||
})
|
||||
RED.popover.tooltip(copyPath,RED._("node-red:debug.sidebar.copyPath"));
|
||||
if (key !== mustachePath) {
|
||||
RED.popover.tooltip(copyPath,RED._("node-red:debug.sidebar.copyPathForMustache"));
|
||||
} else {
|
||||
RED.popover.tooltip(copyPath,RED._("node-red:debug.sidebar.copyPath"));
|
||||
}
|
||||
}
|
||||
var copyPayload = $('<button class="red-ui-button red-ui-button-small"><i class="fa fa-clipboard"></i></button>').appendTo(copyTools).on("click", function(e) {
|
||||
e.preventDefault();
|
||||
|
|
|
@ -161,6 +161,7 @@
|
|||
"filterLog": "Filter messages",
|
||||
"openWindow": "Open in new window",
|
||||
"copyPath": "Copy path",
|
||||
"copyPathForMustache": "Copy path (Mustache path by ctrl+click)",
|
||||
"copyPayload": "Copy value",
|
||||
"pinPath": "Pin open",
|
||||
"selectAll": "select all",
|
||||
|
|
|
@ -161,6 +161,7 @@
|
|||
"filterLog": "ログのフィルタリング",
|
||||
"openWindow": "新しいウィンドウで開く",
|
||||
"copyPath": "パスをコピー",
|
||||
"copyPathForMustache": "パスをコピー(Ctrl+クリックでMustacheパス)",
|
||||
"copyPayload": "値をコピー",
|
||||
"pinPath": "展開を固定",
|
||||
"selectAll": "全てを選択",
|
||||
|
|
Loading…
Reference in New Issue