mirror of https://github.com/node-red/node-red.git
Apply i18n messages to diagnostics dialog
parent
edcdc6c97c
commit
0fec9c7c55
|
@ -27,14 +27,14 @@ RED.diagnostics = (function () {
|
|||
readOnly: true,
|
||||
jsonButtons: [
|
||||
{
|
||||
text: 'Copy',
|
||||
text: RED._('clipboard.export.copy'),
|
||||
icon: 'fa fa-copy',
|
||||
click: function () {
|
||||
RED.clipboard.copyText(json, $(this), "Copied to clipboard")
|
||||
RED.clipboard.copyText(json, $(this), RED._('clipboard.copyMessageValue'))
|
||||
}
|
||||
},
|
||||
{
|
||||
text: 'Download',
|
||||
text: RED._('clipboard.download'),
|
||||
icon: 'fa fa-download',
|
||||
click: function () {
|
||||
var element = document.createElement('a');
|
||||
|
|
|
@ -515,7 +515,7 @@
|
|||
.on("click", function (evt) {
|
||||
evt.preventDefault();
|
||||
if (button.click !== undefined) {
|
||||
button.click(evt);
|
||||
button.click.call(element, evt);
|
||||
}
|
||||
});
|
||||
if (button.id) { element.attr("id", button.id); }
|
||||
|
|
Loading…
Reference in New Issue