mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #2618 from kazuhitoyokoi/dev-addjpntranslations
Fix i18n bug in outliner
This commit is contained in:
commit
d37eebd8ed
@ -20,7 +20,9 @@
|
|||||||
"fill": "塗りつぶし",
|
"fill": "塗りつぶし",
|
||||||
"label": "ラベル",
|
"label": "ラベル",
|
||||||
"color": "色",
|
"color": "色",
|
||||||
"position": "配置"
|
"position": "配置",
|
||||||
|
"enable": "有効",
|
||||||
|
"disable": "無効"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
"string": "文字列",
|
"string": "文字列",
|
||||||
@ -595,7 +597,16 @@
|
|||||||
"showTips": "設定からヒントを表示できます",
|
"showTips": "設定からヒントを表示できます",
|
||||||
"outline": "アウトライン",
|
"outline": "アウトライン",
|
||||||
"empty": "空",
|
"empty": "空",
|
||||||
"globalConfig": "グローバル設定ノード"
|
"globalConfig": "グローバル設定ノード",
|
||||||
|
"triggerAction": "アクションを実行",
|
||||||
|
"find": "ワークスペース内を検索",
|
||||||
|
"search": {
|
||||||
|
"configNodes": "設定ノード",
|
||||||
|
"unusedConfigNodes": "未使用の設定ノード",
|
||||||
|
"invalidNodes": "不正なノード",
|
||||||
|
"uknownNodes": "未知のノード",
|
||||||
|
"unusedSubflows": "未使用のサブフロー"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"name": "ヘルプ",
|
"name": "ヘルプ",
|
||||||
|
4
packages/node_modules/@node-red/editor-client/locales/ja/jsonata.json
vendored
Executable file → Normal file
4
packages/node_modules/@node-red/editor-client/locales/ja/jsonata.json
vendored
Executable file → Normal file
@ -266,5 +266,9 @@
|
|||||||
"$type": {
|
"$type": {
|
||||||
"args": "value",
|
"args": "value",
|
||||||
"desc": "`value` の型を文字列として返します。もし `value` が未定義の場合、 `undefined` が返されます。"
|
"desc": "`value` の型を文字列として返します。もし `value` が未定義の場合、 `undefined` が返されます。"
|
||||||
|
},
|
||||||
|
"$moment": {
|
||||||
|
"args": "[str]",
|
||||||
|
"desc": "Momentライブラリを使用して日付オブジェクトを取得します。"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -203,7 +203,7 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
RED.popover.tooltip(toggleButton,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 {
|
} else {
|
||||||
$('<div class="red-ui-info-outline-item-control-spacer">').appendTo(controls)
|
$('<div class="red-ui-info-outline-item-control-spacer">').appendTo(controls)
|
||||||
|
@ -31,6 +31,8 @@
|
|||||||
"install-failed": "インストールに失敗しました",
|
"install-failed": "インストールに失敗しました",
|
||||||
"install-failed-long": "モジュール __name__ のインストールに失敗しました:",
|
"install-failed-long": "モジュール __name__ のインストールに失敗しました:",
|
||||||
"install-failed-not-found": "$t(server.install.install-failed-long) モジュールが見つかりません",
|
"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__ に更新します",
|
"upgrading": "モジュール __name__ をバージョン __version__ に更新します",
|
||||||
"upgraded": "モジュール __name__ を更新しました。新しいバージョンを使うには、Node-REDを再起動してください。",
|
"upgraded": "モジュール __name__ を更新しました。新しいバージョンを使うには、Node-REDを再起動してください。",
|
||||||
"upgrade-failed-not-found": "$t(server.install.install-failed-long) バージョンが見つかりません",
|
"upgrade-failed-not-found": "$t(server.install.install-failed-long) バージョンが見つかりません",
|
||||||
|
Loading…
Reference in New Issue
Block a user