mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #2618 from kazuhitoyokoi/dev-addjpntranslations
Fix i18n bug in outliner
This commit is contained in:
		| @@ -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": "ヘルプ", | ||||
|   | ||||
							
								
								
									
										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": { | ||||
|         "args": "value", | ||||
|         "desc": "`value` の型を文字列として返します。もし `value` が未定義の場合、 `undefined` が返されます。" | ||||
|     }, | ||||
|     "$moment": { | ||||
|         "args": "[str]", | ||||
|         "desc": "Momentライブラリを使用して日付オブジェクトを取得します。" | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -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) | ||||
|   | ||||
| @@ -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) バージョンが見つかりません", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user