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 04818601e..a295eec9e 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
@@ -1287,6 +1287,10 @@
"zoom-in": "ズームイン",
"zoom-out": "ズームアウト",
"zoom-reset": "ズームリセット",
- "toggle-navigator": "ナビゲータ表示切替"
+ "toggle-navigator": "ナビゲータ表示切替",
+ "new-project": "新しいプロジェクト",
+ "open-project": "プロジェクトを開く",
+ "show-project-settings": "プロジェクト設定を表示",
+ "show-version-control-tab": "バージョンコントロールタブを表示"
}
}
diff --git a/packages/node_modules/@node-red/editor-client/locales/ja/infotips.json b/packages/node_modules/@node-red/editor-client/locales/ja/infotips.json
index 45ba8450e..14459fa10 100644
--- a/packages/node_modules/@node-red/editor-client/locales/ja/infotips.json
+++ b/packages/node_modules/@node-red/editor-client/locales/ja/infotips.json
@@ -17,7 +17,7 @@
"tip14": "[shift] を押しながらノードを [click] すると、接続された全てのノードを選択できます。",
"tip15": "[ctrl] を押しながらノードを [click] すると、選択/非選択を切り替えできます。",
"tip16": "{{core:show-previous-tab}} や {{core:show-next-tab}} で、タブの切り替えができます。",
- "tip17": "ノードのプロバティ設定画面にて {{core:confirm-edit-tray}} を押すと、変更を確定できます。また、 {{core:cancel-edit-tray}} を押すと、変更を取り消せます。",
+ "tip17": "ノードのプロパティ設定画面にて {{core:confirm-edit-tray}} を押すと、変更を確定できます。また、 {{core:cancel-edit-tray}} を押すと、変更を取り消せます。",
"tip18": "ノードを選択し、 {{core:edit-selected-node}} を押すとプロパティ設定画面が表示されます。"
}
}
diff --git a/packages/node_modules/@node-red/editor-client/src/sass/jquery.scss b/packages/node_modules/@node-red/editor-client/src/sass/jquery.scss
index a884d6641..b7278b332 100644
--- a/packages/node_modules/@node-red/editor-client/src/sass/jquery.scss
+++ b/packages/node_modules/@node-red/editor-client/src/sass/jquery.scss
@@ -27,10 +27,10 @@
}
.ui-widget.ui-widget-content {
- border: 1px solid $tertiary-border-color;
+ border: 1px solid $tertiary-border-color;
}
.ui-widget-content {
- border: 1px solid $secondary-border-color;
+ border: 1px solid $secondary-border-color;
}
.ui-widget-header {
diff --git a/packages/node_modules/@node-red/editor-client/src/sass/palette-editor.scss b/packages/node_modules/@node-red/editor-client/src/sass/palette-editor.scss
index b09c32d6d..34fbd3e07 100644
--- a/packages/node_modules/@node-red/editor-client/src/sass/palette-editor.scss
+++ b/packages/node_modules/@node-red/editor-client/src/sass/palette-editor.scss
@@ -254,7 +254,7 @@ button.red-ui-palette-editor-upload-button {
padding: 2px 8px;
}
form {
- width: 0;
+ width: 0;
}
}
.red-ui-palette-editor-upload {
diff --git a/packages/node_modules/@node-red/nodes/core/function/10-function.html b/packages/node_modules/@node-red/nodes/core/function/10-function.html
index a1ed14f6d..8d4145a68 100644
--- a/packages/node_modules/@node-red/nodes/core/function/10-function.html
+++ b/packages/node_modules/@node-red/nodes/core/function/10-function.html
@@ -399,7 +399,7 @@
$("#func-tabs-content").children().hide();
$("#" + tab.id).show();
let editor = $("#" + tab.id).find('.monaco-editor').first();
- if(editor.length) {
+ if(editor.length) {
if(that.editor.nodered && that.editor.type == "monaco") {
that.editor.nodered.refreshModuleLibs(getLibsList());
}
diff --git a/packages/node_modules/@node-red/nodes/core/sequence/19-batch.html b/packages/node_modules/@node-red/nodes/core/sequence/19-batch.html
index 418ac605b..995ed71bc 100644
--- a/packages/node_modules/@node-red/nodes/core/sequence/19-batch.html
+++ b/packages/node_modules/@node-red/nodes/core/sequence/19-batch.html
@@ -47,7 +47,7 @@
diff --git a/packages/node_modules/@node-red/nodes/locales/ja/function/10-function.html b/packages/node_modules/@node-red/nodes/locales/ja/function/10-function.html
index a18e5e8a8..960b755f6 100644
--- a/packages/node_modules/@node-red/nodes/locales/ja/function/10-function.html
+++ b/packages/node_modules/@node-red/nodes/locales/ja/function/10-function.html
@@ -28,7 +28,7 @@
返却/sendの対象は次のとおりです:
- 単一メッセージオブジェクト - 最初の出力に接続されたノードに渡されます
- - メッセージオブジェクトの配列 - 対応する出力に接続されたノードに渡されます
+ - メッセージオブジェクトの配列 - 対応する出力に接続されたノードに渡されます
注: 初期化処理の実行はノードの初期化中に行われます。そのため、初期化処理タブにsendを記述した場合に後続ノードでメッセージを受け取れないことがあります。
配列要素が配列の場合には、複数のメッセージを対応する出力に送出します。
diff --git a/packages/node_modules/@node-red/nodes/locales/ja/network/10-mqtt.html b/packages/node_modules/@node-red/nodes/locales/ja/network/10-mqtt.html
index 1b43ea097..435829e1e 100644
--- a/packages/node_modules/@node-red/nodes/locales/ja/network/10-mqtt.html
+++ b/packages/node_modules/@node-red/nodes/locales/ja/network/10-mqtt.html
@@ -89,7 +89,7 @@
userProperties オブジェクト
MQTTv5: メッセージのユーザプロパティ
messageExpiryInterval 数値
-
MQTTv5: 秒単位のメッセージの有効期限
+
MQTTv5: 秒単位のメッセージの有効期限
topicAlias 数値
MQTTv5: 使用するMQTTトピックエイリアス
diff --git a/packages/node_modules/@node-red/runtime/locales/ja/runtime.json b/packages/node_modules/@node-red/runtime/locales/ja/runtime.json
index fdf8b2249..df5f9fa08 100644
--- a/packages/node_modules/@node-red/runtime/locales/ja/runtime.json
+++ b/packages/node_modules/@node-red/runtime/locales/ja/runtime.json
@@ -100,7 +100,9 @@
"error": "クレデンシャルの読み込みエラー: __message__",
"error-saving": "クレデンシャルの保存エラー: __message__",
"not-registered": "クレデンシャル '__type__' は登録されていません",
- "system-key-warning": "\n\n---------------------------------------------------------------------\nフローのクレデンシャルファイルはシステム生成キーで暗号化されています。\n\nシステム生成キーを何らかの理由で失った場合、クレデンシャルファイルを\n復元することはできません。その場合、ファイルを削除してクレデンシャルを\n再入力しなければなりません。\n\n設定ファイル内で 'credentialSecret' オプションを使って独自キーを設定\nします。変更を次にデプロイする際、Node-REDは選択したキーを用いてクレ\nデンシャルを再暗号化します。 \n\n---------------------------------------------------------------------\n"
+ "system-key-warning": "\n\n---------------------------------------------------------------------\nフローのクレデンシャルファイルはシステム生成キーで暗号化されています。\n\nシステム生成キーを何らかの理由で失った場合、クレデンシャルファイルを\n復元することはできません。その場合、ファイルを削除してクレデンシャルを\n再入力しなければなりません。\n\n設定ファイル内で 'credentialSecret' オプションを使って独自キーを設定\nします。変更を次にデプロイする際、Node-REDは選択したキーを用いてクレ\nデンシャルを再暗号化します。 \n\n---------------------------------------------------------------------\n",
+ "unencrypted": "暗号化されていないクレデンシャルを使用",
+ "encryptedNotFound": "暗号化されたクレデンシャルが存在しません"
},
"flows": {
"safe-mode": "セーフモードでフローを停止しました。開始するためにはデプロイしてください",
diff --git a/packages/node_modules/node-red/settings.js b/packages/node_modules/node-red/settings.js
index 89994e9c3..c1ef3ff8b 100644
--- a/packages/node_modules/node-red/settings.js
+++ b/packages/node_modules/node-red/settings.js
@@ -230,80 +230,80 @@ module.exports = {
* - externalModules
******************************************************************************/
- /** Uncomment the following to run node-red in your preferred language.
- * Available languages include: en-US (default), ja, de, zh-CN, zh-TW, ru, ko
- * Some languages are more complete than others.
- */
- // lang: "de",
+ /** Uncomment the following to run node-red in your preferred language.
+ * Available languages include: en-US (default), ja, de, zh-CN, zh-TW, ru, ko
+ * Some languages are more complete than others.
+ */
+ // lang: "de",
- /** Configure the logging output */
- logging: {
- /** Only console logging is currently supported */
- console: {
- /** Level of logging to be recorded. Options are:
- * fatal - only those errors which make the application unusable should be recorded
- * error - record errors which are deemed fatal for a particular request + fatal errors
- * warn - record problems which are non fatal + errors + fatal errors
- * info - record information about the general running of the application + warn + error + fatal errors
- * debug - record information which is more verbose than info + info + warn + error + fatal errors
- * trace - record very detailed logging + debug + info + warn + error + fatal errors
- * off - turn off all logging (doesn't affect metrics or audit)
- */
- level: "info",
- /** Whether or not to include metric events in the log output */
- metrics: false,
- /** Whether or not to include audit events in the log output */
- audit: false
- }
- },
+ /** Configure the logging output */
+ logging: {
+ /** Only console logging is currently supported */
+ console: {
+ /** Level of logging to be recorded. Options are:
+ * fatal - only those errors which make the application unusable should be recorded
+ * error - record errors which are deemed fatal for a particular request + fatal errors
+ * warn - record problems which are non fatal + errors + fatal errors
+ * info - record information about the general running of the application + warn + error + fatal errors
+ * debug - record information which is more verbose than info + info + warn + error + fatal errors
+ * trace - record very detailed logging + debug + info + warn + error + fatal errors
+ * off - turn off all logging (doesn't affect metrics or audit)
+ */
+ level: "info",
+ /** Whether or not to include metric events in the log output */
+ metrics: false,
+ /** Whether or not to include audit events in the log output */
+ audit: false
+ }
+ },
- /** Context Storage
- * The following property can be used to enable context storage. The configuration
- * provided here will enable file-based context that flushes to disk every 30 seconds.
- * Refer to the documentation for further options: https://nodered.org/docs/api/context/
- */
- //contextStorage: {
- // default: {
- // module:"localfilesystem"
- // },
- //},
+ /** Context Storage
+ * The following property can be used to enable context storage. The configuration
+ * provided here will enable file-based context that flushes to disk every 30 seconds.
+ * Refer to the documentation for further options: https://nodered.org/docs/api/context/
+ */
+ //contextStorage: {
+ // default: {
+ // module:"localfilesystem"
+ // },
+ //},
- /** `global.keys()` returns a list of all properties set in global context.
- * This allows them to be displayed in the Context Sidebar within the editor.
- * In some circumstances it is not desirable to expose them to the editor. The
- * following property can be used to hide any property set in `functionGlobalContext`
- * from being list by `global.keys()`.
- * By default, the property is set to false to avoid accidental exposure of
- * their values. Setting this to true will cause the keys to be listed.
- */
- exportGlobalContextKeys: false,
+ /** `global.keys()` returns a list of all properties set in global context.
+ * This allows them to be displayed in the Context Sidebar within the editor.
+ * In some circumstances it is not desirable to expose them to the editor. The
+ * following property can be used to hide any property set in `functionGlobalContext`
+ * from being list by `global.keys()`.
+ * By default, the property is set to false to avoid accidental exposure of
+ * their values. Setting this to true will cause the keys to be listed.
+ */
+ exportGlobalContextKeys: false,
- /** Configure how the runtime will handle external npm modules.
- * This covers:
- * - whether the editor will allow new node modules to be installed
- * - whether nodes, such as the Function node are allowed to have their
- * own dynamically configured dependencies.
- * The allow/denyList options can be used to limit what modules the runtime
- * will install/load. It can use '*' as a wildcard that matches anything.
- */
- externalModules: {
- // autoInstall: false, /** Whether the runtime will attempt to automatically install missing modules */
- // autoInstallRetry: 30, /** Interval, in seconds, between reinstall attempts */
- // palette: { /** Configuration for the Palette Manager */
- // allowInstall: true, /** Enable the Palette Manager in the editor */
- // allowUpdate: true, /** Allow modules to be updated in the Palette Manager */
- // allowUpload: true, /** Allow module tgz files to be uploaded and installed */
- // allowList: ['*'],
- // denyList: [],
- // allowUpdateList: ['*'],
- // denyUpdateList: []
- // },
- // modules: { /** Configuration for node-specified modules */
- // allowInstall: true,
- // allowList: [],
- // denyList: []
- // }
- },
+ /** Configure how the runtime will handle external npm modules.
+ * This covers:
+ * - whether the editor will allow new node modules to be installed
+ * - whether nodes, such as the Function node are allowed to have their
+ * own dynamically configured dependencies.
+ * The allow/denyList options can be used to limit what modules the runtime
+ * will install/load. It can use '*' as a wildcard that matches anything.
+ */
+ externalModules: {
+ // autoInstall: false, /** Whether the runtime will attempt to automatically install missing modules */
+ // autoInstallRetry: 30, /** Interval, in seconds, between reinstall attempts */
+ // palette: { /** Configuration for the Palette Manager */
+ // allowInstall: true, /** Enable the Palette Manager in the editor */
+ // allowUpdate: true, /** Allow modules to be updated in the Palette Manager */
+ // allowUpload: true, /** Allow module tgz files to be uploaded and installed */
+ // allowList: ['*'],
+ // denyList: [],
+ // allowUpdateList: ['*'],
+ // denyUpdateList: []
+ // },
+ // modules: { /** Configuration for node-specified modules */
+ // allowInstall: true,
+ // allowList: [],
+ // denyList: []
+ // }
+ },
/*******************************************************************************