@node-red/runtime 3.0.0-beta.2 → 3.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/locales/en-US/runtime.json +5 -12
- package/package.json +3 -3
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"httpStatic": "HTTP Static : __path__"
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
|
|
12
11
|
"server": {
|
|
13
12
|
"loading": "Loading palette nodes",
|
|
14
13
|
"palette-editor": {
|
|
@@ -61,7 +60,6 @@
|
|
|
61
60
|
"function-required": "httpsRefreshInterval requires https property to be a function"
|
|
62
61
|
}
|
|
63
62
|
},
|
|
64
|
-
|
|
65
63
|
"api": {
|
|
66
64
|
"flows": {
|
|
67
65
|
"error-save": "Error saving flows: __message__",
|
|
@@ -79,18 +77,16 @@
|
|
|
79
77
|
"error-enable": "Failed to enable node:"
|
|
80
78
|
}
|
|
81
79
|
},
|
|
82
|
-
|
|
83
80
|
"comms": {
|
|
84
81
|
"error": "Communication channel error: __message__",
|
|
85
82
|
"error-server": "Communication server error: __message__",
|
|
86
83
|
"error-send": "Communication send error: __message__"
|
|
87
84
|
},
|
|
88
|
-
|
|
89
85
|
"settings": {
|
|
90
86
|
"user-not-available": "Cannot save user settings: __message__",
|
|
91
87
|
"not-available": "Settings not available",
|
|
92
88
|
"property-read-only": "Property '__prop__' is read-only",
|
|
93
|
-
"readonly-mode"
|
|
89
|
+
"readonly-mode": "Runtime in read-only mode. Changes will not be saved."
|
|
94
90
|
},
|
|
95
91
|
"library": {
|
|
96
92
|
"unknownLibrary": "Unknown library: __library__",
|
|
@@ -101,12 +97,12 @@
|
|
|
101
97
|
},
|
|
102
98
|
"nodes": {
|
|
103
99
|
"credentials": {
|
|
104
|
-
"error":"Error loading credentials: __message__",
|
|
105
|
-
"error-saving":"Error saving credentials: __message__",
|
|
100
|
+
"error": "Error loading credentials: __message__",
|
|
101
|
+
"error-saving": "Error saving credentials: __message__",
|
|
106
102
|
"not-registered": "Credential type '__type__' is not registered",
|
|
107
103
|
"system-key-warning": "\n\n---------------------------------------------------------------------\nYour flow credentials file is encrypted using a system-generated key.\n\nIf the system-generated key is lost for any reason, your credentials\nfile will not be recoverable, you will have to delete it and re-enter\nyour credentials.\n\nYou should set your own key using the 'credentialSecret' option in\nyour settings file. Node-RED will then re-encrypt your credentials\nfile using your chosen key the next time you deploy a change.\n---------------------------------------------------------------------\n",
|
|
108
|
-
"unencrypted"
|
|
109
|
-
"encryptedNotFound"
|
|
104
|
+
"unencrypted": "Using unencrypted credentials",
|
|
105
|
+
"encryptedNotFound": "Encrypted credentials not found"
|
|
110
106
|
},
|
|
111
107
|
"flows": {
|
|
112
108
|
"safe-mode": "Flows stopped in safe mode. Deploy to start.",
|
|
@@ -150,7 +146,6 @@
|
|
|
150
146
|
}
|
|
151
147
|
}
|
|
152
148
|
},
|
|
153
|
-
|
|
154
149
|
"storage": {
|
|
155
150
|
"index": {
|
|
156
151
|
"forbidden-flow-name": "forbidden flow name"
|
|
@@ -180,7 +175,6 @@
|
|
|
180
175
|
}
|
|
181
176
|
}
|
|
182
177
|
},
|
|
183
|
-
|
|
184
178
|
"context": {
|
|
185
179
|
"log-store-init": "Context store : '__name__' [__info__]",
|
|
186
180
|
"error-loading-module": "Error loading context store: __message__",
|
|
@@ -195,5 +189,4 @@
|
|
|
195
189
|
"error-write": "Error writing context: __message__"
|
|
196
190
|
}
|
|
197
191
|
}
|
|
198
|
-
|
|
199
192
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-red/runtime",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@node-red/registry": "3.0.0-beta.
|
|
20
|
-
"@node-red/util": "3.0.0-beta.
|
|
19
|
+
"@node-red/registry": "3.0.0-beta.3",
|
|
20
|
+
"@node-red/util": "3.0.0-beta.3",
|
|
21
21
|
"async-mutex": "0.3.2",
|
|
22
22
|
"clone": "2.1.2",
|
|
23
23
|
"express": "4.18.1",
|