Merge pull request #2047 from node-red-hitachi/fix-use-common-i18n-label

Fix use of i18n label
This commit is contained in:
Nick O'Leary 2019-02-05 08:31:38 +00:00 committed by GitHub
commit aab0f2dcd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View File

@ -903,7 +903,6 @@
"properties": "Properties", "properties": "Properties",
"description": "Description", "description": "Description",
"appearance": "Appearance", "appearance": "Appearance",
"env": "Environment Variables", "env": "Environment Variables"
"name": "name"
} }
} }

View File

@ -902,7 +902,6 @@
"properties": "プロパティ", "properties": "プロパティ",
"description": "説明", "description": "説明",
"appearance": "外観", "appearance": "外観",
"env": "環境変数", "env": "環境変数"
"name": "変数名"
} }
} }

View File

@ -554,7 +554,7 @@ RED.editor = (function() {
class: "node-input-env-name", class: "node-input-env-name",
type: "text", type: "text",
style: "margin-left: 5px; width: calc(40% - 5px)", style: "margin-left: 5px; width: calc(40% - 5px)",
placeholder: RED._("editor-tab.name") placeholder: RED._("common.label.name")
}).appendTo(row); }).appendTo(row);
var valueField = $('<input/>',{ var valueField = $('<input/>',{
class: "node-input-env-value", class: "node-input-env-value",