mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add Japanese translations for Outliner, help sidebar and loading progress bar
This commit is contained in:
parent
90ba761325
commit
9189db5531
@ -602,6 +602,7 @@
|
|||||||
"search": "Search help",
|
"search": "Search help",
|
||||||
"nodeHelp": "Node Help",
|
"nodeHelp": "Node Help",
|
||||||
"showHelp": "Show help",
|
"showHelp": "Show help",
|
||||||
|
"showInOutline": "Show in outline",
|
||||||
"showTopics": "Show topics",
|
"showTopics": "Show topics",
|
||||||
"noHelp": "No help topic selected"
|
"noHelp": "No help topic selected"
|
||||||
},
|
},
|
||||||
@ -847,9 +848,9 @@
|
|||||||
"expandItems": "Expand items",
|
"expandItems": "Expand items",
|
||||||
"collapseItems": "Collapse items",
|
"collapseItems": "Collapse items",
|
||||||
"duplicate": "Duplicate",
|
"duplicate": "Duplicate",
|
||||||
"error": {
|
"error": {
|
||||||
"invalidJSON": "Invalid JSON: "
|
"invalidJSON": "Invalid JSON: "
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"markdownEditor": {
|
"markdownEditor": {
|
||||||
"title": "Markdown editor",
|
"title": "Markdown editor",
|
||||||
|
@ -34,6 +34,13 @@
|
|||||||
"null": "null"
|
"null": "null"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"event": {
|
||||||
|
"loadPalette": "パレットを読み込み中",
|
||||||
|
"loadNodeCatalogs": "ノードカタログを読み込み中",
|
||||||
|
"loadNodes": "ノードを読み込み中 __count__",
|
||||||
|
"loadFlows": "フローを読み込み中",
|
||||||
|
"importFlows": "ワークスペースにフローを追加中"
|
||||||
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"defaultName": "フロー __number__",
|
"defaultName": "フロー __number__",
|
||||||
"editFlow": "フローを編集: __name__",
|
"editFlow": "フローを編集: __name__",
|
||||||
@ -585,7 +592,19 @@
|
|||||||
"nodeHelp": "ノードのヘルプ",
|
"nodeHelp": "ノードのヘルプ",
|
||||||
"none": "なし",
|
"none": "なし",
|
||||||
"arrayItems": "__count__ 要素",
|
"arrayItems": "__count__ 要素",
|
||||||
"showTips": "設定からヒントを表示できます"
|
"showTips": "設定からヒントを表示できます",
|
||||||
|
"outline": "アウトライン",
|
||||||
|
"globalConfig": "グローバル設定ノード"
|
||||||
|
},
|
||||||
|
"help": {
|
||||||
|
"name": "ヘルプ",
|
||||||
|
"label": "ヘルプ",
|
||||||
|
"search": "ヘルプを検索",
|
||||||
|
"nodeHelp": "ノードヘルプ",
|
||||||
|
"showHelp": "ヘルプを表示",
|
||||||
|
"showInOutline": "アウトラインに表示",
|
||||||
|
"showTopics": "トピックを表示",
|
||||||
|
"noHelp": "ヘルプのトピックが未選択"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"name": "ノードの設定を表示",
|
"name": "ノードの設定を表示",
|
||||||
|
@ -92,7 +92,7 @@ RED.sidebar.info = (function() {
|
|||||||
RED.sidebar.info.outliner.reveal(selectedObject);
|
RED.sidebar.info.outliner.reveal(selectedObject);
|
||||||
}
|
}
|
||||||
}).appendTo(propertiesPanelHeader);
|
}).appendTo(propertiesPanelHeader);
|
||||||
RED.popover.tooltip(propertiesPanelHeaderReveal,"Show in outline");
|
RED.popover.tooltip(propertiesPanelHeaderReveal,RED._("sidebar.help.showInOutline"));
|
||||||
|
|
||||||
|
|
||||||
propertiesPanelContent = $("<div>").css({
|
propertiesPanelContent = $("<div>").css({
|
||||||
|
Loading…
Reference in New Issue
Block a user