@node-red/editor-client 3.1.0-beta.4 → 3.1.1
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/jsonata.json +1 -1
- package/locales/en-US/editor.json +2 -3
- package/locales/en-US/jsonata.json +15 -11
- package/locales/fr/editor.json +83 -83
- package/locales/fr/infotips.json +0 -0
- package/locales/fr/jsonata.json +9 -5
- package/locales/ja/editor.json +1 -3
- package/locales/ja/jsonata.json +11 -7
- package/locales/ko/editor.json +1105 -1105
- package/locales/ko/infotips.json +23 -23
- package/locales/ko/jsonata.json +222 -222
- package/locales/pt-BR/editor.json +0 -3
- package/locales/pt-BR/infotips.json +0 -0
- package/locales/pt-BR/jsonata.json +66 -66
- package/locales/ru/jsonata.json +43 -43
- package/locales/zh-CN/editor.json +0 -3
- package/locales/zh-CN/jsonata.json +8 -8
- package/locales/zh-TW/jsonata.json +4 -4
- package/package.json +1 -1
- package/public/red/about +92 -4
- package/public/red/red.js +237 -154
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/welcome.js +7 -19
- package/public/vendor/mermaid/mermaid.min.js +793 -731
package/locales/de/jsonata.json
CHANGED
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "Wandelt `number` in eine Zeichenfolge um und formatiert sie in eine dezimale Darstellung, wie im `picture`-String-Parameter vorgegeben.\n\nDas Verhalten dieser Funktion ist mit der XPath/XQuery-Funktion fn:formatnummer konsistent, wie sie in der XPath F&O 3.1-Spezifikation definiert ist. Der `picture`-String-Parameter definiert, wie die Zahl formatiert ist und hat die gleiche Syntax wie fn:format-number
|
|
208
|
+
"desc": "Wandelt `number` in eine Zeichenfolge um und formatiert sie in eine dezimale Darstellung, wie im `picture`-String-Parameter vorgegeben.\n\nDas Verhalten dieser Funktion ist mit der XPath/XQuery-Funktion `fn:formatnummer` konsistent, wie sie in der XPath F&O 3.1-Spezifikation definiert ist. Der `picture`-String-Parameter definiert, wie die Zahl formatiert ist und hat die gleiche Syntax wie `fn:format-number`.\n\nDer optionale dritte Parameter `options` wird verwendet, um die standardmäßigen länderspezifischen Formatierungszeichen, wie z.B. das Dezimaltrennzeichen, zu überschreiben. Wenn dieser Parameter vorgegeben wird, muss es sich um ein Objekt handeln, das Name/Wert-Paare enthält, die im Abschnitt mit dem Dezimalformat der XPath F&O 3.1-Spezifikation vorgegeben sind."
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -627,6 +627,7 @@
|
|
|
627
627
|
"tab-nodes": "Nodes",
|
|
628
628
|
"tab-install": "Install",
|
|
629
629
|
"sort": "sort:",
|
|
630
|
+
"sortRelevance": "relevance",
|
|
630
631
|
"sortAZ": "a-z",
|
|
631
632
|
"sortRecent": "recent",
|
|
632
633
|
"more": "+ __count__ more",
|
|
@@ -1214,11 +1215,9 @@
|
|
|
1214
1215
|
"validator": {
|
|
1215
1216
|
"errors": {
|
|
1216
1217
|
"invalid-json": "Invalid JSON data: __error__",
|
|
1217
|
-
"invalid-
|
|
1218
|
+
"invalid-expr": "Invalid JSONata expression: __error__",
|
|
1218
1219
|
"invalid-prop": "Invalid property expression",
|
|
1219
|
-
"invalid-prop-prop": "__prop__: invalid property expression",
|
|
1220
1220
|
"invalid-num": "Invalid number",
|
|
1221
|
-
"invalid-num-prop": "__prop__: invalid number",
|
|
1222
1221
|
"invalid-regexp": "Invalid input pattern",
|
|
1223
1222
|
"invalid-regex-prop": "__prop__: invalid input pattern",
|
|
1224
1223
|
"missing-required-prop": "__prop__: property value missing",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$string": {
|
|
3
3
|
"args": "arg[, prettify]",
|
|
4
|
-
"desc": "Casts the `arg` parameter to a string using the following casting rules:\n\n - Strings are unchanged\n - Functions are converted to an empty string\n - Numeric infinity and NaN throw an error because they cannot be represented as a JSON number\n - All other values are converted to a JSON string using the `JSON.stringify` function.
|
|
4
|
+
"desc": "Casts the `arg` parameter to a string using the following casting rules:\n\n - Strings are unchanged\n - Functions are converted to an empty string\n - Numeric infinity and NaN throw an error because they cannot be represented as a JSON number\n - All other values are converted to a JSON string using the `JSON.stringify` function. If `prettify` is true, then \"prettified\" JSON is produced. i.e One line per field and lines will be indented based on the field depth."
|
|
5
5
|
},
|
|
6
6
|
"$length": {
|
|
7
7
|
"args": "str",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"$now": {
|
|
55
55
|
"args": "$[picture [, timezone]]",
|
|
56
|
-
"desc": "Generates a timestamp in ISO 8601 compatible format and returns it as a string. If the optional picture and timezone parameters are supplied, then the current timestamp is formatted as described by the `$fromMillis()` function"
|
|
56
|
+
"desc": "Generates a timestamp in ISO 8601 compatible format and returns it as a string. If the optional `picture` and `timezone` parameters are supplied, then the current timestamp is formatted as described by the `$fromMillis()` function"
|
|
57
57
|
},
|
|
58
58
|
"$base64encode": {
|
|
59
59
|
"args": "string",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "Returns an array containing all the values in the `array` parameter, but sorted into order.\n\nIf a comparator `function` is supplied, then it must be a function that takes two parameters:\n\n`function(left, right)`\n\nThis function gets invoked by the sorting algorithm to compare two values left and right
|
|
140
|
+
"desc": "Returns an array containing all the values in the `array` parameter, but sorted into order.\n\nIf a comparator `function` is supplied, then it must be a function that takes two parameters:\n\n`function(left, right)`\n\nThis function gets invoked by the sorting algorithm to compare two values `left` and `right`. If the value of `left` should be placed after the value of `right` in the desired sort order, then the function must return Boolean `true` to indicate a swap. Otherwise it must return `false`."
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -201,11 +201,11 @@
|
|
|
201
201
|
},
|
|
202
202
|
"$fromMillis": {
|
|
203
203
|
"args": "number, [, picture [, timezone]]",
|
|
204
|
-
"desc": "Convert the `number` representing milliseconds since the Unix Epoch (1 January, 1970 UTC) to a formatted string representation of the timestamp as specified by the picture string.\n\nIf the optional `picture` parameter is omitted, then the timestamp is formatted in the ISO 8601 format.\n\nIf the optional `picture` string is supplied, then the timestamp is formatted
|
|
204
|
+
"desc": "Convert the `number` representing milliseconds since the Unix Epoch (1 January, 1970 UTC) to a formatted string representation of the timestamp as specified by the picture string.\n\nIf the optional `picture` parameter is omitted, then the timestamp is formatted in the ISO 8601 format.\n\nIf the optional `picture` string is supplied, then the timestamp is formatted according to the representation specified in that string. The behaviour of this function is consistent with the two-argument version of the XPath/XQuery function `format-dateTime` as defined in the XPath F&O 3.1 specification. The picture string parameter defines how the timestamp is formatted and has the same syntax as `format-dateTime`.\n\nIf the optional `timezone` string is supplied, then the formatted timestamp will be in that timezone. The `timezone` string should be in the format '±HHMM', where ± is either the plus or minus sign and HHMM is the offset in hours and minutes from UTC. Positive offset for timezones east of UTC, negative offset for timezones west of UTC."
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "Casts the `number` to a string and formats it to a decimal representation as specified by the `picture` string.\n\n The behaviour of this function is consistent with the XPath/XQuery function fn:format-number as defined in the XPath F&O 3.1 specification. The picture string parameter defines how the number is formatted and has the same syntax as fn:format-number
|
|
208
|
+
"desc": "Casts the `number` to a string and formats it to a decimal representation as specified by the `picture` string.\n\n The behaviour of this function is consistent with the XPath/XQuery function `fn:format-number` as defined in the XPath F&O 3.1 specification. The `picture` string parameter defines how the number is formatted and has the same syntax as `fn:format-number`.\n\nThe optional third argument `options` is used to override the default locale specific formatting characters such as the decimal separator. If supplied, this argument must be an object containing name/value pairs specified in the decimal format section of the XPath F&O 3.1 specification."
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -233,15 +233,15 @@
|
|
|
233
233
|
},
|
|
234
234
|
"$error": {
|
|
235
235
|
"args": "[str]",
|
|
236
|
-
"desc": "Throws an error with a message.
|
|
236
|
+
"desc": "Throws an error with a message. The optional `str` will replace the default message of `$error() function evaluated`"
|
|
237
237
|
},
|
|
238
238
|
"$assert": {
|
|
239
239
|
"args": "arg, str",
|
|
240
|
-
"desc": "If `arg` is true the function returns undefined
|
|
240
|
+
"desc": "If `arg` is `true` the function returns `undefined`. If `arg` is `false` an exception is thrown with `str` as the message of the exception."
|
|
241
241
|
},
|
|
242
242
|
"$single": {
|
|
243
243
|
"args": "array, function",
|
|
244
|
-
"desc": "Returns the one and only value in the `array` parameter that satisfies the `function` predicate (i.e. the `function` returns Boolean `true` when passed the value).
|
|
244
|
+
"desc": "Returns the one and only value in the `array` parameter that satisfies the `function` predicate (i.e. the `function` returns Boolean `true` when passed the value). Throws an exception if the number of matching values is not exactly one.\n\nThe function should be supplied in the following signature: `function(value [, index [, array]])` where value is each input of the array, index is the position of that value and the whole array is passed as the third argument"
|
|
245
245
|
},
|
|
246
246
|
"$encodeUrlComponent": {
|
|
247
247
|
"args": "str",
|
|
@@ -249,15 +249,15 @@
|
|
|
249
249
|
},
|
|
250
250
|
"$encodeUrl": {
|
|
251
251
|
"args": "str",
|
|
252
|
-
"desc": "Encodes a Uniform Resource Locator (URL) by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character
|
|
252
|
+
"desc": "Encodes a Uniform Resource Locator (URL) by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character.\n\nExample: `$encodeUrl(\"https://mozilla.org/?x=шеллы\")` => `\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\"`"
|
|
253
253
|
},
|
|
254
254
|
"$decodeUrlComponent": {
|
|
255
255
|
"args": "str",
|
|
256
|
-
"desc": "Decodes a Uniform Resource Locator (URL) component previously created by encodeUrlComponent
|
|
256
|
+
"desc": "Decodes a Uniform Resource Locator (URL) component previously created by encodeUrlComponent.\n\nExample: `$decodeUrlComponent(\"%3Fx%3Dtest\")` => `\"?x=test\"`"
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "Decodes a Uniform Resource Locator (URL) previously created by encodeUrl
|
|
260
|
+
"desc": "Decodes a Uniform Resource Locator (URL) previously created by encodeUrl.\n\nExample: `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
|
@@ -270,5 +270,9 @@
|
|
|
270
270
|
"$moment": {
|
|
271
271
|
"args": "[str]",
|
|
272
272
|
"desc": "Gets a date object using the Moment library."
|
|
273
|
+
},
|
|
274
|
+
"$clone": {
|
|
275
|
+
"args": "value",
|
|
276
|
+
"desc": "Safely clone an object."
|
|
273
277
|
}
|
|
274
278
|
}
|
package/locales/fr/editor.json
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"searchInput": "Rechercher vos flux",
|
|
120
120
|
"subflows": "Sous-flux",
|
|
121
121
|
"createSubflow": "Créer un sous-flux",
|
|
122
|
-
"selectionToSubflow": "
|
|
122
|
+
"selectionToSubflow": "Convertir en sous-flux",
|
|
123
123
|
"flows": "Flux",
|
|
124
124
|
"add": "Ajouter",
|
|
125
125
|
"rename": "Renommer",
|
|
@@ -274,23 +274,23 @@
|
|
|
274
274
|
"recoveredNodesInfo": "Les noeuds importés sur ce flux contiennent un mauvais identifiant de flux. Ces noeuds ont été ajoutés à ce flux afin que vous puissiez les restaurer ou les supprimer.",
|
|
275
275
|
"recoveredNodesNotification": "<p>Noeuds importés sans identifiant de flux valide</p><p>Ils ont été ajoutés à un nouveau flux appelé '__flowName__'.</p>",
|
|
276
276
|
"export": {
|
|
277
|
-
"selected": "noeuds sélectionnés",
|
|
278
|
-
"current": "flux actuel",
|
|
277
|
+
"selected": "les noeuds sélectionnés",
|
|
278
|
+
"current": "le flux actuel",
|
|
279
279
|
"all": "tous les flux",
|
|
280
|
-
"compact": "
|
|
281
|
-
"formatted": "
|
|
280
|
+
"compact": "Condensé",
|
|
281
|
+
"formatted": "Formaté",
|
|
282
282
|
"copy": "Copier dans le presse-papier",
|
|
283
283
|
"export": "Exporter vers la bibliothèque",
|
|
284
|
-
"exportAs": "Exporter
|
|
284
|
+
"exportAs": "Exporter comme",
|
|
285
285
|
"overwrite": "Remplacer",
|
|
286
286
|
"exists": "<p><b>\"__file__\"</b> existe déjà.</p><p>Voulez-vous le remplacer ?</p>"
|
|
287
287
|
},
|
|
288
288
|
"import": {
|
|
289
289
|
"import": "Importer vers",
|
|
290
|
-
"importSelected": "
|
|
290
|
+
"importSelected": "Importer la sélection",
|
|
291
291
|
"importCopy": "Importer une copie",
|
|
292
|
-
"viewNodes": "
|
|
293
|
-
"newFlow": "
|
|
292
|
+
"viewNodes": "Vérifier ces noeuds",
|
|
293
|
+
"newFlow": "un nouveau flux",
|
|
294
294
|
"replace": "Remplacer",
|
|
295
295
|
"errors": {
|
|
296
296
|
"notArray": "L'entrée n'est pas un tableau JSON",
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
"missingType": "L'entrée n'est pas un flux valide - l'élément '__index__' n'a pas de propriété 'type'"
|
|
300
300
|
},
|
|
301
301
|
"conflictNotification1": "Certains des noeuds que vous avez importés existent déjà dans votre espace de travail.",
|
|
302
|
-
"conflictNotification2": "
|
|
302
|
+
"conflictNotification2": "Sélectionnez les noeuds à importer et choisissez s'il faut remplacer les noeuds existants ou en importer une copie."
|
|
303
303
|
},
|
|
304
304
|
"copyMessagePath": "Chemin copié",
|
|
305
305
|
"copyMessageValue": "Valeur copiée",
|
|
@@ -391,10 +391,10 @@
|
|
|
391
391
|
"subflowInstances": "Il existe __count__ instance de ce modèle de sous-flux",
|
|
392
392
|
"subflowInstances_plural": "Il existe __count__ instances de ce modèle de sous-flux",
|
|
393
393
|
"editSubflowProperties": "modifier les propriétés",
|
|
394
|
-
"input": "
|
|
395
|
-
"output": "
|
|
396
|
-
"status": "
|
|
397
|
-
"deleteSubflow": "
|
|
394
|
+
"input": "Entrées:",
|
|
395
|
+
"output": "Sorties:",
|
|
396
|
+
"status": "Statut du noeud",
|
|
397
|
+
"deleteSubflow": "Supprimer le sous-flux",
|
|
398
398
|
"confirmDelete": "Voulez-vous vraiment supprimer ce sous-flux ?",
|
|
399
399
|
"info": "Description",
|
|
400
400
|
"category": "Catégorie",
|
|
@@ -416,6 +416,7 @@
|
|
|
416
416
|
},
|
|
417
417
|
"errors": {
|
|
418
418
|
"noNodesSelected": "<strong>Impossible de créer un sous-flux</strong> : aucun noeud sélectionné",
|
|
419
|
+
"acrossMultipleGroups": "Impossible de créer un sous-flux sur plusieurs groupes",
|
|
419
420
|
"multipleInputsToSelection": "<strong>Impossible de créer un sous-flux</strong> : plusieurs entrées pour la sélection"
|
|
420
421
|
}
|
|
421
422
|
},
|
|
@@ -447,8 +448,8 @@
|
|
|
447
448
|
"default": "Par défaut",
|
|
448
449
|
"noDefaultLabel": "Aucune",
|
|
449
450
|
"defaultLabel": "Utiliser l'étiquette par défaut",
|
|
450
|
-
"searchIcons": "
|
|
451
|
-
"useDefault": "
|
|
451
|
+
"searchIcons": "Rechercher une icône",
|
|
452
|
+
"useDefault": "Icône par défaut",
|
|
452
453
|
"description": "Description",
|
|
453
454
|
"show": "Afficher",
|
|
454
455
|
"hide": "Masquer",
|
|
@@ -498,13 +499,13 @@
|
|
|
498
499
|
"keyboard": {
|
|
499
500
|
"title": "Raccourcis clavier",
|
|
500
501
|
"keyboard": "Clavier",
|
|
501
|
-
"filterActions": "
|
|
502
|
-
"shortcut": "
|
|
503
|
-
"scope": "
|
|
502
|
+
"filterActions": "Rechercher l'action",
|
|
503
|
+
"shortcut": "Raccourci",
|
|
504
|
+
"scope": "Portée",
|
|
504
505
|
"unassigned": "Non attribué",
|
|
505
|
-
"global": "
|
|
506
|
-
"workspace": "
|
|
507
|
-
"editor": "
|
|
506
|
+
"global": "Global",
|
|
507
|
+
"workspace": "Espace de travail",
|
|
508
|
+
"editor": "Boîte de dialogue d'édition",
|
|
508
509
|
"selectAll": "Tout sélectionner",
|
|
509
510
|
"selectNone": "Ne rien sélectionner",
|
|
510
511
|
"selectAllConnected": "Sélectionner tous les éléments connectés",
|
|
@@ -550,22 +551,22 @@
|
|
|
550
551
|
},
|
|
551
552
|
"palette": {
|
|
552
553
|
"noInfo": "Pas d'information disponible",
|
|
553
|
-
"filter": "
|
|
554
|
+
"filter": "Rechercher le noeud",
|
|
554
555
|
"search": "Rechercher les modules",
|
|
555
556
|
"addCategory": "Ajouter un nouveau...",
|
|
556
557
|
"label": {
|
|
557
|
-
"subflows": "
|
|
558
|
-
"network": "
|
|
559
|
-
"common": "
|
|
560
|
-
"input": "
|
|
561
|
-
"output": "
|
|
562
|
-
"function": "
|
|
563
|
-
"sequence": "
|
|
564
|
-
"parser": "
|
|
565
|
-
"social": "
|
|
566
|
-
"storage": "
|
|
567
|
-
"analysis": "
|
|
568
|
-
"advanced": "
|
|
558
|
+
"subflows": "Sous-flux",
|
|
559
|
+
"network": "Réseau",
|
|
560
|
+
"common": "Commun",
|
|
561
|
+
"input": "Entrée",
|
|
562
|
+
"output": "Sortie",
|
|
563
|
+
"function": "Fonction",
|
|
564
|
+
"sequence": "Séquence",
|
|
565
|
+
"parser": "Analyseur",
|
|
566
|
+
"social": "Social",
|
|
567
|
+
"storage": "Stockage",
|
|
568
|
+
"analysis": "Analyse",
|
|
569
|
+
"advanced": "Avancé"
|
|
569
570
|
},
|
|
570
571
|
"actions": {
|
|
571
572
|
"collapse-all": "Réduire toutes les catégories",
|
|
@@ -586,6 +587,7 @@
|
|
|
586
587
|
"editor": {
|
|
587
588
|
"title": "Gérer la palette",
|
|
588
589
|
"palette": "Palette",
|
|
590
|
+
"allCatalogs": "Tous les catalogues",
|
|
589
591
|
"times": {
|
|
590
592
|
"seconds": "il y a quelques secondes",
|
|
591
593
|
"minutes": "il y a quelques minutes",
|
|
@@ -609,24 +611,25 @@
|
|
|
609
611
|
"nodeCount_plural": "__label__ noeuds",
|
|
610
612
|
"moduleCount": "__count__ module disponible",
|
|
611
613
|
"moduleCount_plural": "__count__ modules disponibles",
|
|
612
|
-
"inuse": "
|
|
613
|
-
"enableall": "
|
|
614
|
-
"disableall": "
|
|
615
|
-
"enable": "
|
|
616
|
-
"disable": "
|
|
617
|
-
"remove": "
|
|
618
|
-
"update": "
|
|
619
|
-
"updated": "
|
|
620
|
-
"install": "
|
|
621
|
-
"installed": "
|
|
622
|
-
"conflict": "
|
|
614
|
+
"inuse": "En cours d'utilisation",
|
|
615
|
+
"enableall": "Activer tout",
|
|
616
|
+
"disableall": "Désactiver tout",
|
|
617
|
+
"enable": "Activer",
|
|
618
|
+
"disable": "Désactiver",
|
|
619
|
+
"remove": "Supprimer",
|
|
620
|
+
"update": "Mettre à jour vers __version__",
|
|
621
|
+
"updated": "Mis à jour",
|
|
622
|
+
"install": "Installer",
|
|
623
|
+
"installed": "Installé",
|
|
624
|
+
"conflict": "Conflit",
|
|
623
625
|
"conflictTip": "<p>Ce module ne peut pas être installé car il inclut un<br/>type de noeud qui a déjà été installé</p><p>Conflits avec <code>__module__</code></p>",
|
|
624
626
|
"loading": "Chargement des catalogues...",
|
|
625
627
|
"tab-nodes": "Noeuds",
|
|
626
628
|
"tab-install": "Installer",
|
|
627
|
-
"sort": "
|
|
628
|
-
"
|
|
629
|
-
"
|
|
629
|
+
"sort": "Trier:",
|
|
630
|
+
"sortRelevance": "Pertinence",
|
|
631
|
+
"sortAZ": "A-Z",
|
|
632
|
+
"sortRecent": "Récent",
|
|
630
633
|
"more": "+ __count__ en plus",
|
|
631
634
|
"upload": "Charger le fichier tgz du module",
|
|
632
635
|
"refresh": "Actualiser la liste des modules",
|
|
@@ -667,7 +670,7 @@
|
|
|
667
670
|
"info": {
|
|
668
671
|
"name": "Information",
|
|
669
672
|
"tabName": "Nom",
|
|
670
|
-
"label": "
|
|
673
|
+
"label": "Info",
|
|
671
674
|
"node": "Noeud",
|
|
672
675
|
"type": "Type",
|
|
673
676
|
"group": "Groupe",
|
|
@@ -681,10 +684,10 @@
|
|
|
681
684
|
"properties": "Propriétés",
|
|
682
685
|
"info": "Information",
|
|
683
686
|
"desc": "Description",
|
|
684
|
-
"blank": "
|
|
685
|
-
"null": "
|
|
686
|
-
"showMore": "
|
|
687
|
-
"showLess": "
|
|
687
|
+
"blank": "Vide",
|
|
688
|
+
"null": "Nul",
|
|
689
|
+
"showMore": "Afficher en plus",
|
|
690
|
+
"showLess": "Afficher en moins",
|
|
688
691
|
"flow": "Flux",
|
|
689
692
|
"selection": "Sélection",
|
|
690
693
|
"nodes": "__count__ noeuds",
|
|
@@ -695,7 +698,7 @@
|
|
|
695
698
|
"arrayItems": "__count__ éléments",
|
|
696
699
|
"showTips": "Vous pouvez ouvrir les astuces à partir du panneau des paramètres",
|
|
697
700
|
"outline": "Plan",
|
|
698
|
-
"empty": "
|
|
701
|
+
"empty": "Vide",
|
|
699
702
|
"globalConfig": "Noeuds de configuration globale",
|
|
700
703
|
"triggerAction": "Déclencher une action",
|
|
701
704
|
"find": "Rechercher dans l'espace de travail",
|
|
@@ -706,7 +709,7 @@
|
|
|
706
709
|
},
|
|
707
710
|
"help": {
|
|
708
711
|
"name": "Aide",
|
|
709
|
-
"label": "
|
|
712
|
+
"label": "Aide",
|
|
710
713
|
"search": "Aide à la recherche",
|
|
711
714
|
"nodeHelp": "Aide sur les noeuds",
|
|
712
715
|
"showHelp": "Afficher l'aide",
|
|
@@ -717,23 +720,23 @@
|
|
|
717
720
|
},
|
|
718
721
|
"config": {
|
|
719
722
|
"name": "Noeuds de configuration",
|
|
720
|
-
"label": "
|
|
723
|
+
"label": "Configuration",
|
|
721
724
|
"global": "Tous les flux",
|
|
722
|
-
"none": "
|
|
723
|
-
"subflows": "
|
|
724
|
-
"flows": "
|
|
725
|
-
"filterAll": "
|
|
725
|
+
"none": "Aucun",
|
|
726
|
+
"subflows": "Sous-flux",
|
|
727
|
+
"flows": "Flux",
|
|
728
|
+
"filterAll": "Tout",
|
|
726
729
|
"showAllConfigNodes": "Afficher tous les noeuds de configuration",
|
|
727
|
-
"filterUnused": "
|
|
730
|
+
"filterUnused": "Inutilisé",
|
|
728
731
|
"showAllUnusedConfigNodes": "Afficher tous les noeuds de configuration inutilisés",
|
|
729
732
|
"filtered": "__count__ caché(s)"
|
|
730
733
|
},
|
|
731
734
|
"context": {
|
|
732
735
|
"name": "Données contextuelles",
|
|
733
|
-
"label": "
|
|
734
|
-
"none": "
|
|
735
|
-
"refresh": "
|
|
736
|
-
"empty": "
|
|
736
|
+
"label": "Contexte",
|
|
737
|
+
"none": "Aucune sélection",
|
|
738
|
+
"refresh": "Actualiser pour charger",
|
|
739
|
+
"empty": "Vide",
|
|
737
740
|
"node": "Noeud",
|
|
738
741
|
"flow": "Flux",
|
|
739
742
|
"global": "Global",
|
|
@@ -744,10 +747,10 @@
|
|
|
744
747
|
},
|
|
745
748
|
"palette": {
|
|
746
749
|
"name": "Gestion des palettes",
|
|
747
|
-
"label": "
|
|
750
|
+
"label": "Palette"
|
|
748
751
|
},
|
|
749
752
|
"project": {
|
|
750
|
-
"label": "
|
|
753
|
+
"label": "Projet",
|
|
751
754
|
"name": "Projet",
|
|
752
755
|
"description": "Description",
|
|
753
756
|
"dependencies": "Dépendances",
|
|
@@ -760,11 +763,11 @@
|
|
|
760
763
|
"showProjectSettings": "Afficher les paramètres du projet",
|
|
761
764
|
"projectSettings": {
|
|
762
765
|
"title": "Paramètres du projet",
|
|
763
|
-
"edit": "
|
|
766
|
+
"edit": "Modifier",
|
|
764
767
|
"none": "Vide",
|
|
765
|
-
"install": "
|
|
766
|
-
"removeFromProject": "
|
|
767
|
-
"addToProject": "
|
|
768
|
+
"install": "Installer",
|
|
769
|
+
"removeFromProject": "Supprimer du projet",
|
|
770
|
+
"addToProject": "Ajouter au projet",
|
|
768
771
|
"files": "Fichiers",
|
|
769
772
|
"flow": "Flux",
|
|
770
773
|
"credentials": "Identifiants",
|
|
@@ -812,7 +815,7 @@
|
|
|
812
815
|
"workflowAutoTip": "Les modifications sont validées automatiquement à chaque déploiement",
|
|
813
816
|
"sshKeys": "Clés SSH",
|
|
814
817
|
"sshKeysTip": "Vous permet de créer des connexions sécurisées aux référentiels Git distants.",
|
|
815
|
-
"add": "
|
|
818
|
+
"add": "Ajouter une clé",
|
|
816
819
|
"addSshKey": "Ajouter une clé SSH",
|
|
817
820
|
"addSshKeyTip": "Générer une nouvelle paire de clés publique/privée",
|
|
818
821
|
"name": "Nom",
|
|
@@ -848,7 +851,7 @@
|
|
|
848
851
|
"none": "Vide",
|
|
849
852
|
"conflictResolve": "Tous les conflits ont été résolus. Valider les modifications pour terminer la fusion.",
|
|
850
853
|
"localFiles": "Fichiers locaux",
|
|
851
|
-
"all": "
|
|
854
|
+
"all": "Tout",
|
|
852
855
|
"unmergedChanges": "Modifications non fusionnées",
|
|
853
856
|
"abortMerge": "Abandonner la fusion",
|
|
854
857
|
"commit": "Valider",
|
|
@@ -1097,9 +1100,9 @@
|
|
|
1097
1100
|
"desc8": "Le fichier contenant les identifiants ne sera pas crypté et son contenu sera facilement lisible",
|
|
1098
1101
|
"create-project-files": "Créer des fichiers de projet",
|
|
1099
1102
|
"create-project": "Créer un projet",
|
|
1100
|
-
"already-exists": "
|
|
1103
|
+
"already-exists": "Existe déjà",
|
|
1101
1104
|
"git-error": "Erreur Git",
|
|
1102
|
-
"git-auth-error": "
|
|
1105
|
+
"git-auth-error": "Erreur d'authentification Git"
|
|
1103
1106
|
},
|
|
1104
1107
|
"create-success": {
|
|
1105
1108
|
"success": "Vous avez créé avec succès votre premier projet !",
|
|
@@ -1135,8 +1138,8 @@
|
|
|
1135
1138
|
"desc2": "Avant de pouvoir cloner un référentiel sur ssh, vous devez ajouter une clé SSH pour y accéder.",
|
|
1136
1139
|
"add-ssh-key": "Ajouter une clé ssh",
|
|
1137
1140
|
"credentials-encryption-key": "Clé de chiffrement des identifiants",
|
|
1138
|
-
"already-exists-2": "
|
|
1139
|
-
"git-error": "
|
|
1141
|
+
"already-exists-2": "Existe déjà",
|
|
1142
|
+
"git-error": "Erreur git",
|
|
1140
1143
|
"con-failed": "La connexion a échoué",
|
|
1141
1144
|
"not-git": "Ce n'est pas un dépôt git",
|
|
1142
1145
|
"no-resource": "Référentiel introuvable",
|
|
@@ -1148,8 +1151,8 @@
|
|
|
1148
1151
|
"confirm": "Voulez-vous vraiment supprimer ce projet ?"
|
|
1149
1152
|
},
|
|
1150
1153
|
"create-project-list": {
|
|
1151
|
-
"search": "
|
|
1152
|
-
"current": "
|
|
1154
|
+
"search": "Rechercher vos projets",
|
|
1155
|
+
"current": "Actuel"
|
|
1153
1156
|
},
|
|
1154
1157
|
"require-clean": {
|
|
1155
1158
|
"confirm": "<p>Vous avez des modifications non déployées qui seront perdues.</p><p>Voulez-vous continuer ?</p>"
|
|
@@ -1212,11 +1215,8 @@
|
|
|
1212
1215
|
"validator": {
|
|
1213
1216
|
"errors": {
|
|
1214
1217
|
"invalid-json": "Données JSON invalides : __error__",
|
|
1215
|
-
"invalid-json-prop": "__prop__: données JSON invalides : __error__",
|
|
1216
1218
|
"invalid-prop": "Expression de propriété non valide",
|
|
1217
|
-
"invalid-prop-prop": "__prop__: expression de propriété invalide",
|
|
1218
1219
|
"invalid-num": "Numéro invalide",
|
|
1219
|
-
"invalid-num-prop": "__prop__: numéro invalide",
|
|
1220
1220
|
"invalid-regexp": "Modèle d'entrée non valide",
|
|
1221
1221
|
"invalid-regex-prop": "__prop__: modèle d'entrée non valide",
|
|
1222
1222
|
"missing-required-prop": "__prop__: valeur de la propriété manquante",
|
package/locales/fr/infotips.json
CHANGED
|
File without changes
|
package/locales/fr/jsonata.json
CHANGED
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "Renvoie un tableau contenant toutes les valeurs du paramètre `array`, mais triées dans l'ordre.\n\nSi un comparateur `function` est fourni, alors il doit s'agir d'une fonction qui prend deux paramètres :\n\n`function(left , droite)`\n\nCette fonction est invoquée par l'algorithme de tri pour comparer deux valeurs à gauche et à droite. Si la valeur de left doit être placée après la valeur de right dans l'ordre de tri souhaité, la fonction doit renvoyer un booléen `true` pour indiquer un échange. Sinon, il doit renvoyer `false`."
|
|
140
|
+
"desc": "Renvoie un tableau contenant toutes les valeurs du paramètre `array`, mais triées dans l'ordre.\n\nSi un comparateur `function` est fourni, alors il doit s'agir d'une fonction qui prend deux paramètres :\n\n`function(left , droite)`\n\nCette fonction est invoquée par l'algorithme de tri pour comparer deux valeurs à gauche et à droite. Si la valeur de `left` doit être placée après la valeur de `right` dans l'ordre de tri souhaité, la fonction doit renvoyer un booléen `true` pour indiquer un échange. Sinon, il doit renvoyer `false`."
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "Convertit le `number` en une chaîne et le formate en une représentation décimale comme spécifié par la chaîne `picture`.\n\n Le comportement de cette fonction est cohérent avec la fonction XPath/XQuery fn:format-number telle que définie dans le Spécification XPath F&O 3.1. Le paramètre de chaîne d'image définit la façon dont le nombre est formaté et a la même syntaxe que fn:format-number
|
|
208
|
+
"desc": "Convertit le `number` en une chaîne et le formate en une représentation décimale comme spécifié par la chaîne `picture`.\n\n Le comportement de cette fonction est cohérent avec la fonction XPath/XQuery `fn:format-number` telle que définie dans le Spécification XPath F&O 3.1. Le paramètre de chaîne d'image définit la façon dont le nombre est formaté et a la même syntaxe que `fn:format-number`.\n\nLe troisième argument facultatif `options` est utilisé pour remplacer les caractères de formatage spécifiques aux paramètres régionaux par défaut, tels que le séparateur décimal. S'il est fourni, cet argument doit être un objet contenant des paires nom/valeur spécifiées dans la section de format décimal de la spécification XPath F&O 3.1."
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -249,15 +249,15 @@
|
|
|
249
249
|
},
|
|
250
250
|
"$encodeUrl": {
|
|
251
251
|
"args": "str",
|
|
252
|
-
"desc": "Encode une URL (Uniform Resource Locator) en remplaçant chaque instance de certains caractères par une, deux, trois ou quatre séquences d'échappement représentant l'encodage UTF-8 du caractère
|
|
252
|
+
"desc": "Encode une URL (Uniform Resource Locator) en remplaçant chaque instance de certains caractères par une, deux, trois ou quatre séquences d'échappement représentant l'encodage UTF-8 du caractère.\n\nExemple : `$encodeUrl(\"https://mozilla.org/?x=шеллы\")` => `\"https://mozilla.org/?x=%D1%88%D0% B5%D0%BB%D0%BB%D1%8B\"`"
|
|
253
253
|
},
|
|
254
254
|
"$decodeUrlComponent": {
|
|
255
255
|
"args": "str",
|
|
256
|
-
"desc": "Décode un composant URL (Uniform Resource Locator) précédemment créé par encodeUrlComponent
|
|
256
|
+
"desc": "Décode un composant URL (Uniform Resource Locator) précédemment créé par encodeUrlComponent.\n\nExemple : `$decodeUrlComponent(\"%3Fx%3Dtest\")` => `\"?x=test\"`"
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "Décode une URL (Uniform Resource Locator) précédemment créée par encodeUrl
|
|
260
|
+
"desc": "Décode une URL (Uniform Resource Locator) précédemment créée par encodeUrl.\n\nExemple : `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
|
@@ -270,5 +270,9 @@
|
|
|
270
270
|
"$moment": {
|
|
271
271
|
"args": "[str]",
|
|
272
272
|
"desc": "Obtient un objet de date à l'aide de la bibliothèque Moment."
|
|
273
|
+
},
|
|
274
|
+
"$clone": {
|
|
275
|
+
"args": "valeur",
|
|
276
|
+
"desc": "Cloner un objet en toute sécurité."
|
|
273
277
|
}
|
|
274
278
|
}
|
package/locales/ja/editor.json
CHANGED
|
@@ -627,6 +627,7 @@
|
|
|
627
627
|
"tab-nodes": "現在のノード",
|
|
628
628
|
"tab-install": "ノードを追加",
|
|
629
629
|
"sort": "並べ替え:",
|
|
630
|
+
"sortRelevance": "関連順",
|
|
630
631
|
"sortAZ": "辞書順",
|
|
631
632
|
"sortRecent": "日付順",
|
|
632
633
|
"more": "+ さらに __count__ 個",
|
|
@@ -1214,11 +1215,8 @@
|
|
|
1214
1215
|
"validator": {
|
|
1215
1216
|
"errors": {
|
|
1216
1217
|
"invalid-json": "JSONデータが不正: __error__",
|
|
1217
|
-
"invalid-json-prop": "__prop__: JSONデータが不正: __error__",
|
|
1218
1218
|
"invalid-prop": "プロパティ式が不正",
|
|
1219
|
-
"invalid-prop-prop": "__prop__: プロパティ式が不正",
|
|
1220
1219
|
"invalid-num": "数値が不正",
|
|
1221
|
-
"invalid-num-prop": "__prop__: 数値が不正",
|
|
1222
1220
|
"invalid-regexp": "入力パターンが不正",
|
|
1223
1221
|
"invalid-regex-prop": "__prop__: 入力パターンが不正",
|
|
1224
1222
|
"missing-required-prop": "__prop__: プロパティが未設定",
|
package/locales/ja/jsonata.json
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"$now": {
|
|
55
55
|
"args": "$[picture [, timezone]]",
|
|
56
|
-
"desc": "ISO 8601
|
|
56
|
+
"desc": "ISO 8601互換形式の時刻を生成し、文字列として返します。`picture` および `timezone` パラメータが指定されている場合、現在時刻を `$fromMillis()` 関数の説明に従ってフォーマットします。"
|
|
57
57
|
},
|
|
58
58
|
"$base64encode": {
|
|
59
59
|
"args": "string",
|
|
@@ -117,11 +117,11 @@
|
|
|
117
117
|
},
|
|
118
118
|
"$boolean": {
|
|
119
119
|
"args": "arg",
|
|
120
|
-
"desc": "
|
|
120
|
+
"desc": "以下のルールを用いて、真偽型へ型変換します。:\n\n - `Boolean` : 変換しない\n - `string`: 空 : `false`\n - `string`: 空でない : `true`\n - `number`: `0` : `false`\n - `number`: 0でない : `true`\n - `null` : `false`\n - `array`: 空 : `false`\n - `array`: `true` に型変換された要素を持つ: `true`\n - `array`: 全ての要素が `false` に型変換: `false`\n - `object`: 空 : `false`\n - `object`: 空でない : `true`\n - `function` : `false`"
|
|
121
121
|
},
|
|
122
122
|
"$not": {
|
|
123
123
|
"args": "arg",
|
|
124
|
-
"desc": "
|
|
124
|
+
"desc": "引数の否定を真偽型で返します。 `arg` は最初に真偽型に型変換されます。"
|
|
125
125
|
},
|
|
126
126
|
"$exists": {
|
|
127
127
|
"args": "arg",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "配列 `array` 内の値を並び変えた配列を返します。\n\n比較関数 `function` を用いる場合、比較関数は以下のとおり2つの引数を持つ必要があります。\n\n`function(left, right)`\n\n
|
|
140
|
+
"desc": "配列 `array` 内の値を並び変えた配列を返します。\n\n比較関数 `function` を用いる場合、比較関数は以下のとおり2つの引数を持つ必要があります。\n\n`function(left, right)`\n\n比較関数は、`left` と `right` の2つの値を比較するために、値を並び替える処理で呼び出されます。もし、求められる並び順にて `left` の値を `right` の値より後ろに置きたい場合は、比較関数は置き換えを表す真偽型の `true` を返す必要があります。一方、置き換えが不要の場合は `false` を返す必要があります。"
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "`number` を文字列へ変換し、文字列 `picture` に指定した数値表現になるよう書式を変更します。\n\nこの関数の動作は、XPath F&O 3.1の仕様に定義されているXPath/XQuery関数のfn:format-numberの動作と同じです。引数の文字列 picture は、fn:format-numberと同じ構文で数値の書式を定義します。\n\n任意の第三引数 `options` は、小数点記号の様な既定のロケール固有の書式設定文字を上書きするために使用します。この引数を指定する場合、XPath F&O 3.1の仕様の数値形式の項に記述されているname/valueペアを含むオブジェクトでなければなりません。"
|
|
208
|
+
"desc": "`number` を文字列へ変換し、文字列 `picture` に指定した数値表現になるよう書式を変更します。\n\nこの関数の動作は、XPath F&O 3.1の仕様に定義されているXPath/XQuery関数の `fn:format-number` の動作と同じです。引数の文字列 `picture` は、 `fn:format-number` と同じ構文で数値の書式を定義します。\n\n任意の第三引数 `options` は、小数点記号の様な既定のロケール固有の書式設定文字を上書きするために使用します。この引数を指定する場合、XPath F&O 3.1の仕様の数値形式の項に記述されているname/valueペアを含むオブジェクトでなければなりません。"
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
},
|
|
238
238
|
"$assert": {
|
|
239
239
|
"args": "arg, str",
|
|
240
|
-
"desc": "`arg
|
|
240
|
+
"desc": "`arg`が真の場合、`undefined`を返します。偽の場合、`str`をメッセージとする例外を送出します。"
|
|
241
241
|
},
|
|
242
242
|
"$single": {
|
|
243
243
|
"args": "array, function",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "encodeUrlで置換したUniform Resource Locator (URL)
|
|
260
|
+
"desc": "encodeUrlで置換したUniform Resource Locator (URL)要素をデコードします。\n\n例: `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
|
@@ -270,5 +270,9 @@
|
|
|
270
270
|
"$moment": {
|
|
271
271
|
"args": "[str]",
|
|
272
272
|
"desc": "Momentライブラリを使用して日付オブジェクトを取得します。"
|
|
273
|
+
},
|
|
274
|
+
"$clone": {
|
|
275
|
+
"args": "value",
|
|
276
|
+
"desc": "オブジェクトを安全に複製します。"
|
|
273
277
|
}
|
|
274
278
|
}
|