Allow port labels be i18n identifiers

This commit is contained in:
Nick O'Leary
2017-01-27 22:36:00 +00:00
parent 85b2a03a42
commit 50017c28da
2 changed files with 9 additions and 1 deletions

View File

@@ -1500,6 +1500,9 @@ RED.view = (function() {
} else if ($.isArray(portLabels)) {
result = portLabels[portIndex];
}
if (result) {
result = node._(result);
}
return result;
}
function portMouseOver(port,d,portType,portIndex) {