From dd20a3e68560fd23c8cab9cfe7b0366aa30ed974 Mon Sep 17 00:00:00 2001 From: "NAKAJIMA,Tomohiro" Date: Thu, 17 Oct 2019 19:27:08 +0900 Subject: [PATCH] Fix the language of the tooltip --- .../node_modules/@node-red/editor-client/src/js/ui/subflow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/subflow.js b/packages/node_modules/@node-red/editor-client/src/js/ui/subflow.js index c83a1dd8a..acb479670 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/subflow.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/subflow.js @@ -1048,7 +1048,7 @@ RED.subflow = (function() { } langs.forEach(function(l) { var row = $('
').appendTo(content); - $('').css({display:"inline-block",width:"50px"}).text(l+(l===currentLocale?"*":"")).appendTo(row); + $('').css({display:"inline-block",width:"120px"}).text(RED._("languages."+l)+(l===currentLocale?"*":"")).appendTo(row); $('').text(ui.label[l]||"").appendTo(row); }); return content;