Add Japanese translation for error message when creating subflow

This commit is contained in:
Kazuhito Yokoi
2023-07-02 15:51:35 +09:00
parent 234e92db12
commit c4019bd91d
3 changed files with 3 additions and 1 deletions

View File

@@ -647,7 +647,7 @@ RED.subflow = (function() {
for (i=0; i<nodeList.length;i++) {
if (nodeList[i].g && !includedGroups.has(nodeList[i].g)) {
if (containingGroup !== nodeList[i].g) {
RED.notify("Cannot create subflow across multiple groups","error");
RED.notify(RED._("subflow.errors.acrossMultipleGroups"), "error");
return;
}
}