Add Japanese translations for outliner, jsonata and runtime

This commit is contained in:
Kazuhito Yokoi 2020-06-16 21:32:10 +09:00
parent afb782410d
commit 52eb158231
4 changed files with 20 additions and 3 deletions

View File

@ -20,7 +20,9 @@
"fill": "塗りつぶし",
"label": "ラベル",
"color": "色",
"position": "配置"
"position": "配置",
"enable": "有効",
"disable": "無効"
},
"type": {
"string": "文字列",
@ -595,7 +597,16 @@
"showTips": "設定からヒントを表示できます",
"outline": "アウトライン",
"empty": "空",
"globalConfig": "グローバル設定ノード"
"globalConfig": "グローバル設定ノード",
"triggerAction": "アクションを実行",
"find": "ワークスペース内を検索",
"search": {
"configNodes": "設定ノード",
"unusedConfigNodes": "未使用の設定ノード",
"invalidNodes": "不正なノード",
"uknownNodes": "未知のノード",
"unusedSubflows": "未使用のサブフロー"
}
},
"help": {
"name": "ヘルプ",

View File

@ -266,5 +266,9 @@
"$type": {
"args": "value",
"desc": "`value` の型を文字列として返します。もし `value` が未定義の場合、 `undefined` が返されます。"
},
"$moment": {
"args": "[str]",
"desc": "Momentライブラリを使用して日付オブジェクトを取得します。"
}
}

View File

@ -203,7 +203,7 @@ RED.sidebar.info.outliner = (function() {
}
});
RED.popover.tooltip(toggleButton,function() {
return RED._("common.label."+((n.type==='tab' && n.disabled) || (n.type!=='tab' && n.d))?"enable":"disable")
return RED._("common.label."+(((n.type==='tab' && n.disabled) || (n.type!=='tab' && n.d))?"enable":"disable"));
});
} else {
$('<div class="red-ui-info-outline-item-control-spacer">').appendTo(controls)

View File

@ -31,6 +31,8 @@
"install-failed": "インストールに失敗しました",
"install-failed-long": "モジュール __name__ のインストールに失敗しました:",
"install-failed-not-found": "$t(server.install.install-failed-long) モジュールが見つかりません",
"install-failed-name": "$t(server.install.install-failed-long) 不正なモジュール名: __name__",
"install-failed-url": "$t(server.install.install-failed-long) 不正なURL: __url__",
"upgrading": "モジュール __name__ をバージョン __version__ に更新します",
"upgraded": "モジュール __name__ を更新しました。新しいバージョンを使うには、Node-REDを再起動してください。",
"upgrade-failed-not-found": "$t(server.install.install-failed-long) バージョンが見つかりません",