Add Japanese translations for Node-RED v1.3.0

This commit is contained in:
Kazuhito Yokoi
2021-02-15 13:02:58 +09:00
parent e5471b44e0
commit ed359ca10c
4 changed files with 28 additions and 10 deletions

View File

@@ -2025,7 +2025,11 @@ RED.subflow = (function() {
var licenses = ["none", "Apache-2.0", "BSD-3-Clause", "BSD-2-Clause", "GPL-2.0", "GPL-3.0", "MIT", "MPL-2.0", "CDDL-1.0", "EPL-2.0"];
var typedLicenses = {
types: licenses.map(function(l) {
return {value:l,label:l,hasValue:false}
return {
value: l,
label: l === "none" ? RED._("editor:subflow.licenseNone") : l,
hasValue: false
};
})
}
typedLicenses.types.push({