diff --git a/packages/node_modules/@node-red/editor-client/locales/ja/editor.json b/packages/node_modules/@node-red/editor-client/locales/ja/editor.json index 53c8616fd..c64cf7560 100644 --- a/packages/node_modules/@node-red/editor-client/locales/ja/editor.json +++ b/packages/node_modules/@node-red/editor-client/locales/ja/editor.json @@ -924,7 +924,14 @@ "date": "日時", "jsonata": "JSONata式", "env": "環境変数", - "cred": "認証情報" + "cred": "認証情報", + "conf-types": "設定ノード" + }, + "date": { + "format": { + "timestamp": "エポックからのミリ秒", + "object": "JavaScript日付オブジェクト" + } } }, "editableList": { @@ -1230,7 +1237,7 @@ }, "env-var": { "environment": "環境変数", - "header": "大域環境変数", + "header": "グローバル環境変数", "revert": "破棄" }, "action-list": { @@ -1382,7 +1389,7 @@ "copy-item-edit-url": "要素の編集URLをコピー", "move-flow-to-start": "フローを先頭に移動", "move-flow-to-end": "フローを末尾に移動", - "show-global-env": "大域環境変数を表示", + "show-global-env": "グローバル環境変数を表示", "lock-flow": "フローを固定", "unlock-flow": "フローの固定を解除", "show-node-help": "ノードのヘルプを表示" diff --git a/packages/node_modules/@node-red/editor-client/src/tours/3.1/welcome.js b/packages/node_modules/@node-red/editor-client/src/tours/3.1/welcome.js index 371a1b31c..6905e5494 100644 --- a/packages/node_modules/@node-red/editor-client/src/tours/3.1/welcome.js +++ b/packages/node_modules/@node-red/editor-client/src/tours/3.1/welcome.js @@ -207,7 +207,7 @@ export default { description: { "en-US": `

You can set environment variables that apply to all nodes and flows in the new 'Global Environment Variables' section of User Settings.

`, - "ja": `

ユーザ設定に新しく追加された「大域環境変数」のセクションで、全てのノードとフローに適用される環境変数を登録できます。

`, + "ja": `

ユーザ設定に新しく追加された「グローバル環境変数」のセクションで、全てのノードとフローに適用される環境変数を登録できます。

`, "fr": `

Vous pouvez définir des variables d'environnement qui s'appliquent à tous les noeuds et flux dans la nouvelle section "Global Environment Variables" des paramètres utilisateur.

` }, diff --git a/packages/node_modules/@node-red/editor-client/src/tours/welcome.js b/packages/node_modules/@node-red/editor-client/src/tours/welcome.js index 4c236d8ed..75152225d 100644 --- a/packages/node_modules/@node-red/editor-client/src/tours/welcome.js +++ b/packages/node_modules/@node-red/editor-client/src/tours/welcome.js @@ -5,7 +5,7 @@ export default { titleIcon: "fa fa-map-o", title: { "en-US": "Welcome to Node-RED 4.0 Beta 1!", - "ja": "Node-RED 4.0 Beta 0へようこそ!", + "ja": "Node-RED 4.0 Beta 1へようこそ!", "fr": "Bienvenue dans Node-RED 4.0 Beta 1!" }, description: { @@ -17,7 +17,7 @@ export default { { title: { "en-US": "Timestamp formatting options", - // "ja": "" + "ja": "タイムスタンプの形式の項目" }, image: 'images/nr4-timestamp-formatting.png', description: { @@ -28,26 +28,33 @@ export default {
  • ISO 8601 - a common format used by many systems
  • JavaScript Data Object
  • `, - // "ja": `` + "ja": `

    タイムスタンプを設定するノードに、タイムスタンプの形式を指定できる項目が追加されました。

    +

    次の3つの項目を追加したことで、簡単に選択できるようになりました:

    +

    ` } }, { title: { "en-US": "Auto-complete of flow/global and env types", - // "ja": "" + "ja": "フロー/グローバル、環境変数の型の自動補完" }, image: 'images/nr4-auto-complete.png', description: { "en-US": `

    The flow/global context inputs and the env input now all include auto-complete suggestions based on the live state of your flows.

    `, - // "ja": `` + "ja": `

    flow/globalコンテキストやenvの入力を、現在のフローの状態をもとに自動補完で提案するようになりました。

    + ` } }, { title: { "en-US": "Config node customisation in Subflows", - // "ja": "" + "ja": "サブフローでの設定ノードのカスタマイズ" }, image: 'images/nr4-sf-config.png', description: { @@ -56,7 +63,9 @@ export default {

    For example, each instance of a subflow that connects to an MQTT Broker and does some post-processing of the messages received can be pointed at a different broker.

    `, - // "ja": `` + "ja": `

    サブフローをカスタマイズして、選択した型の異なる設定ノードを各インスタンスが使用できるようになりました。

    +

    例えば、MQTTブローカへ接続し、メッセージ受信と後処理を行うサブフローの各インスタンスに異なるブローカを指定することも可能です。

    + ` } }, { @@ -74,6 +83,13 @@ export default {
  • Customisable headers on the WebSocket node
  • Split node now can operate on any message property
  • and lots more...
  • + `, + "ja": `

    コアノードには沢山の軽微な修正、ドキュメント更新、小さな機能拡張が入っています。全リストはヘルプサイドバーにある変更履歴を参照してください。

    + ` } } diff --git a/packages/node_modules/@node-red/nodes/locales/ja/common/91-global-config.html b/packages/node_modules/@node-red/nodes/locales/ja/common/91-global-config.html index 2eda840ec..2b0d0cc19 100644 --- a/packages/node_modules/@node-red/nodes/locales/ja/common/91-global-config.html +++ b/packages/node_modules/@node-red/nodes/locales/ja/common/91-global-config.html @@ -1,3 +1,3 @@ p diff --git a/packages/node_modules/@node-red/nodes/locales/ja/messages.json b/packages/node_modules/@node-red/nodes/locales/ja/messages.json index 48b95c93f..fe81a80ad 100644 --- a/packages/node_modules/@node-red/nodes/locales/ja/messages.json +++ b/packages/node_modules/@node-red/nodes/locales/ja/messages.json @@ -850,7 +850,13 @@ "newline": "改行コード", "usestrings": "数値を変換する", "include_empty_strings": "空の文字を含む", - "include_null_values": "null値を含む" + "include_null_values": "null値を含む", + "spec": "パーサ" + }, + "spec": { + "rfc": "RFC4180", + "legacy": "従来", + "legacy_warning": "従来モードは将来のリリースで削除される予定です" }, "placeholder": { "columns": "コンマ区切りで列名を入力" @@ -879,6 +885,7 @@ "once": "ヘッダを一度だけ送信する(msg.resetの受け付けると再送)" }, "errors": { + "bad_template": "不正な列テンプレート", "csv_js": "本ノードが処理できる形式は、CSV文字列またはJSONのみです", "obj_csv": "オブジェクトをCSVへ変換する際の列名が設定されていません", "bad_csv": "不正なCSVデータ - 出力の修正を試みました" @@ -888,12 +895,14 @@ "label": { "select": "抽出する要素", "output": "出力", - "in": "対象:" + "in": "対象:", + "prefix": "HTMLコンテンツのプロパティ名" }, "output": { "html": "要素内のHTML", "text": "要素のテキストのみ", - "attr": "要素の全ての属性" + "attr": "要素の全ての属性", + "compl": "要素やHTMLコンテンツの属性オブジェクト" }, "format": { "single": "配列化した1つのメッセージ",