@node-red/editor-client 3.1.0-beta.1 → 3.1.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/de/editor.json +2 -0
- package/locales/en-US/editor.json +9 -2
- package/locales/fr/editor.json +1238 -0
- package/locales/fr/infotips.json +23 -0
- package/locales/fr/jsonata.json +274 -0
- package/locales/ja/editor.json +15 -3
- package/locales/ko/editor.json +233 -31
- package/locales/pt-BR/editor.json +1208 -0
- package/locales/pt-BR/infotips.json +23 -0
- package/locales/pt-BR/jsonata.json +274 -0
- package/locales/ru/editor.json +2 -0
- package/locales/zh-CN/editor.json +1175 -1049
- package/locales/zh-TW/editor.json +3 -0
- package/package.json +1 -1
- package/public/red/about +85 -1
- package/public/red/red.js +1250 -1092
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/3.0/welcome.js +6 -6
- package/public/red/tours/images/node-help.png +0 -0
- package/public/red/tours/images/tab-changes.png +0 -0
- package/public/red/tours/welcome.js +82 -7
- package/public/types/node/assert/strict.d.ts +11 -0
- package/public/types/node/assert.d.ts +898 -64
- package/public/types/node/async_hooks.d.ts +362 -94
- package/public/types/node/buffer.d.ts +2158 -14
- package/public/types/node/child_process.d.ts +1109 -257
- package/public/types/node/cluster.d.ts +349 -200
- package/public/types/node/console.d.ts +313 -43
- package/public/types/node/crypto.d.ts +3338 -658
- package/public/types/node/dgram.d.ts +459 -58
- package/public/types/node/diagnostics_channel.d.ts +155 -0
- package/public/types/node/dns/promises.d.ts +371 -0
- package/public/types/node/dns.d.ts +532 -265
- package/public/types/node/domain.d.ts +159 -16
- package/public/types/node/events.d.ts +589 -30
- package/public/types/node/fs/promises.d.ts +1097 -0
- package/public/types/node/fs.d.ts +2484 -958
- package/public/types/node/globals.d.ts +44 -504
- package/public/types/node/http.d.ts +1156 -145
- package/public/types/node/http2.d.ts +1610 -470
- package/public/types/node/https.d.ts +462 -72
- package/public/types/node/module.d.ts +72 -13
- package/public/types/node/net.d.ts +663 -131
- package/public/types/node/os.d.ts +238 -25
- package/public/types/node/path.d.ts +57 -23
- package/public/types/node/perf_hooks.d.ts +424 -112
- package/public/types/node/process.d.ts +1261 -193
- package/public/types/node/querystring.d.ts +107 -7
- package/public/types/node/readline.d.ts +443 -74
- package/public/types/node/stream/consumers.d.ts +15 -0
- package/public/types/node/stream/promises.d.ts +45 -0
- package/public/types/node/stream/web.d.ts +395 -0
- package/public/types/node/stream.d.ts +1180 -177
- package/public/types/node/string_decoder.d.ts +57 -0
- package/public/types/node/test.d.ts +193 -0
- package/public/types/node/timers/promises.d.ts +96 -0
- package/public/types/node/timers.d.ts +87 -12
- package/public/types/node/tls.d.ts +457 -222
- package/public/types/node/trace_events.d.ts +107 -10
- package/public/types/node/tty.d.ts +158 -23
- package/public/types/node/url.d.ts +734 -28
- package/public/types/node/util.d.ts +1542 -164
- package/public/types/node/v8.d.ts +261 -73
- package/public/types/node/vm.d.ts +384 -32
- package/public/types/node/wasi.d.ts +92 -23
- package/public/types/node/worker_threads.d.ts +531 -123
- package/public/types/node/zlib.d.ts +216 -63
- package/public/types/node-red/func.d.ts +2 -3
- package/public/vendor/jquery/css/base/images/ui-icons_444444_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_555555_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_777620_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_777777_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_cc0000_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_ffffff_256x240.png +0 -0
- package/public/vendor/jquery/css/base/jquery-ui.min.css +4 -4
- package/public/vendor/mermaid/mermaid.min.js +713 -417
- package/public/vendor/monaco/dist/{ade705761eb7e702770d.ttf → 7064e66c3890a12c47b4.ttf} +0 -0
- package/public/vendor/monaco/dist/css.worker.js +1 -1
- package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/editor.js +29 -1
- package/public/vendor/monaco/dist/editor.js.LICENSE.txt +5 -1
- package/public/vendor/monaco/dist/editor.worker.js +1 -1
- package/public/vendor/monaco/dist/fa2cc0ab9f0bec2b3365.ttf +0 -0
- package/public/vendor/monaco/dist/html.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/json.worker.js +1 -1
- package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/locale/cs.js +393 -84
- package/public/vendor/monaco/dist/locale/de.js +397 -88
- package/public/vendor/monaco/dist/locale/es.js +392 -83
- package/public/vendor/monaco/dist/locale/fr.js +401 -92
- package/public/vendor/monaco/dist/locale/it.js +399 -90
- package/public/vendor/monaco/dist/locale/ja.js +411 -102
- package/public/vendor/monaco/dist/locale/ko.js +398 -89
- package/public/vendor/monaco/dist/locale/pl.js +396 -87
- package/public/vendor/monaco/dist/locale/pt-br.js +397 -88
- package/public/vendor/monaco/dist/locale/qps-ploc.js +1643 -1334
- package/public/vendor/monaco/dist/locale/ru.js +398 -89
- package/public/vendor/monaco/dist/locale/tr.js +400 -91
- package/public/vendor/monaco/dist/locale/zh-hans.js +403 -94
- package/public/vendor/monaco/dist/locale/zh-hant.js +395 -86
- package/public/vendor/monaco/dist/theme/forge-dark.json +213 -0
- package/public/vendor/monaco/dist/theme/forge-light.json +227 -0
- package/public/vendor/monaco/dist/theme/forge.json +236 -0
- package/public/vendor/monaco/dist/theme/github-dark.json +348 -0
- package/public/vendor/monaco/dist/theme/github-light.json +348 -0
- package/public/vendor/monaco/dist/theme/nord.json +93 -0
- package/public/vendor/monaco/dist/ts.worker.js +6 -1
- package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +14 -6
- package/public/vendor/vendor.js +6 -13
package/locales/de/editor.json
CHANGED
|
@@ -1175,8 +1175,10 @@
|
|
|
1175
1175
|
"languages": {
|
|
1176
1176
|
"de": "Deutsch",
|
|
1177
1177
|
"en-US": "Englisch",
|
|
1178
|
+
"fr": "Französisch",
|
|
1178
1179
|
"ja": "Japanisch",
|
|
1179
1180
|
"ko": "Koreanisch",
|
|
1181
|
+
"pt-BR":"Portugiesisch",
|
|
1180
1182
|
"ru": "Russisch",
|
|
1181
1183
|
"zh-CN": "Chinesisch (Vereinfacht)",
|
|
1182
1184
|
"zh-TW": "Chinesisch (Traditionell)"
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
"disable": "Disable",
|
|
26
26
|
"upload": "Upload",
|
|
27
27
|
"lock": "Lock",
|
|
28
|
-
"unlock": "Unlock"
|
|
28
|
+
"unlock": "Unlock",
|
|
29
|
+
"locked": "Locked",
|
|
30
|
+
"unlocked": "Unlocked"
|
|
29
31
|
},
|
|
30
32
|
"type": {
|
|
31
33
|
"string": "string",
|
|
@@ -502,6 +504,7 @@
|
|
|
502
504
|
"unassigned": "Unassigned",
|
|
503
505
|
"global": "global",
|
|
504
506
|
"workspace": "workspace",
|
|
507
|
+
"editor": "edit dialog",
|
|
505
508
|
"selectAll": "Select all",
|
|
506
509
|
"selectNone": "Select none",
|
|
507
510
|
"selectAllConnected": "Select connected",
|
|
@@ -697,7 +700,9 @@
|
|
|
697
700
|
"triggerAction": "Trigger action",
|
|
698
701
|
"find": "Find in workspace",
|
|
699
702
|
"copyItemUrl": "Copy item url",
|
|
700
|
-
"copyURL2Clipboard": "Copied url to clipboard"
|
|
703
|
+
"copyURL2Clipboard": "Copied url to clipboard",
|
|
704
|
+
"showFlow": "Show",
|
|
705
|
+
"hideFlow": "Hide"
|
|
701
706
|
},
|
|
702
707
|
"help": {
|
|
703
708
|
"name": "Help",
|
|
@@ -1196,8 +1201,10 @@
|
|
|
1196
1201
|
"languages": {
|
|
1197
1202
|
"de": "German",
|
|
1198
1203
|
"en-US": "English",
|
|
1204
|
+
"fr": "French",
|
|
1199
1205
|
"ja": "Japanese",
|
|
1200
1206
|
"ko": "Korean",
|
|
1207
|
+
"pt-BR":"Portuguese",
|
|
1201
1208
|
"ru": "Russian",
|
|
1202
1209
|
"zh-CN": "Chinese(Simplified)",
|
|
1203
1210
|
"zh-TW": "Chinese(Traditional)"
|