Fix the language of the tooltip

pull/2337/head
NAKAJIMA,Tomohiro 2019-10-17 19:27:08 +09:00 committed by NAKAJIMA, Tomohiro
parent 873bdc6733
commit dd20a3e685
1 changed files with 1 additions and 1 deletions

View File

@ -1048,7 +1048,7 @@ RED.subflow = (function() {
}
langs.forEach(function(l) {
var row = $('<div>').appendTo(content);
$('<span>').css({display:"inline-block",width:"50px"}).text(l+(l===currentLocale?"*":"")).appendTo(row);
$('<span>').css({display:"inline-block",width:"120px"}).text(RED._("languages."+l)+(l===currentLocale?"*":"")).appendTo(row);
$('<span>').text(ui.label[l]||"").appendTo(row);
});
return content;