mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #2306 from kazuhitoyokoi/master-fixtooltips
i18n support in tooltips
This commit is contained in:
commit
8e18cf5986
@ -444,8 +444,8 @@
|
|||||||
"none" : "keine",
|
"none" : "keine",
|
||||||
"subflows" : "Subflows",
|
"subflows" : "Subflows",
|
||||||
"flows" : "Flows",
|
"flows" : "Flows",
|
||||||
"filterUnused" : "Nicht verwendet",
|
|
||||||
"filterAll" : "alle",
|
"filterAll" : "alle",
|
||||||
|
"filterUnused" : "Nicht verwendet",
|
||||||
"filtered" : "__count__ verdeckt"
|
"filtered" : "__count__ verdeckt"
|
||||||
},
|
},
|
||||||
"context" : {
|
"context" : {
|
||||||
|
@ -315,6 +315,7 @@
|
|||||||
"labelInputs": "Inputs",
|
"labelInputs": "Inputs",
|
||||||
"labelOutputs": "Outputs",
|
"labelOutputs": "Outputs",
|
||||||
"settingIcon": "Icon",
|
"settingIcon": "Icon",
|
||||||
|
"default": "default",
|
||||||
"noDefaultLabel": "none",
|
"noDefaultLabel": "none",
|
||||||
"defaultLabel": "use default label",
|
"defaultLabel": "use default label",
|
||||||
"searchIcons": "Search icons",
|
"searchIcons": "Search icons",
|
||||||
@ -557,8 +558,10 @@
|
|||||||
"none": "none",
|
"none": "none",
|
||||||
"subflows": "subflows",
|
"subflows": "subflows",
|
||||||
"flows": "flows",
|
"flows": "flows",
|
||||||
"filterUnused":"unused",
|
"filterAll": "all",
|
||||||
"filterAll":"all",
|
"showAllConfigNodes": "Show all config nodes",
|
||||||
|
"filterUnused": "unused",
|
||||||
|
"showAllUnusedConfigNodes": "Show all unused config nodes",
|
||||||
"filtered": "__count__ hidden"
|
"filtered": "__count__ hidden"
|
||||||
},
|
},
|
||||||
"context": {
|
"context": {
|
||||||
|
@ -315,6 +315,7 @@
|
|||||||
"labelInputs": "入力",
|
"labelInputs": "入力",
|
||||||
"labelOutputs": "出力",
|
"labelOutputs": "出力",
|
||||||
"settingIcon": "アイコン",
|
"settingIcon": "アイコン",
|
||||||
|
"default": "デフォルト",
|
||||||
"noDefaultLabel": "なし",
|
"noDefaultLabel": "なし",
|
||||||
"defaultLabel": "既定のラベルを使用",
|
"defaultLabel": "既定のラベルを使用",
|
||||||
"searchIcons": "アイコンを検索",
|
"searchIcons": "アイコンを検索",
|
||||||
@ -557,8 +558,10 @@
|
|||||||
"none": "なし",
|
"none": "なし",
|
||||||
"subflows": "サブフロー",
|
"subflows": "サブフロー",
|
||||||
"flows": "フロー",
|
"flows": "フロー",
|
||||||
"filterUnused": "未使用",
|
|
||||||
"filterAll": "全て",
|
"filterAll": "全て",
|
||||||
|
"showAllConfigNodes": "全設定ノードを表示",
|
||||||
|
"filterUnused": "未使用",
|
||||||
|
"showAllUnusedConfigNodes": "未使用の全設定ノードを表示",
|
||||||
"filtered": "__count__ 個が無効"
|
"filtered": "__count__ 個が無効"
|
||||||
},
|
},
|
||||||
"context": {
|
"context": {
|
||||||
|
@ -494,8 +494,8 @@
|
|||||||
"none": "없음",
|
"none": "없음",
|
||||||
"subflows": "보조 플로우",
|
"subflows": "보조 플로우",
|
||||||
"flows": "플로우",
|
"flows": "플로우",
|
||||||
"filterUnused": "미사용",
|
|
||||||
"filterAll": "전체",
|
"filterAll": "전체",
|
||||||
|
"filterUnused": "미사용",
|
||||||
"filtered": "__count__ 개 숨김"
|
"filtered": "__count__ 개 숨김"
|
||||||
},
|
},
|
||||||
"context": {
|
"context": {
|
||||||
|
@ -385,8 +385,8 @@
|
|||||||
"none": "无",
|
"none": "无",
|
||||||
"subflows": "子流程",
|
"subflows": "子流程",
|
||||||
"flows": "流程",
|
"flows": "流程",
|
||||||
"filterUnused": "未使用",
|
|
||||||
"filterAll": "所有",
|
"filterAll": "所有",
|
||||||
|
"filterUnused": "未使用",
|
||||||
"filtered": "__count__ 个隐藏"
|
"filtered": "__count__ 个隐藏"
|
||||||
},
|
},
|
||||||
"palette": {
|
"palette": {
|
||||||
|
@ -1034,7 +1034,7 @@ RED.editor = (function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
RED.popover.tooltip(iconButton, function() {
|
RED.popover.tooltip(iconButton, function() {
|
||||||
return $("#red-ui-editor-node-icon").val()||"default";
|
return $("#red-ui-editor-node-icon").val() || RED._("editor.default");
|
||||||
})
|
})
|
||||||
$('<input type="hidden" id="red-ui-editor-node-icon">').val(node.icon).appendTo(iconRow);
|
$('<input type="hidden" id="red-ui-editor-node-icon">').val(node.icon).appendTo(iconRow);
|
||||||
}
|
}
|
||||||
|
@ -346,8 +346,8 @@ RED.sidebar.config = (function() {
|
|||||||
refreshConfigNodeList();
|
refreshConfigNodeList();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
RED.popover.tooltip($('#red-ui-sidebar-config-filter-all'),"Show all config nodes");
|
RED.popover.tooltip($('#red-ui-sidebar-config-filter-all'), RED._("sidebar.config.showAllUnusedConfigNodes"));
|
||||||
RED.popover.tooltip($('#red-ui-sidebar-config-filter-unused'),"Show all unused config nodes");
|
RED.popover.tooltip($('#red-ui-sidebar-config-filter-unused'), RED._("sidebar.config.showAllUnusedConfigNodes"));
|
||||||
|
|
||||||
}
|
}
|
||||||
function show(id) {
|
function show(id) {
|
||||||
|
Loading…
Reference in New Issue
Block a user