@wise/dynamic-flow-client-internal 4.23.0 → 4.24.0-experimental-048a281
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/build/i18n/es.json +1 -1
- package/build/main.js +1704 -1688
- package/build/main.mjs +1708 -1692
- package/build/types/index.d.ts +2 -1
- package/package.json +5 -5
package/build/main.mjs
CHANGED
|
@@ -32,1630 +32,794 @@ var __objRest = (source, exclude) => {
|
|
|
32
32
|
|
|
33
33
|
// src/index.ts
|
|
34
34
|
import { makeHttpClient } from "@wise/dynamic-flow-client";
|
|
35
|
-
import { findRendererPropsByType, isValidSchema, JsonSchemaForm } from "@wise/dynamic-flow-client";
|
|
36
35
|
|
|
37
|
-
// src/
|
|
38
|
-
import {
|
|
36
|
+
// ../renderers/src/AlertRenderer.tsx
|
|
37
|
+
import { Alert } from "@transferwise/components";
|
|
39
38
|
|
|
40
|
-
// src/
|
|
41
|
-
var
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"df.wise.ControlFeedback.patternDate": "Zadejte pros\xEDm datum ve spr\xE1vn\xE9m form\xE1tu.",
|
|
57
|
-
"df.wise.ControlFeedback.required": "Vypl\u0148te pros\xEDm toto pole.",
|
|
58
|
-
"df.wise.ControlFeedback.type": "Nespr\xE1vn\xFD typ",
|
|
59
|
-
"df.wise.CopyFeedback.copy": "Zkop\xEDrov\xE1no do schr\xE1nky",
|
|
60
|
-
"df.wise.CopyFeedback.copyFailed": "Kop\xEDrov\xE1n\xED do schr\xE1nky se nezda\u0159ilo",
|
|
61
|
-
"df.wise.Decision.all": "V\u0161e",
|
|
62
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
63
|
-
"df.wise.Decision.noResults": "\u017D\xE1dn\xE9 v\xFDsledky",
|
|
64
|
-
"df.wise.Decision.popular": "Popul\xE1rn\xED",
|
|
65
|
-
"df.wise.Decision.recent": "Ned\xE1vn\xE9",
|
|
66
|
-
"df.wise.Decision.results": "V\xFDsledky hled\xE1n\xED",
|
|
67
|
-
"df.wise.DynamicParagraph.copied": "Zkop\xEDrov\xE1no do schr\xE1nky",
|
|
68
|
-
"df.wise.DynamicParagraph.copy": "Kop\xEDrovat",
|
|
69
|
-
"df.wise.ErrorBoundary.errorAlert": "N\u011Bco se pokazilo.",
|
|
70
|
-
"df.wise.ErrorBoundary.retry": "Zkusit znovu",
|
|
71
|
-
"df.wise.ExternalConfirmation.cancel": "Zru\u0161it",
|
|
72
|
-
"df.wise.ExternalConfirmation.description": "Potvr\u010Fte, \u017Ee chcete otev\u0159\xEDt **{origin}** v nov\xE9 kart\u011B prohl\xED\u017Ee\u010De.",
|
|
73
|
-
"df.wise.ExternalConfirmation.open": "Otev\u0159\xEDt v nov\xE9 kart\u011B",
|
|
74
|
-
"df.wise.ExternalConfirmation.title": "Potvr\u010Fte",
|
|
75
|
-
"df.wise.Help.ariaLabel": "Pro v\xEDce informac\xED klikn\u011Bte sem.",
|
|
76
|
-
"df.wise.MultiSelect.summary": "{first} a {count} dal\u0161\xED(ch)",
|
|
77
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Je n\xE1m l\xEDto, ale tento soubor je p\u0159\xEDli\u0161 velk\xFD. Nahrajte pros\xEDm men\u0161\xED soubor.",
|
|
78
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Nahrajte {maxItems} nebo m\xE9n\u011B soubor\u016F.",
|
|
79
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Nahrajte pros\xEDm alespo\u0148 n\xE1sleduj\xEDc\xED po\u010Det soubor\u016F: {minItems}.",
|
|
80
|
-
"df.wise.PersistAsyncSchema.genericError": "N\u011Bco se pokazilo. Zkuste to pros\xEDm znovu.",
|
|
81
|
-
"df.wise.SearchLayout.loading": "Na\u010D\xEDt\xE1n\xED..."
|
|
39
|
+
// ../renderers/src/utils/layout-utils.ts
|
|
40
|
+
var getMargin = (size) => {
|
|
41
|
+
switch (size) {
|
|
42
|
+
case "xs":
|
|
43
|
+
return "m-b-0";
|
|
44
|
+
case "sm":
|
|
45
|
+
return "m-b-1";
|
|
46
|
+
case "md":
|
|
47
|
+
return "m-b-2";
|
|
48
|
+
case "lg":
|
|
49
|
+
return "m-b-3";
|
|
50
|
+
case "xl":
|
|
51
|
+
return "m-b-5";
|
|
52
|
+
default:
|
|
53
|
+
return "";
|
|
54
|
+
}
|
|
82
55
|
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
"df.wise.ControlFeedback.maxLength": "Bitte gib nicht mehr als {maxLength} Zeichen ein.",
|
|
94
|
-
"df.wise.ControlFeedback.maximum": "Bitte gib eine Zahl ein, die {maximum} oder weniger betr\xE4gt.",
|
|
95
|
-
"df.wise.ControlFeedback.maximumDate": "Bitte gib ein Datum ein, das am oder vor dem {maximum} liegt.",
|
|
96
|
-
"df.wise.ControlFeedback.minLength": "Bitte gib mindestens {minLength} Zeichen ein.",
|
|
97
|
-
"df.wise.ControlFeedback.minimum": "Bitte gib eine Zahl ein, die {minimum} oder mehr betr\xE4gt.",
|
|
98
|
-
"df.wise.ControlFeedback.minimumDate": "Bitte gib ein Datum ein, das am oder nach dem {minimum} liegt.",
|
|
99
|
-
"df.wise.ControlFeedback.pattern": "Bitte gib die Angabe im richtigen Format ein.",
|
|
100
|
-
"df.wise.ControlFeedback.patternDate": "Bitte gib ein Datum im richtigen Format ein.",
|
|
101
|
-
"df.wise.ControlFeedback.required": "Bitte f\xFClle dieses Feld aus.",
|
|
102
|
-
"df.wise.ControlFeedback.type": "Falscher Typ",
|
|
103
|
-
"df.wise.CopyFeedback.copy": "In Zwischenablage kopiert",
|
|
104
|
-
"df.wise.CopyFeedback.copyFailed": "Kopieren in Zwischenablage fehlgeschlagen",
|
|
105
|
-
"df.wise.Decision.all": "Alle",
|
|
106
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
107
|
-
"df.wise.Decision.noResults": "Keine Ergebnisse",
|
|
108
|
-
"df.wise.Decision.popular": "Beliebt",
|
|
109
|
-
"df.wise.Decision.recent": "Neu",
|
|
110
|
-
"df.wise.Decision.results": "Suchergebnisse",
|
|
111
|
-
"df.wise.DynamicParagraph.copied": "In Zwischenablage kopiert",
|
|
112
|
-
"df.wise.DynamicParagraph.copy": "Kopieren",
|
|
113
|
-
"df.wise.ErrorBoundary.errorAlert": "Da ist etwas schiefgegangen.",
|
|
114
|
-
"df.wise.ErrorBoundary.retry": "Erneut versuchen",
|
|
115
|
-
"df.wise.ExternalConfirmation.cancel": "Abbrechen",
|
|
116
|
-
"df.wise.ExternalConfirmation.description": "Bitte best\xE4tige, dass du **{origin}** in einem neuen Browser-Tab \xF6ffnen m\xF6chtest.",
|
|
117
|
-
"df.wise.ExternalConfirmation.open": "In neuem Tab \xF6ffnen",
|
|
118
|
-
"df.wise.ExternalConfirmation.title": "Bitte best\xE4tigen",
|
|
119
|
-
"df.wise.Help.ariaLabel": "Klicke hier f\xFCr mehr Informationen.",
|
|
120
|
-
"df.wise.MultiSelect.summary": "{first} und {count} weitere",
|
|
121
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Diese Datei ist leider zu gro\xDF. Bitte lade eine kleinere Datei hoch.",
|
|
122
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Bitte lade {maxItems} oder weniger Dateien hoch.",
|
|
123
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Bitte lade mindestens {minItems} Datei(en) hoch.",
|
|
124
|
-
"df.wise.PersistAsyncSchema.genericError": "Da ist etwas schiefgegangen. Versuche es bitte nochmal.",
|
|
125
|
-
"df.wise.SearchLayout.loading": "L\xE4dt..."
|
|
56
|
+
var getTextAlignment = (align) => {
|
|
57
|
+
switch (align) {
|
|
58
|
+
case "end":
|
|
59
|
+
return "text-xs-right";
|
|
60
|
+
case "center":
|
|
61
|
+
return "text-xs-center";
|
|
62
|
+
case "start":
|
|
63
|
+
default:
|
|
64
|
+
return "";
|
|
65
|
+
}
|
|
126
66
|
};
|
|
67
|
+
var getTextAlignmentAndMargin = (component) => `${getTextAlignment(component.align)} ${getMargin(component.margin)}`;
|
|
127
68
|
|
|
128
|
-
// src/
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
151
|
-
"df.wise.Decision.noResults": "No results",
|
|
152
|
-
"df.wise.Decision.popular": "Popular",
|
|
153
|
-
"df.wise.Decision.recent": "Recent",
|
|
154
|
-
"df.wise.Decision.results": "Search results",
|
|
155
|
-
"df.wise.DynamicParagraph.copied": "Copied to clipboard",
|
|
156
|
-
"df.wise.DynamicParagraph.copy": "Copy",
|
|
157
|
-
"df.wise.ErrorBoundary.errorAlert": "Something went wrong.",
|
|
158
|
-
"df.wise.ErrorBoundary.retry": "Retry",
|
|
159
|
-
"df.wise.ExternalConfirmation.cancel": "Cancel",
|
|
160
|
-
"df.wise.ExternalConfirmation.description": "Please confirm you want to open **{origin}** in a new browser tab.",
|
|
161
|
-
"df.wise.ExternalConfirmation.open": "Open in new tab",
|
|
162
|
-
"df.wise.ExternalConfirmation.title": "Please confirm",
|
|
163
|
-
"df.wise.Help.ariaLabel": "Click here for more info.",
|
|
164
|
-
"df.wise.MultiSelect.summary": "{first} and {count} more",
|
|
165
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Sorry, that file is too big. Please upload a smaller file.",
|
|
166
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Please upload {maxItems} or fewer files.",
|
|
167
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Please upload at least {minItems} file(s).",
|
|
168
|
-
"df.wise.PersistAsyncSchema.genericError": "Something went wrong, please try again.",
|
|
169
|
-
"df.wise.SearchLayout.loading": "Loading..."
|
|
69
|
+
// ../renderers/src/AlertRenderer.tsx
|
|
70
|
+
import { jsx } from "react/jsx-runtime";
|
|
71
|
+
var AlertRenderer = {
|
|
72
|
+
canRenderType: "alert",
|
|
73
|
+
render: ({ context, markdown, margin, callToAction }) => /* @__PURE__ */ jsx(
|
|
74
|
+
Alert,
|
|
75
|
+
{
|
|
76
|
+
type: context,
|
|
77
|
+
className: getMargin(margin),
|
|
78
|
+
message: markdown,
|
|
79
|
+
action: mapCtaToAlertAction(callToAction)
|
|
80
|
+
}
|
|
81
|
+
)
|
|
82
|
+
};
|
|
83
|
+
var mapCtaToAlertAction = (callToAction) => {
|
|
84
|
+
if (callToAction) {
|
|
85
|
+
return __spreadValues(__spreadValues({
|
|
86
|
+
text: callToAction.title,
|
|
87
|
+
"aria-label": callToAction.accessibilityDescription
|
|
88
|
+
}, "onClick" in callToAction ? { onClick: callToAction.onClick } : {}), callToAction.type === "link" ? { href: callToAction.href, target: "_blank" } : {});
|
|
89
|
+
}
|
|
90
|
+
return void 0;
|
|
170
91
|
};
|
|
92
|
+
var AlertRenderer_default = AlertRenderer;
|
|
171
93
|
|
|
172
|
-
// src/
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"df.wise.Decision.all": "Todas",
|
|
194
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
195
|
-
"df.wise.Decision.noResults": "No hay resultados",
|
|
196
|
-
"df.wise.Decision.popular": "Populares",
|
|
197
|
-
"df.wise.Decision.recent": "Recientes",
|
|
198
|
-
"df.wise.Decision.results": "Resultados de b\xFAsqueda",
|
|
199
|
-
"df.wise.DynamicParagraph.copied": "Copiado al portapapeles",
|
|
200
|
-
"df.wise.DynamicParagraph.copy": "Copiar",
|
|
201
|
-
"df.wise.ErrorBoundary.errorAlert": "Ha habido un error.",
|
|
202
|
-
"df.wise.ErrorBoundary.retry": "Reintentar",
|
|
203
|
-
"df.wise.ExternalConfirmation.cancel": "Cancelar",
|
|
204
|
-
"df.wise.ExternalConfirmation.description": "Confirma que quieres abrir **{origin}** en una nueva pesta\xF1a del navegador.",
|
|
205
|
-
"df.wise.ExternalConfirmation.open": "Abrir en nueva pesta\xF1a",
|
|
206
|
-
"df.wise.ExternalConfirmation.title": "Por favor, confirma",
|
|
207
|
-
"df.wise.Help.ariaLabel": "Haz clic aqu\xED para obtener m\xE1s informaci\xF3n.",
|
|
208
|
-
"df.wise.MultiSelect.summary": "{first} y {count} m\xE1s",
|
|
209
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Lo sentimos, el archivo pesa demasiado. Sube uno m\xE1s peque\xF1o.",
|
|
210
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Sube {maxItems} o menos archivos.",
|
|
211
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Sube al menos {minItems} archivo(s).",
|
|
212
|
-
"df.wise.PersistAsyncSchema.genericError": "Ha habido un error. Int\xE9ntalo de nuevo.",
|
|
213
|
-
"df.wise.SearchLayout.loading": "Cargando..."
|
|
94
|
+
// ../renderers/src/BoxRenderer.tsx
|
|
95
|
+
import classNames from "classnames";
|
|
96
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
97
|
+
var BoxRenderer = {
|
|
98
|
+
canRenderType: "box",
|
|
99
|
+
render: ({ children, control, margin, width }) => {
|
|
100
|
+
const hasFixedWidth = width !== "xl";
|
|
101
|
+
const hasBorder = control === "bordered" || control === "bordered-web";
|
|
102
|
+
const contents = /* @__PURE__ */ jsx2(
|
|
103
|
+
"div",
|
|
104
|
+
{
|
|
105
|
+
className: classNames({
|
|
106
|
+
"df-box-renderer-border": hasBorder,
|
|
107
|
+
[`df-box-renderer-width-${width}`]: hasFixedWidth,
|
|
108
|
+
[getMargin(margin)]: !hasFixedWidth
|
|
109
|
+
}),
|
|
110
|
+
children
|
|
111
|
+
}
|
|
112
|
+
);
|
|
113
|
+
return hasFixedWidth ? /* @__PURE__ */ jsx2("div", { className: classNames("df-box-renderer-fixed-width", getMargin(margin)), children: contents }) : contents;
|
|
114
|
+
}
|
|
214
115
|
};
|
|
116
|
+
var BoxRenderer_default = BoxRenderer;
|
|
215
117
|
|
|
216
|
-
// src/
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
"df.wise.ArraySchema.addItemTitle": "Ajouter un \xE9l\xE9ment",
|
|
220
|
-
"df.wise.ArraySchema.editItem": "Enregistrer",
|
|
221
|
-
"df.wise.ArraySchema.maxItemsError": "Veuillez ajouter {maxItems} ou moins.",
|
|
222
|
-
"df.wise.ArraySchema.minItemsError": "Veuillez ajouter au moins {minItems}.",
|
|
223
|
-
"df.wise.ArraySchema.removeItem": "Supprimer",
|
|
224
|
-
"df.wise.ButtonLayout.buttonLoadingMessage": "Patientez quelques secondes",
|
|
225
|
-
"df.wise.ControlFeedback.maxLength": "Veuillez saisir {maxLength} caract\xE8res ou moins.",
|
|
226
|
-
"df.wise.ControlFeedback.maximum": "Veuillez saisir un nombre inf\xE9rieur ou \xE9gal \xE0 {maximum}.",
|
|
227
|
-
"df.wise.ControlFeedback.maximumDate": "Veuillez saisir une date \xE9gale ou ant\xE9rieure au {maximum}.",
|
|
228
|
-
"df.wise.ControlFeedback.minLength": "Veuillez saisir au moins {minLength} caract\xE8res.",
|
|
229
|
-
"df.wise.ControlFeedback.minimum": "Veuillez saisir un nombre sup\xE9rieur ou \xE9gal \xE0 {minimum}.",
|
|
230
|
-
"df.wise.ControlFeedback.minimumDate": "Veuillez saisir une date \xE9gale ou post\xE9rieure au {minimum}.",
|
|
231
|
-
"df.wise.ControlFeedback.pattern": "Veuillez saisir les informations dans le bon format.",
|
|
232
|
-
"df.wise.ControlFeedback.patternDate": "Veuillez saisir une date au format correct.",
|
|
233
|
-
"df.wise.ControlFeedback.required": "Champ obligatoire.",
|
|
234
|
-
"df.wise.ControlFeedback.type": "Type incorrect",
|
|
235
|
-
"df.wise.CopyFeedback.copy": "Copi\xE9 dans le presse-papier",
|
|
236
|
-
"df.wise.CopyFeedback.copyFailed": "Impossible de copier dans le presse-papier",
|
|
237
|
-
"df.wise.Decision.all": "Toutes",
|
|
238
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
239
|
-
"df.wise.Decision.noResults": "Aucun r\xE9sultat",
|
|
240
|
-
"df.wise.Decision.popular": "Populaires",
|
|
241
|
-
"df.wise.Decision.recent": "R\xE9cents",
|
|
242
|
-
"df.wise.Decision.results": "R\xE9sultats de recherche",
|
|
243
|
-
"df.wise.DynamicParagraph.copied": "Copi\xE9 dans le presse-papier",
|
|
244
|
-
"df.wise.DynamicParagraph.copy": "Copier",
|
|
245
|
-
"df.wise.ErrorBoundary.errorAlert": "Une erreur s'est produite.",
|
|
246
|
-
"df.wise.ErrorBoundary.retry": "R\xE9essayer",
|
|
247
|
-
"df.wise.ExternalConfirmation.cancel": "Annuler",
|
|
248
|
-
"df.wise.ExternalConfirmation.description": "Veuillez confirmer que vous souhaitez ouvrir **{origin}** dans un nouvel onglet.",
|
|
249
|
-
"df.wise.ExternalConfirmation.open": "Ouvrir dans un nouvel onglet",
|
|
250
|
-
"df.wise.ExternalConfirmation.title": "Veuillez confirmer",
|
|
251
|
-
"df.wise.Help.ariaLabel": "Cliquez ici pour plus d'informations.",
|
|
252
|
-
"df.wise.MultiSelect.summary": "{first} et {count} de plus",
|
|
253
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Nous sommes d\xE9sol\xE9s, ce fichier est trop volumineux. Veuillez t\xE9l\xE9charger un fichier plus petit.",
|
|
254
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Veuillez t\xE9l\xE9charger {maxItems} fichiers ou moins.",
|
|
255
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Veuillez t\xE9l\xE9charger au moins {minItems} fichier(s).",
|
|
256
|
-
"df.wise.PersistAsyncSchema.genericError": "Une erreur s'est produite, veuillez r\xE9essayer.",
|
|
257
|
-
"df.wise.SearchLayout.loading": "Chargement..."
|
|
258
|
-
};
|
|
118
|
+
// ../renderers/src/ButtonRenderer/AddressValidationButtonRenderer.tsx
|
|
119
|
+
import { Button, InlineAlert } from "@transferwise/components";
|
|
120
|
+
import { useIntl } from "react-intl";
|
|
259
121
|
|
|
260
|
-
// src/
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
"df.wise.ControlFeedback.maxLength": "K\xE9r\xFCnk, legfeljebb {maxLength} karaktert adj meg.",
|
|
270
|
-
"df.wise.ControlFeedback.maximum": "K\xE9r\xFCnk, add meg ezt vagy egy enn\xE9l kisebb sz\xE1mot: {maximum}.",
|
|
271
|
-
"df.wise.ControlFeedback.maximumDate": "K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {maximum} napj\xE1val, vagy egy enn\xE9l kor\xE1bbit.",
|
|
272
|
-
"df.wise.ControlFeedback.minLength": "K\xE9r\xFCnk, legal\xE1bb {minLength} karaktert adj meg.",
|
|
273
|
-
"df.wise.ControlFeedback.minimum": "K\xE9r\xFCnk add meg ezt vagy egy enn\xE9l nagyobb sz\xE1mot: {minimum}.",
|
|
274
|
-
"df.wise.ControlFeedback.minimumDate": "K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {minimum} napj\xE1val, vagy egy enn\xE9l k\xE9s\u0151bbit.",
|
|
275
|
-
"df.wise.ControlFeedback.pattern": "Helytelen form\xE1tum",
|
|
276
|
-
"df.wise.ControlFeedback.patternDate": "K\xE9r\xFCnk, hogy a d\xE1tumot helyes form\xE1tumban add meg.",
|
|
277
|
-
"df.wise.ControlFeedback.required": "K\xE9r\xFCnk, t\xF6ltsd ki ezt a mez\u0151t.",
|
|
278
|
-
"df.wise.ControlFeedback.type": "Helytelen t\xEDpus",
|
|
279
|
-
"df.wise.CopyFeedback.copy": "V\xE1g\xF3lapra m\xE1solva",
|
|
280
|
-
"df.wise.CopyFeedback.copyFailed": "Nem siker\xFClt a v\xE1g\xF3lapra m\xE1solni",
|
|
281
|
-
"df.wise.Decision.all": "\xD6sszes",
|
|
282
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
283
|
-
"df.wise.Decision.noResults": "Nincs tal\xE1lat",
|
|
284
|
-
"df.wise.Decision.popular": "N\xE9pszer\u0171",
|
|
285
|
-
"df.wise.Decision.recent": "Legut\xF3bbi",
|
|
286
|
-
"df.wise.Decision.results": "Keres\xE9si eredm\xE9nyek",
|
|
287
|
-
"df.wise.DynamicParagraph.copied": "V\xE1g\xF3lapra m\xE1solva",
|
|
288
|
-
"df.wise.DynamicParagraph.copy": "M\xE1sol\xE1s",
|
|
289
|
-
"df.wise.ErrorBoundary.errorAlert": "Valami hiba t\xF6rt\xE9nt.",
|
|
290
|
-
"df.wise.ErrorBoundary.retry": "\xDAjra",
|
|
291
|
-
"df.wise.ExternalConfirmation.cancel": "M\xE9gsem",
|
|
292
|
-
"df.wise.ExternalConfirmation.description": "K\xE9r\xFCnk, er\u0151s\xEDtsd meg, hogy a(z) **{origin}** alkalmaz\xE1st egy \xFAj b\xF6ng\xE9sz\u0151lapon szeretn\xE9d megnyitni.",
|
|
293
|
-
"df.wise.ExternalConfirmation.open": "Megnyit\xE1s \xFAj lapon",
|
|
294
|
-
"df.wise.ExternalConfirmation.title": "Meger\u0151s\xEDt\xE9s",
|
|
295
|
-
"df.wise.Help.ariaLabel": "Kattints ide tov\xE1bbi inform\xE1ci\xF3\xE9rt.",
|
|
296
|
-
"df.wise.MultiSelect.summary": "{first} \xE9s tov\xE1bbi {count}",
|
|
297
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Sajnos ez a f\xE1jl t\xFAl nagy. K\xE9r\xFCnk, t\xF6lts fel egy kisebb f\xE1jlt.",
|
|
298
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "K\xE9r\xFCnk, hogy legfeljebb {maxItems} f\xE1jlt t\xF6lts fel.",
|
|
299
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "K\xE9r\xFCnk, hogy legal\xE1bb {minItems} f\xE1jlt t\xF6lts fel.",
|
|
300
|
-
"df.wise.PersistAsyncSchema.genericError": "Valami hiba t\xF6rt\xE9nt. K\xE9r\xFCnk, pr\xF3b\xE1ld \xFAjra.",
|
|
301
|
-
"df.wise.SearchLayout.loading": "Bet\xF6lt\xE9s..."
|
|
302
|
-
};
|
|
122
|
+
// ../renderers/src/messages/loading-button.messages.ts
|
|
123
|
+
import { defineMessages } from "react-intl";
|
|
124
|
+
var loading_button_messages_default = defineMessages({
|
|
125
|
+
buttonLoadingMessage: {
|
|
126
|
+
id: "df.wise.ButtonLayout.buttonLoadingMessage",
|
|
127
|
+
defaultMessage: "This might take a few seconds",
|
|
128
|
+
description: "Message displayed below a button when it is in a loading state."
|
|
129
|
+
}
|
|
130
|
+
});
|
|
303
131
|
|
|
304
|
-
// src/
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
"df.wise.ArraySchema.removeItem": "Hapus",
|
|
312
|
-
"df.wise.ButtonLayout.buttonLoadingMessage": "This might take a few seconds",
|
|
313
|
-
"df.wise.ControlFeedback.maxLength": "Harap masukkan {maxLength} karakter atau kurang.",
|
|
314
|
-
"df.wise.ControlFeedback.maximum": "Harap masukkan angka paling besar {maximum} atau kurang dari itu.",
|
|
315
|
-
"df.wise.ControlFeedback.maximumDate": "Harap masukkan tanggal pada atau sebelum {maximum}.",
|
|
316
|
-
"df.wise.ControlFeedback.minLength": "Harap masukkan setidaknya {minLength} karakter.",
|
|
317
|
-
"df.wise.ControlFeedback.minimum": "Harap masukkan angka paling kecil {minimum} atau lebih dari itu.",
|
|
318
|
-
"df.wise.ControlFeedback.minimumDate": "Harap masukkan tanggal pada atau setelah {minimum}.",
|
|
319
|
-
"df.wise.ControlFeedback.pattern": "Mohon masukkan ini dalam format yang benar.",
|
|
320
|
-
"df.wise.ControlFeedback.patternDate": "Harap masukkan tanggal dalam format yang benar.",
|
|
321
|
-
"df.wise.ControlFeedback.required": "Harap isi kolom ini.",
|
|
322
|
-
"df.wise.ControlFeedback.type": "Tipe salah",
|
|
323
|
-
"df.wise.CopyFeedback.copy": "Disalin ke clipboard",
|
|
324
|
-
"df.wise.CopyFeedback.copyFailed": "Gagal menyalin ke clipboard",
|
|
325
|
-
"df.wise.Decision.all": "Semua",
|
|
326
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
327
|
-
"df.wise.Decision.noResults": "Tidak ada hasil",
|
|
328
|
-
"df.wise.Decision.popular": "Populer",
|
|
329
|
-
"df.wise.Decision.recent": "Terbaru",
|
|
330
|
-
"df.wise.Decision.results": "Hasil pencarian",
|
|
331
|
-
"df.wise.DynamicParagraph.copied": "Disalin ke clipboard",
|
|
332
|
-
"df.wise.DynamicParagraph.copy": "Salin",
|
|
333
|
-
"df.wise.ErrorBoundary.errorAlert": "Terjadi kesalahan.",
|
|
334
|
-
"df.wise.ErrorBoundary.retry": "Coba lagi",
|
|
335
|
-
"df.wise.ExternalConfirmation.cancel": "Batalkan",
|
|
336
|
-
"df.wise.ExternalConfirmation.description": "Harap konfirmasikan bahwa Anda ingin membuka **{origin}** di tab browser baru.",
|
|
337
|
-
"df.wise.ExternalConfirmation.open": "Buka di tab baru",
|
|
338
|
-
"df.wise.ExternalConfirmation.title": "Harap konfirmasi",
|
|
339
|
-
"df.wise.Help.ariaLabel": "Klik di sini untuk info selengkapnya.",
|
|
340
|
-
"df.wise.MultiSelect.summary": "{first} dan {count} lagi",
|
|
341
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Maaf, file Anda terlalu besar. Silakan unggah file yang lebih kecil.",
|
|
342
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Harap unggah {maxItems} file atau kurang.",
|
|
343
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Harap unggah sedikitnya {minItems} file.",
|
|
344
|
-
"df.wise.PersistAsyncSchema.genericError": "Terjadi kesalahan, mohon coba lagi.",
|
|
345
|
-
"df.wise.SearchLayout.loading": "Memuat ..."
|
|
132
|
+
// ../renderers/src/ButtonRenderer/AddressValidationButtonRenderer.tsx
|
|
133
|
+
import { useEffect, useState } from "react";
|
|
134
|
+
import { jsx as jsx3, jsxs } from "react/jsx-runtime";
|
|
135
|
+
var AddressValidationButtonRenderer = {
|
|
136
|
+
canRenderType: "button",
|
|
137
|
+
canRender: ({ control }) => control === "address-validation",
|
|
138
|
+
render: AddressValidationButtonComponent
|
|
346
139
|
};
|
|
140
|
+
function AddressValidationButtonComponent(props) {
|
|
141
|
+
const { disabled, margin, title, stepLoadingState, onClick } = props;
|
|
142
|
+
const { formatMessage } = useIntl();
|
|
143
|
+
const [spinny, setSpinny] = useState(false);
|
|
144
|
+
useEffect(() => {
|
|
145
|
+
if (stepLoadingState === "idle") {
|
|
146
|
+
setSpinny(false);
|
|
147
|
+
}
|
|
148
|
+
}, [stepLoadingState]);
|
|
149
|
+
return /* @__PURE__ */ jsxs("div", { className: `d-flex flex-column ${getMargin(margin)}`, children: [
|
|
150
|
+
/* @__PURE__ */ jsx3(
|
|
151
|
+
Button,
|
|
152
|
+
{
|
|
153
|
+
v2: true,
|
|
154
|
+
block: true,
|
|
155
|
+
disabled,
|
|
156
|
+
priority: "primary",
|
|
157
|
+
size: "md",
|
|
158
|
+
loading: spinny,
|
|
159
|
+
onClick: () => {
|
|
160
|
+
setSpinny(true);
|
|
161
|
+
onClick();
|
|
162
|
+
},
|
|
163
|
+
children: title
|
|
164
|
+
}
|
|
165
|
+
),
|
|
166
|
+
spinny && /* @__PURE__ */ jsx3(InlineAlert, { type: "warning", className: "m-x-auto", children: formatMessage(loading_button_messages_default.buttonLoadingMessage) })
|
|
167
|
+
] });
|
|
168
|
+
}
|
|
169
|
+
var AddressValidationButtonRenderer_default = AddressValidationButtonRenderer;
|
|
347
170
|
|
|
348
|
-
// src/
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
"df.wise.ArraySchema.removeItem": "Rimuovi",
|
|
356
|
-
"df.wise.ButtonLayout.buttonLoadingMessage": "Potrebbero volerci un paio di secondi",
|
|
357
|
-
"df.wise.ControlFeedback.maxLength": "Inserisci un massimo di {maxLength} caratteri.",
|
|
358
|
-
"df.wise.ControlFeedback.maximum": "Inserisci un numero uguale o inferiore a {maximum}.",
|
|
359
|
-
"df.wise.ControlFeedback.maximumDate": "Inserisci una data corrispondente o precedente al {maximum}.",
|
|
360
|
-
"df.wise.ControlFeedback.minLength": "Inserisci almeno {minLength} caratteri.",
|
|
361
|
-
"df.wise.ControlFeedback.minimum": "Inserisci un numero uguale o superiore a {minimum}.",
|
|
362
|
-
"df.wise.ControlFeedback.minimumDate": "Inserisci una data corrispondente o successiva al {minimum}.",
|
|
363
|
-
"df.wise.ControlFeedback.pattern": "Inseriscilo in un formato corretto.",
|
|
364
|
-
"df.wise.ControlFeedback.patternDate": "Inserisci la data in un formato corretto.",
|
|
365
|
-
"df.wise.ControlFeedback.required": "Compila questo campo.",
|
|
366
|
-
"df.wise.ControlFeedback.type": "Tipo errato",
|
|
367
|
-
"df.wise.CopyFeedback.copy": "Copiato negli appunti",
|
|
368
|
-
"df.wise.CopyFeedback.copyFailed": "Impossibile copiare negli appunti",
|
|
369
|
-
"df.wise.Decision.all": "Tutte",
|
|
370
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
371
|
-
"df.wise.Decision.noResults": "Nessun risultato",
|
|
372
|
-
"df.wise.Decision.popular": "Popolari",
|
|
373
|
-
"df.wise.Decision.recent": "Recenti",
|
|
374
|
-
"df.wise.Decision.results": "Risultati della ricerca",
|
|
375
|
-
"df.wise.DynamicParagraph.copied": "Copiato negli appunti",
|
|
376
|
-
"df.wise.DynamicParagraph.copy": "Copia",
|
|
377
|
-
"df.wise.ErrorBoundary.errorAlert": "Qualcosa non ha funzionato.",
|
|
378
|
-
"df.wise.ErrorBoundary.retry": "Riprova",
|
|
379
|
-
"df.wise.ExternalConfirmation.cancel": "Annulla",
|
|
380
|
-
"df.wise.ExternalConfirmation.description": "Conferma di voler aprire **{origin}** in una nuova scheda del browser.",
|
|
381
|
-
"df.wise.ExternalConfirmation.open": "Apri in una nuova scheda",
|
|
382
|
-
"df.wise.ExternalConfirmation.title": "Conferma",
|
|
383
|
-
"df.wise.Help.ariaLabel": "Clicca qui per maggiori informazioni.",
|
|
384
|
-
"df.wise.MultiSelect.summary": "{first} e altri {count}",
|
|
385
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Spiacenti, il file \xE8 troppo grande. Carica un file di dimensioni inferiori.",
|
|
386
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Carica al massimo {maxItems} file.",
|
|
387
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Carica almeno {minItems} file.",
|
|
388
|
-
"df.wise.PersistAsyncSchema.genericError": "Qualcosa \xE8 andato storto. Riprova.",
|
|
389
|
-
"df.wise.SearchLayout.loading": "Caricamento..."
|
|
171
|
+
// ../renderers/src/ButtonRenderer/ButtonRenderer.tsx
|
|
172
|
+
import { Button as Button2 } from "@transferwise/components";
|
|
173
|
+
import { useEffect as useEffect2, useState as useState2 } from "react";
|
|
174
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
175
|
+
var ButtonRenderer = {
|
|
176
|
+
canRenderType: "button",
|
|
177
|
+
render: ButtonComponent
|
|
390
178
|
};
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
"
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
"df.wise.Help.ariaLabel": "\u8A73\u7D30\u306F\u3053\u3061\u3089\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
428
|
-
"df.wise.MultiSelect.summary": "{first}\u3068\u305D\u306E\u4ED6{count}",
|
|
429
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u5927\u5909\u7533\u3057\u8A33\u3054\u3056\u3044\u307E\u305B\u3093\u304C\u3001\u30D5\u30A1\u30A4\u30EB\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002\u3053\u308C\u3088\u308A\u5C0F\u3055\u3044\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
430
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "{maxItems}\u500B\u4EE5\u4E0B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
431
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "{minItems}\u500B\u4EE5\u4E0A\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
432
|
-
"df.wise.PersistAsyncSchema.genericError": "\u554F\u984C\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002\u518D\u5EA6\u304A\u8A66\u3057\u304F\u3060\u3055\u3044\u3002",
|
|
433
|
-
"df.wise.SearchLayout.loading": "\u8AAD\u307F\u8FBC\u307F\u4E2D\u2026"
|
|
179
|
+
function ButtonComponent(props) {
|
|
180
|
+
const { control, context, disabled, margin, title, size, stepLoadingState, onClick } = props;
|
|
181
|
+
const [spinny, setSpinny] = useState2(false);
|
|
182
|
+
useEffect2(() => {
|
|
183
|
+
if (stepLoadingState === "idle") {
|
|
184
|
+
setSpinny(false);
|
|
185
|
+
}
|
|
186
|
+
}, [stepLoadingState]);
|
|
187
|
+
const priority = mapControl(control);
|
|
188
|
+
const type = priority === "tertiary" ? void 0 : mapContext(context);
|
|
189
|
+
return /* @__PURE__ */ jsx4(
|
|
190
|
+
Button2,
|
|
191
|
+
{
|
|
192
|
+
block: true,
|
|
193
|
+
className: getMargin(margin),
|
|
194
|
+
disabled,
|
|
195
|
+
priority,
|
|
196
|
+
size: mapSize(size),
|
|
197
|
+
loading: spinny && stepLoadingState !== "idle",
|
|
198
|
+
type,
|
|
199
|
+
onClick: () => {
|
|
200
|
+
setSpinny(true);
|
|
201
|
+
onClick();
|
|
202
|
+
},
|
|
203
|
+
children: title
|
|
204
|
+
}
|
|
205
|
+
);
|
|
206
|
+
}
|
|
207
|
+
var mapContext = (context) => {
|
|
208
|
+
switch (context) {
|
|
209
|
+
case "neutral":
|
|
210
|
+
case "warning":
|
|
211
|
+
return "accent";
|
|
212
|
+
default:
|
|
213
|
+
return context;
|
|
214
|
+
}
|
|
434
215
|
};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
"df.wise.ArraySchema.removeItem": "Verwijderen",
|
|
444
|
-
"df.wise.ButtonLayout.buttonLoadingMessage": "This might take a few seconds",
|
|
445
|
-
"df.wise.ControlFeedback.maxLength": "Voer {maxLength} of minder tekens in.",
|
|
446
|
-
"df.wise.ControlFeedback.maximum": "Voer een getal in dat {maximum} of lager is.",
|
|
447
|
-
"df.wise.ControlFeedback.maximumDate": "Voer een datum in die op of voor {maximum} is.",
|
|
448
|
-
"df.wise.ControlFeedback.minLength": "Voer minimaal {minLength} tekens in.",
|
|
449
|
-
"df.wise.ControlFeedback.minimum": "Voer een getal in dat {minimum} of hoger is.",
|
|
450
|
-
"df.wise.ControlFeedback.minimumDate": "Voer een datum in die op of na {minimum} is.",
|
|
451
|
-
"df.wise.ControlFeedback.pattern": "Voer dit in de juiste indeling in.",
|
|
452
|
-
"df.wise.ControlFeedback.patternDate": "Voer een datum in de juiste indeling in.",
|
|
453
|
-
"df.wise.ControlFeedback.required": "Vul dit veld in.",
|
|
454
|
-
"df.wise.ControlFeedback.type": "Onjuist type",
|
|
455
|
-
"df.wise.CopyFeedback.copy": "Naar klembord gekopieerd",
|
|
456
|
-
"df.wise.CopyFeedback.copyFailed": "Naar klembord kopi\xEBren mislukt",
|
|
457
|
-
"df.wise.Decision.all": "Alles",
|
|
458
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
459
|
-
"df.wise.Decision.noResults": "Niks gevonden",
|
|
460
|
-
"df.wise.Decision.popular": "Populair",
|
|
461
|
-
"df.wise.Decision.recent": "Recent",
|
|
462
|
-
"df.wise.Decision.results": "Zoekresultaten",
|
|
463
|
-
"df.wise.DynamicParagraph.copied": "Naar klembord gekopieerd",
|
|
464
|
-
"df.wise.DynamicParagraph.copy": "Kopi\xEBren",
|
|
465
|
-
"df.wise.ErrorBoundary.errorAlert": "Er is iets misgegaan.",
|
|
466
|
-
"df.wise.ErrorBoundary.retry": "Opnieuw proberen",
|
|
467
|
-
"df.wise.ExternalConfirmation.cancel": "Annuleren",
|
|
468
|
-
"df.wise.ExternalConfirmation.description": "Bevestig dat je **{origin}** in een nieuw browsertabblad wilt openen.",
|
|
469
|
-
"df.wise.ExternalConfirmation.open": "In nieuw tabblad openen",
|
|
470
|
-
"df.wise.ExternalConfirmation.title": "Bevestigen",
|
|
471
|
-
"df.wise.Help.ariaLabel": "Klik hier voor meer informatie.",
|
|
472
|
-
"df.wise.MultiSelect.summary": "{first} en nog {count}",
|
|
473
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Het bestand is te groot. Upload een kleiner bestand.",
|
|
474
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Upload {maxItems} of minder bestanden.",
|
|
475
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Upload minimaal {minItems} bestand(en).",
|
|
476
|
-
"df.wise.PersistAsyncSchema.genericError": "Er is iets misgegaan, probeer het opnieuw.",
|
|
477
|
-
"df.wise.SearchLayout.loading": "Laden..."
|
|
216
|
+
var mapControl = (control) => {
|
|
217
|
+
switch (control) {
|
|
218
|
+
case "primary":
|
|
219
|
+
case "tertiary":
|
|
220
|
+
return control;
|
|
221
|
+
default:
|
|
222
|
+
return "secondary";
|
|
223
|
+
}
|
|
478
224
|
};
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
"df.wise.ControlFeedback.minimumDate": "Wprowad\u017A dat\u0119 nie wcze\u015Bniejsz\u0105 ni\u017C {minimum}.",
|
|
495
|
-
"df.wise.ControlFeedback.pattern": "Wprowad\u017A t\u0119 warto\u015B\u0107 w prawid\u0142owym formacie.",
|
|
496
|
-
"df.wise.ControlFeedback.patternDate": "Wprowad\u017A dat\u0119 w prawid\u0142owym formacie.",
|
|
497
|
-
"df.wise.ControlFeedback.required": "Prosz\u0119 wype\u0142ni\u0107 to pole.",
|
|
498
|
-
"df.wise.ControlFeedback.type": "Nieprawid\u0142owy typ",
|
|
499
|
-
"df.wise.CopyFeedback.copy": "Skopiowano do schowka",
|
|
500
|
-
"df.wise.CopyFeedback.copyFailed": "Nie uda\u0142o si\u0119 skopiowa\u0107 do schowka",
|
|
501
|
-
"df.wise.Decision.all": "Wszystkie",
|
|
502
|
-
"df.wise.Decision.filterPlaceholder": "Zacznij pisa\u0107, \u017Ceby wyszuka\u0107",
|
|
503
|
-
"df.wise.Decision.noResults": "Brak wynik\xF3w",
|
|
504
|
-
"df.wise.Decision.popular": "Popularne",
|
|
505
|
-
"df.wise.Decision.recent": "Ostatnie",
|
|
506
|
-
"df.wise.Decision.results": "Wyniki wyszukiwania",
|
|
507
|
-
"df.wise.DynamicParagraph.copied": "Skopiowano do schowka",
|
|
508
|
-
"df.wise.DynamicParagraph.copy": "Kopiuj",
|
|
509
|
-
"df.wise.ErrorBoundary.errorAlert": "Co\u015B posz\u0142o nie tak.",
|
|
510
|
-
"df.wise.ErrorBoundary.retry": "Spr\xF3buj ponownie",
|
|
511
|
-
"df.wise.ExternalConfirmation.cancel": "Anuluj",
|
|
512
|
-
"df.wise.ExternalConfirmation.description": "Prosimy potwierdzi\u0107, \u017Ce chcesz otworzy\u0107 **{origin}** w nowej zak\u0142adce przegl\u0105darki.",
|
|
513
|
-
"df.wise.ExternalConfirmation.open": "Otw\xF3rz w nowej zak\u0142adce",
|
|
514
|
-
"df.wise.ExternalConfirmation.title": "Potwierd\u017A",
|
|
515
|
-
"df.wise.Help.ariaLabel": "Kliknij tutaj, \u017Ceby uzyska\u0107 wi\u0119cej informacji.",
|
|
516
|
-
"df.wise.MultiSelect.summary": "{first} oraz {count} wi\u0119cej",
|
|
517
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Przepraszamy, ten plik jest zbyt du\u017Cy. Prze\u015Blij mniejszy plik.",
|
|
518
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Prze\u015Blij do {maxItems} plik\xF3w.",
|
|
519
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Prze\u015Blij co najmniej nast\u0119puj\u0105c\u0105 liczb\u0119 plik\xF3w: {minItems}.",
|
|
520
|
-
"df.wise.PersistAsyncSchema.genericError": "Wyst\u0105pi\u0142 b\u0142\u0105d, prosimy spr\xF3bowa\u0107 ponownie.",
|
|
521
|
-
"df.wise.SearchLayout.loading": "\u0141adowanie..."
|
|
225
|
+
var mapSize = (size) => {
|
|
226
|
+
if (!size) {
|
|
227
|
+
return void 0;
|
|
228
|
+
}
|
|
229
|
+
switch (size) {
|
|
230
|
+
case "xs":
|
|
231
|
+
case "sm":
|
|
232
|
+
return "sm";
|
|
233
|
+
case "lg":
|
|
234
|
+
case "xl":
|
|
235
|
+
return "lg";
|
|
236
|
+
case "md":
|
|
237
|
+
default:
|
|
238
|
+
return "md";
|
|
239
|
+
}
|
|
522
240
|
};
|
|
241
|
+
var ButtonRenderer_default = ButtonRenderer;
|
|
523
242
|
|
|
524
|
-
// src/
|
|
525
|
-
|
|
526
|
-
"df.wise.ArraySchema.addItem": "Salvar",
|
|
527
|
-
"df.wise.ArraySchema.addItemTitle": "Adicionar item",
|
|
528
|
-
"df.wise.ArraySchema.editItem": "Salvar",
|
|
529
|
-
"df.wise.ArraySchema.maxItemsError": "Adicione {maxItems} ou menos.",
|
|
530
|
-
"df.wise.ArraySchema.minItemsError": "Adicione pelo menos {minItems}.",
|
|
531
|
-
"df.wise.ArraySchema.removeItem": "Remover",
|
|
532
|
-
"df.wise.ButtonLayout.buttonLoadingMessage": "Isso pode levar alguns segundos",
|
|
533
|
-
"df.wise.ControlFeedback.maxLength": "Por favor, insira {maxLength} caracteres ou menos.",
|
|
534
|
-
"df.wise.ControlFeedback.maximum": "Por favor, insira um n\xFAmero que seja {maximum} ou menos.",
|
|
535
|
-
"df.wise.ControlFeedback.maximumDate": "Por favor, insira uma data que seja em ou antes de {maximum}.",
|
|
536
|
-
"df.wise.ControlFeedback.minLength": "Por favor, insira pelo menos {minLength} caracteres.",
|
|
537
|
-
"df.wise.ControlFeedback.minimum": "Por favor, insira um n\xFAmero que seja {minimum} ou mais.",
|
|
538
|
-
"df.wise.ControlFeedback.minimumDate": "Por favor, insira uma data que seja em ou ap\xF3s {minimum}.",
|
|
539
|
-
"df.wise.ControlFeedback.pattern": "Por favor, insira essa informa\xE7\xE3o no formato correto.",
|
|
540
|
-
"df.wise.ControlFeedback.patternDate": "Por favor, insira a data no formato correto.",
|
|
541
|
-
"df.wise.ControlFeedback.required": "Por favor, preencha o campo.",
|
|
542
|
-
"df.wise.ControlFeedback.type": "Tipo incorreto",
|
|
543
|
-
"df.wise.CopyFeedback.copy": "Copiado",
|
|
544
|
-
"df.wise.CopyFeedback.copyFailed": "Falha ao copiar para \xE1rea de transfer\xEAncia",
|
|
545
|
-
"df.wise.Decision.all": "Todos",
|
|
546
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
547
|
-
"df.wise.Decision.noResults": "Nenhum resultado",
|
|
548
|
-
"df.wise.Decision.popular": "Populares",
|
|
549
|
-
"df.wise.Decision.recent": "Recente",
|
|
550
|
-
"df.wise.Decision.results": "Resultados da busca",
|
|
551
|
-
"df.wise.DynamicParagraph.copied": "Copiado",
|
|
552
|
-
"df.wise.DynamicParagraph.copy": "Copiar",
|
|
553
|
-
"df.wise.ErrorBoundary.errorAlert": "Algo deu errado.",
|
|
554
|
-
"df.wise.ErrorBoundary.retry": "Tentar novamente",
|
|
555
|
-
"df.wise.ExternalConfirmation.cancel": "Cancelar",
|
|
556
|
-
"df.wise.ExternalConfirmation.description": "Por favor, confirme que deseja abrir * *{origin}* * em uma nova aba do navegador.",
|
|
557
|
-
"df.wise.ExternalConfirmation.open": "Abrir em uma nova aba",
|
|
558
|
-
"df.wise.ExternalConfirmation.title": "Por favor, confirme",
|
|
559
|
-
"df.wise.Help.ariaLabel": "Clique aqui para mais informa\xE7\xF5es.",
|
|
560
|
-
"df.wise.MultiSelect.summary": "{first} e mais {count} ",
|
|
561
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Este arquivo \xE9 muito grande. Por favor, envie um arquivo menor.",
|
|
562
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Por favor, envie {maxItems} ou menos arquivos.",
|
|
563
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Por favor, envie pelo menos {minItems} arquivo(s).",
|
|
564
|
-
"df.wise.PersistAsyncSchema.genericError": "Ocorreu um erro. Por favor, tente novamente.",
|
|
565
|
-
"df.wise.SearchLayout.loading": "Carregando..."
|
|
566
|
-
};
|
|
243
|
+
// ../renderers/src/components/FieldInput.tsx
|
|
244
|
+
import { Field } from "@transferwise/components";
|
|
567
245
|
|
|
568
|
-
// src/
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"df.wise.ArraySchema.addItemTitle": "Adaug\u0103 produs",
|
|
572
|
-
"df.wise.ArraySchema.editItem": "Salvare",
|
|
573
|
-
"df.wise.ArraySchema.maxItemsError": "Te rug\u0103m s\u0103 adaugi {maxItems} sau mai pu\u021Bine.",
|
|
574
|
-
"df.wise.ArraySchema.minItemsError": "Te rug\u0103m s\u0103 adaugi cel pu\u021Bin {minItems}.",
|
|
575
|
-
"df.wise.ArraySchema.removeItem": "Elimin\u0103",
|
|
576
|
-
"df.wise.ButtonLayout.buttonLoadingMessage": "Acest lucru ar putea dura c\xE2teva secunde",
|
|
577
|
-
"df.wise.ControlFeedback.maxLength": "Te rug\u0103m s\u0103 introduci {maxLength} sau mai pu\u021Bine caractere.",
|
|
578
|
-
"df.wise.ControlFeedback.maximum": "Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {maximum} sau mai mic.",
|
|
579
|
-
"df.wise.ControlFeedback.maximumDate": "Te rug\u0103m s\u0103 introduci o dat\u0103 de \xEEnainte de sau egal\u0103 cu {maximum}.",
|
|
580
|
-
"df.wise.ControlFeedback.minLength": "Te rug\u0103m s\u0103 introduci cel pu\u021Bin {minLength} caractere.",
|
|
581
|
-
"df.wise.ControlFeedback.minimum": "Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {minimum} sau mai mare.",
|
|
582
|
-
"df.wise.ControlFeedback.minimumDate": "Te rug\u0103m s\u0103 introduci o dat\u0103 de dup\u0103 sau egal\u0103 cu {minimum}.",
|
|
583
|
-
"df.wise.ControlFeedback.pattern": "Te rug\u0103m s\u0103 introduci acest lucru \xEEn formatul corect.",
|
|
584
|
-
"df.wise.ControlFeedback.patternDate": "Te rug\u0103m s\u0103 introduci o dat\u0103 \xEEn formatul corect.",
|
|
585
|
-
"df.wise.ControlFeedback.required": "Te rug\u0103m s\u0103 completezi acest spa\u021Biu.",
|
|
586
|
-
"df.wise.ControlFeedback.type": "Tip incorect",
|
|
587
|
-
"df.wise.CopyFeedback.copy": "Copiat \xEEn clipboard",
|
|
588
|
-
"df.wise.CopyFeedback.copyFailed": "Copierea \xEEn clipboard a e\u0219uat",
|
|
589
|
-
"df.wise.Decision.all": "Toate",
|
|
590
|
-
"df.wise.Decision.filterPlaceholder": "\xCEncepe s\u0103 tastezi pentru a c\u0103uta",
|
|
591
|
-
"df.wise.Decision.noResults": "Niciun rezultat",
|
|
592
|
-
"df.wise.Decision.popular": "Populare",
|
|
593
|
-
"df.wise.Decision.recent": "Recente",
|
|
594
|
-
"df.wise.Decision.results": "Rezultatele c\u0103ut\u0103rii",
|
|
595
|
-
"df.wise.DynamicParagraph.copied": "Copiat \xEEn clipboard",
|
|
596
|
-
"df.wise.DynamicParagraph.copy": "Copiaz\u0103",
|
|
597
|
-
"df.wise.ErrorBoundary.errorAlert": "Ceva nu a mers bine.",
|
|
598
|
-
"df.wise.ErrorBoundary.retry": "\xCEncearc\u0103 din nou",
|
|
599
|
-
"df.wise.ExternalConfirmation.cancel": "Anuleaz\u0103",
|
|
600
|
-
"df.wise.ExternalConfirmation.description": "Te rug\u0103m s\u0103 confirmi c\u0103 vrei s\u0103 deschizi **{origin}** \xEEntr-o nou\u0103 fil\u0103 a browserului.",
|
|
601
|
-
"df.wise.ExternalConfirmation.open": "Deschide \xEEntr-o fil\u0103 nou\u0103",
|
|
602
|
-
"df.wise.ExternalConfirmation.title": "Te rug\u0103m s\u0103 confirmi",
|
|
603
|
-
"df.wise.Help.ariaLabel": "D\u0103 click aici pentru mai multe informa\u021Bii.",
|
|
604
|
-
"df.wise.MultiSelect.summary": "{first} \u0219i \xEEnc\u0103 {count}",
|
|
605
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Ne pare r\u0103u, acel fi\u0219ier este prea mare. Te rug\u0103m s\u0103 \xEEncarci un fi\u0219ier mai mic.",
|
|
606
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "Te rug\u0103m s\u0103 \xEEncarci {maxItems} fi\u0219iere sau mai pu\u021Bine.",
|
|
607
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "Te rug\u0103m s\u0103 \xEEncarci cel pu\u021Bin {minItems} fi\u0219ier(e).",
|
|
608
|
-
"df.wise.PersistAsyncSchema.genericError": "Ceva nu a mers bine, te rug\u0103m s\u0103 \xEEncerci din nou.",
|
|
609
|
-
"df.wise.SearchLayout.loading": "Se \xEEncarc\u0103..."
|
|
610
|
-
};
|
|
246
|
+
// ../renderers/src/components/Help.tsx
|
|
247
|
+
import { Info, Markdown } from "@transferwise/components";
|
|
248
|
+
import { useIntl as useIntl2 } from "react-intl";
|
|
611
249
|
|
|
612
|
-
// src/
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
"df.wise.ControlFeedback.maxLength": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 {maxLength} \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.",
|
|
622
|
-
"df.wise.ControlFeedback.maximum": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {maximum} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.",
|
|
623
|
-
"df.wise.ControlFeedback.maximumDate": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {maximum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u043D\u043D\u044E\u044E.",
|
|
624
|
-
"df.wise.ControlFeedback.minLength": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minLength} \u0441\u0438\u043C\u0432\u043E\u043B\u0430(-\u043E\u0432).",
|
|
625
|
-
"df.wise.ControlFeedback.minimum": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u044C\u0448\u0435.",
|
|
626
|
-
"df.wise.ControlFeedback.minimumDate": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0437\u0434\u043D\u044E\u044E.",
|
|
627
|
-
"df.wise.ControlFeedback.pattern": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u044D\u0442\u043E \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.",
|
|
628
|
-
"df.wise.ControlFeedback.patternDate": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.",
|
|
629
|
-
"df.wise.ControlFeedback.required": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u043E\u0435 \u043F\u043E\u043B\u0435.",
|
|
630
|
-
"df.wise.ControlFeedback.type": "\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0442\u0438\u043F",
|
|
631
|
-
"df.wise.CopyFeedback.copy": "\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430",
|
|
632
|
-
"df.wise.CopyFeedback.copyFailed": "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0441\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430",
|
|
633
|
-
"df.wise.Decision.all": "\u0412\u0441\u0435",
|
|
634
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
635
|
-
"df.wise.Decision.noResults": "\u041D\u0435\u0442 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432",
|
|
636
|
-
"df.wise.Decision.popular": "\u041F\u043E\u043F\u0443\u043B\u044F\u0440\u043D\u044B\u0435",
|
|
637
|
-
"df.wise.Decision.recent": "\u041D\u0435\u0434\u0430\u0432\u043D\u0438\u0435",
|
|
638
|
-
"df.wise.Decision.results": "\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u043F\u043E\u0438\u0441\u043A\u0430",
|
|
639
|
-
"df.wise.DynamicParagraph.copied": "\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430",
|
|
640
|
-
"df.wise.DynamicParagraph.copy": "\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C",
|
|
641
|
-
"df.wise.ErrorBoundary.errorAlert": "\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A.",
|
|
642
|
-
"df.wise.ErrorBoundary.retry": "\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C \u043F\u043E\u043F\u044B\u0442\u043A\u0443",
|
|
643
|
-
"df.wise.ExternalConfirmation.cancel": "\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C",
|
|
644
|
-
"df.wise.ExternalConfirmation.description": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043E \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u0440\u044B\u0442\u044C **{origin}** \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.",
|
|
645
|
-
"df.wise.ExternalConfirmation.open": "\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435",
|
|
646
|
-
"df.wise.ExternalConfirmation.title": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435",
|
|
647
|
-
"df.wise.Help.ariaLabel": "\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044C \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.",
|
|
648
|
-
"df.wise.MultiSelect.summary": "{first} \u0438 \u0435\u0449\u0435 {count} \u0434\u0440\u0443\u0433\u0438\u0445",
|
|
649
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u0418\u0437\u0432\u0438\u043D\u0438\u0442\u0435, \u0444\u0430\u0439\u043B \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0439. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0444\u0430\u0439\u043B \u043C\u0435\u043D\u044C\u0448\u0435\u0433\u043E \u0440\u0430\u0437\u043C\u0435\u0440\u0430.",
|
|
650
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043D\u0435 \u0431\u043E\u043B\u0435\u0435 {maxItems} \u0444\u0430\u0439\u043B\u043E\u0432.",
|
|
651
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems} \u0444\u0430\u0439\u043B(-\u0430/\u043E\u0432).",
|
|
652
|
-
"df.wise.PersistAsyncSchema.genericError": "\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437.",
|
|
653
|
-
"df.wise.SearchLayout.loading": "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430..."
|
|
654
|
-
};
|
|
250
|
+
// ../renderers/src/messages/help.messages.ts
|
|
251
|
+
import { defineMessages as defineMessages2 } from "react-intl";
|
|
252
|
+
var help_messages_default = defineMessages2({
|
|
253
|
+
helpAria: {
|
|
254
|
+
id: "df.wise.Help.ariaLabel",
|
|
255
|
+
defaultMessage: "Click here for more info.",
|
|
256
|
+
description: "Aria label for help."
|
|
257
|
+
}
|
|
258
|
+
});
|
|
655
259
|
|
|
656
|
-
// src/
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
"df.wise.ControlFeedback.required": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E19\u0E35\u0E49",
|
|
674
|
-
"df.wise.ControlFeedback.type": "\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
|
|
675
|
-
"df.wise.CopyFeedback.copy": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14",
|
|
676
|
-
"df.wise.CopyFeedback.copyFailed": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08",
|
|
677
|
-
"df.wise.Decision.all": "\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
678
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
679
|
-
"df.wise.Decision.noResults": "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C",
|
|
680
|
-
"df.wise.Decision.popular": "\u0E2A\u0E01\u0E38\u0E25\u0E22\u0E2D\u0E14\u0E19\u0E34\u0E22\u0E21",
|
|
681
|
-
"df.wise.Decision.recent": "\u0E25\u0E48\u0E32\u0E2A\u0E38\u0E14",
|
|
682
|
-
"df.wise.Decision.results": "\u0E1C\u0E25\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32",
|
|
683
|
-
"df.wise.DynamicParagraph.copied": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14",
|
|
684
|
-
"df.wise.DynamicParagraph.copy": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01",
|
|
685
|
-
"df.wise.ErrorBoundary.errorAlert": "\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19",
|
|
686
|
-
"df.wise.ErrorBoundary.retry": "\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07",
|
|
687
|
-
"df.wise.ExternalConfirmation.cancel": "\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01",
|
|
688
|
-
"df.wise.ExternalConfirmation.description": "\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14 **{origin}** \u0E40\u0E1B\u0E47\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E19\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C",
|
|
689
|
-
"df.wise.ExternalConfirmation.open": "\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48",
|
|
690
|
-
"df.wise.ExternalConfirmation.title": "\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19",
|
|
691
|
-
"df.wise.Help.ariaLabel": "\u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
692
|
-
"df.wise.MultiSelect.summary": "{first} \u0E41\u0E25\u0E30\u0E2D\u0E35\u0E01 {count}",
|
|
693
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22 \u0E44\u0E1F\u0E25\u0E4C\u0E19\u0E31\u0E49\u0E19\u0E43\u0E2B\u0E0D\u0E48\u0E40\u0E01\u0E34\u0E19\u0E44\u0E1B \u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E25\u0E47\u0E01\u0E25\u0E07",
|
|
694
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14 {maxItems} \u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
695
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems} \u0E44\u0E1F\u0E25\u0E4C",
|
|
696
|
-
"df.wise.PersistAsyncSchema.genericError": "\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07 \u0E42\u0E1B\u0E23\u0E14\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07",
|
|
697
|
-
"df.wise.SearchLayout.loading": "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14..."
|
|
698
|
-
};
|
|
260
|
+
// ../renderers/src/components/Help.tsx
|
|
261
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
262
|
+
function Help({ help, onClick }) {
|
|
263
|
+
const intl = useIntl2();
|
|
264
|
+
return /* @__PURE__ */ jsx5(
|
|
265
|
+
Info,
|
|
266
|
+
{
|
|
267
|
+
className: "m-l-1",
|
|
268
|
+
content: /* @__PURE__ */ jsx5(Markdown, { config: { link: { target: "_blank" } }, children: help }),
|
|
269
|
+
presentation: "POPOVER",
|
|
270
|
+
size: "sm",
|
|
271
|
+
"aria-label": intl.formatMessage(help_messages_default.helpAria),
|
|
272
|
+
onClick
|
|
273
|
+
}
|
|
274
|
+
);
|
|
275
|
+
}
|
|
276
|
+
var Help_default = Help;
|
|
699
277
|
|
|
700
|
-
// src/
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
"
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
"df.wise.ExternalConfirmation.open": "Yeni sekmede a\xE7",
|
|
734
|
-
"df.wise.ExternalConfirmation.title": "L\xFCtfen onaylay\u0131n",
|
|
735
|
-
"df.wise.Help.ariaLabel": "Ayr\u0131nt\u0131lar i\xE7in t\u0131klay\u0131n.",
|
|
736
|
-
"df.wise.MultiSelect.summary": "{first} ve {count} daha",
|
|
737
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\xDCzg\xFCn\xFCz, bu dosya \xE7ok b\xFCy\xFCk. L\xFCtfen daha k\xFC\xE7\xFCk bir dosya y\xFCkleyin.",
|
|
738
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "L\xFCtfen {maxItems} veya daha az dosya y\xFCkleyin.",
|
|
739
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "L\xFCtfen en az {minItems} dosya y\xFCkleyin.",
|
|
740
|
-
"df.wise.PersistAsyncSchema.genericError": "Bir \u015Feyler ters gitti, l\xFCtfen tekrar deneyin.",
|
|
741
|
-
"df.wise.SearchLayout.loading": "Y\xFCkleniyor..."
|
|
278
|
+
// ../renderers/src/components/LabelContentWithHelp.tsx
|
|
279
|
+
import { jsx as jsx6, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
280
|
+
function LabelContentWithHelp({ text, help }) {
|
|
281
|
+
return /* @__PURE__ */ jsxs2("div", { children: [
|
|
282
|
+
text,
|
|
283
|
+
/* @__PURE__ */ jsx6(Help_default, { help })
|
|
284
|
+
] });
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// ../renderers/src/components/FieldInput.tsx
|
|
288
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
289
|
+
function FieldInput({ id, children, label, validation, description, help }) {
|
|
290
|
+
const labelContent = label && help ? /* @__PURE__ */ jsx7(LabelContentWithHelp, { text: label, help }) : label;
|
|
291
|
+
return /* @__PURE__ */ jsx7(
|
|
292
|
+
Field,
|
|
293
|
+
{
|
|
294
|
+
id,
|
|
295
|
+
label: labelContent,
|
|
296
|
+
description,
|
|
297
|
+
message: validation == null ? void 0 : validation.message,
|
|
298
|
+
sentiment: mapStatusToSentiment(validation),
|
|
299
|
+
children
|
|
300
|
+
}
|
|
301
|
+
);
|
|
302
|
+
}
|
|
303
|
+
var mapStatusToSentiment = (validation) => {
|
|
304
|
+
if (validation) {
|
|
305
|
+
if (validation.status === "valid") {
|
|
306
|
+
return "positive";
|
|
307
|
+
}
|
|
308
|
+
return "negative";
|
|
309
|
+
}
|
|
310
|
+
return void 0;
|
|
742
311
|
};
|
|
312
|
+
var FieldInput_default = FieldInput;
|
|
743
313
|
|
|
744
|
-
// src/
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
"df.wise.DynamicParagraph.copy": "\u590D\u5236",
|
|
773
|
-
"df.wise.ErrorBoundary.errorAlert": "\u51FA\u9519\u4E86\u3002",
|
|
774
|
-
"df.wise.ErrorBoundary.retry": "\u91CD\u8BD5",
|
|
775
|
-
"df.wise.ExternalConfirmation.cancel": "\u53D6\u6D88",
|
|
776
|
-
"df.wise.ExternalConfirmation.description": "\u8BF7\u786E\u8BA4\u60A8\u662F\u5426\u8981\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00**{origin}**\u3002",
|
|
777
|
-
"df.wise.ExternalConfirmation.open": "\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00",
|
|
778
|
-
"df.wise.ExternalConfirmation.title": "\u8BF7\u786E\u8BA4",
|
|
779
|
-
"df.wise.Help.ariaLabel": "\u70B9\u51FB\u6B64\u5904\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002",
|
|
780
|
-
"df.wise.MultiSelect.summary": "{first} \u548C\u5176\u4ED6 {count} \u4E2A",
|
|
781
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u62B1\u6B49\uFF0C\u8BE5\u6587\u4EF6\u592A\u5927\u3002\u8BF7\u4E0A\u4F20\u4E00\u4E2A\u66F4\u5C0F\u7684\u6587\u4EF6\u3002",
|
|
782
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u8BF7\u4E0A\u4F20\u4E0D\u8D85\u8FC7 {maxItems} \u4E2A\u6587\u4EF6\u3002",
|
|
783
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "\u8BF7\u4E0A\u4F20\u81F3\u5C11 {minItems} \u4E2A\u6587\u4EF6\u3002",
|
|
784
|
-
"df.wise.PersistAsyncSchema.genericError": "\u51FA\u9519\u4E86\uFF0C\u8BF7\u91CD\u8BD5\u3002",
|
|
785
|
-
"df.wise.SearchLayout.loading": "\u6B63\u5728\u52A0\u8F7D\u2026"
|
|
314
|
+
// ../renderers/src/CheckboxInputRenderer.tsx
|
|
315
|
+
import { Checkbox } from "@transferwise/components";
|
|
316
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
317
|
+
var CheckboxInputRenderer = {
|
|
318
|
+
canRenderType: "input-checkbox",
|
|
319
|
+
render: (props) => {
|
|
320
|
+
const _a = props, {
|
|
321
|
+
id,
|
|
322
|
+
control,
|
|
323
|
+
title = "",
|
|
324
|
+
description,
|
|
325
|
+
help,
|
|
326
|
+
type,
|
|
327
|
+
validationState,
|
|
328
|
+
value
|
|
329
|
+
} = _a, rest = __objRest(_a, [
|
|
330
|
+
"id",
|
|
331
|
+
"control",
|
|
332
|
+
"title",
|
|
333
|
+
"description",
|
|
334
|
+
"help",
|
|
335
|
+
"type",
|
|
336
|
+
"validationState",
|
|
337
|
+
"value"
|
|
338
|
+
]);
|
|
339
|
+
const checkboxProps = __spreadProps(__spreadValues({}, rest), { label: title, secondary: description, checked: value });
|
|
340
|
+
return /* @__PURE__ */ jsx8(FieldInput_default, { id, label: "", description: "", validation: validationState, help, children: /* @__PURE__ */ jsx8(Checkbox, __spreadValues({ id }, checkboxProps)) });
|
|
341
|
+
}
|
|
786
342
|
};
|
|
343
|
+
var CheckboxInputRenderer_default = CheckboxInputRenderer;
|
|
787
344
|
|
|
788
|
-
// src/
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
"df.wise.ControlFeedback.type": "\u932F\u8AA4\u7684\u985E\u578B",
|
|
807
|
-
"df.wise.CopyFeedback.copy": "\u8907\u88FD\u5230\u526A\u8CBC\u677F",
|
|
808
|
-
"df.wise.CopyFeedback.copyFailed": "\u7121\u6CD5\u8907\u88FD\u5230\u526A\u8CBC\u677F",
|
|
809
|
-
"df.wise.Decision.all": "\u5168\u90E8",
|
|
810
|
-
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
811
|
-
"df.wise.Decision.noResults": "\u6C92\u6709\u7D50\u679C",
|
|
812
|
-
"df.wise.Decision.popular": "\u71B1\u9580",
|
|
813
|
-
"df.wise.Decision.recent": "\u6700\u8FD1\u7684",
|
|
814
|
-
"df.wise.Decision.results": "\u641C\u5C0B\u7D50\u679C",
|
|
815
|
-
"df.wise.DynamicParagraph.copied": "\u8907\u88FD\u5230\u526A\u8CBC\u677F",
|
|
816
|
-
"df.wise.DynamicParagraph.copy": "\u8907\u88FD",
|
|
817
|
-
"df.wise.ErrorBoundary.errorAlert": "\u51FA\u4E86\u4E9B\u554F\u984C\u3002",
|
|
818
|
-
"df.wise.ErrorBoundary.retry": "\u91CD\u8A66",
|
|
819
|
-
"df.wise.ExternalConfirmation.cancel": "\u53D6\u6D88",
|
|
820
|
-
"df.wise.ExternalConfirmation.description": "\u8ACB\u78BA\u8A8D\u4F60\u662F\u5426\u8981\u5728\u700F\u89BD\u5668\u7684\u65B0\u5206\u9801\u6253\u958B**{origin}**\u3002",
|
|
821
|
-
"df.wise.ExternalConfirmation.open": "\u5728\u65B0\u5206\u9801\u4E2D\u958B\u555F",
|
|
822
|
-
"df.wise.ExternalConfirmation.title": "\u8ACB\u78BA\u8A8D",
|
|
823
|
-
"df.wise.Help.ariaLabel": "\u6309\u6B64\u67E5\u770B\u8A73\u60C5\u3002",
|
|
824
|
-
"df.wise.MultiSelect.summary": "{first}\u548C\u5176\u4ED6{count}\u9805",
|
|
825
|
-
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u62B1\u6B49\uFF0C\u8A72\u6A94\u6848\u592A\u5927\u3002\u8ACB\u4E0A\u8F09\u4E00\u500B\u8F03\u5C0F\u7684\u6A94\u6848\u3002",
|
|
826
|
-
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u8ACB\u4E0D\u8981\u4E0A\u8F09\u8D85\u904E{maxItems}\u500B\u6A94\u6848\u3002",
|
|
827
|
-
"df.wise.MultipleFileUploadSchema.minItemsError": "\u8ACB\u4E0A\u8F09\u81F3\u5C11{minItems}\u500B\u6A94\u6848\u3002",
|
|
828
|
-
"df.wise.PersistAsyncSchema.genericError": "\u51FA\u73FE\u4E86\u554F\u984C\uFF0C\u8ACB\u518D\u8A66\u4E00\u6B21\u3002",
|
|
829
|
-
"df.wise.SearchLayout.loading": "\u8F09\u5165\u4E2D\u2026"
|
|
830
|
-
};
|
|
831
|
-
|
|
832
|
-
// src/i18n/index.ts
|
|
833
|
-
var wiseTranslations = {
|
|
834
|
-
cs: cs_default,
|
|
835
|
-
en: en_default,
|
|
836
|
-
de: de_default,
|
|
837
|
-
es: es_default,
|
|
838
|
-
fr: fr_default,
|
|
839
|
-
hu: hu_default,
|
|
840
|
-
id: id_default,
|
|
841
|
-
it: it_default,
|
|
842
|
-
ja: ja_default,
|
|
843
|
-
nl: nl_default,
|
|
844
|
-
pl: pl_default,
|
|
845
|
-
pt: pt_default,
|
|
846
|
-
ro: ro_default,
|
|
847
|
-
ru: ru_default,
|
|
848
|
-
th: th_default,
|
|
849
|
-
tr: tr_default,
|
|
850
|
-
zh: zh_CN_default,
|
|
851
|
-
"zh-CN": zh_CN_default,
|
|
852
|
-
"zh-HK": zh_HK_default
|
|
345
|
+
// ../renderers/src/ColumnsRenderer.tsx
|
|
346
|
+
import classNames2 from "classnames";
|
|
347
|
+
import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
348
|
+
var ColumnsRenderer = {
|
|
349
|
+
canRenderType: "columns",
|
|
350
|
+
render: ({ bias, margin, startChildren, endChildren }) => /* @__PURE__ */ jsxs3(
|
|
351
|
+
"div",
|
|
352
|
+
{
|
|
353
|
+
className: classNames2("df-columns-renderer-container", getMargin(margin), {
|
|
354
|
+
"df-columns-renderer-bias-start": bias === "start",
|
|
355
|
+
"df-columns-renderer-bias-end": bias === "end"
|
|
356
|
+
}),
|
|
357
|
+
children: [
|
|
358
|
+
/* @__PURE__ */ jsx9("div", { className: "df-columns-renderer-column", children: startChildren }),
|
|
359
|
+
/* @__PURE__ */ jsx9("div", { className: "df-columns-renderer-column", children: endChildren })
|
|
360
|
+
]
|
|
361
|
+
}
|
|
362
|
+
)
|
|
853
363
|
};
|
|
854
|
-
var
|
|
855
|
-
/* @__PURE__ */ new Set([...Object.keys(coreTranslations), ...Object.keys(wiseTranslations)])
|
|
856
|
-
);
|
|
857
|
-
var translations = languages.reduce(
|
|
858
|
-
(acc, lang) => __spreadProps(__spreadValues({}, acc), { [lang]: __spreadValues(__spreadValues({}, coreTranslations[lang]), wiseTranslations[lang]) }),
|
|
859
|
-
{}
|
|
860
|
-
);
|
|
861
|
-
var i18n_default = translations;
|
|
364
|
+
var ColumnsRenderer_default = ColumnsRenderer;
|
|
862
365
|
|
|
863
|
-
// src/
|
|
864
|
-
import {
|
|
865
|
-
import { useIntl as useIntl12 } from "react-intl";
|
|
866
|
-
import {
|
|
867
|
-
DynamicFlow as DynamicFlowCoreLegacy,
|
|
868
|
-
DynamicFlowCoreRevamp,
|
|
869
|
-
DynamicFormCore
|
|
870
|
-
} from "@wise/dynamic-flow-client";
|
|
366
|
+
// ../renderers/src/components/VariableDateInput.tsx
|
|
367
|
+
import { DateInput, DateLookup } from "@transferwise/components";
|
|
871
368
|
|
|
872
|
-
// ../renderers/src/
|
|
873
|
-
|
|
369
|
+
// ../renderers/src/validators/type-validators.ts
|
|
370
|
+
var isNumber = (value) => typeof value === "number" && !Number.isNaN(value);
|
|
874
371
|
|
|
875
|
-
// ../renderers/src/utils/
|
|
876
|
-
var
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
return "m-b-0";
|
|
880
|
-
case "sm":
|
|
881
|
-
return "m-b-1";
|
|
882
|
-
case "md":
|
|
883
|
-
return "m-b-2";
|
|
884
|
-
case "lg":
|
|
885
|
-
return "m-b-3";
|
|
886
|
-
case "xl":
|
|
887
|
-
return "m-b-5";
|
|
888
|
-
default:
|
|
889
|
-
return "";
|
|
372
|
+
// ../renderers/src/utils/value-utils.ts
|
|
373
|
+
var dateStringToDateOrNull = (dateString) => {
|
|
374
|
+
if (!dateString) {
|
|
375
|
+
return null;
|
|
890
376
|
}
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
case "end":
|
|
895
|
-
return "text-xs-right";
|
|
896
|
-
case "center":
|
|
897
|
-
return "text-xs-center";
|
|
898
|
-
case "start":
|
|
899
|
-
default:
|
|
900
|
-
return "";
|
|
377
|
+
const [year, month, date] = dateString.split("-").map((number) => Number.parseInt(number, 10));
|
|
378
|
+
if (!isNumber(year) || !isNumber(month) || !isNumber(date)) {
|
|
379
|
+
return null;
|
|
901
380
|
}
|
|
381
|
+
return new Date(year, month - 1, date);
|
|
902
382
|
};
|
|
903
|
-
var
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
{
|
|
912
|
-
type: context,
|
|
913
|
-
className: getMargin(margin),
|
|
914
|
-
message: markdown,
|
|
915
|
-
action: mapCtaToAlertAction(callToAction)
|
|
916
|
-
}
|
|
917
|
-
)
|
|
383
|
+
var dateToDateString = (date) => {
|
|
384
|
+
const d = new Date(date);
|
|
385
|
+
const month = String(d.getMonth() + 1);
|
|
386
|
+
const day = String(d.getDate());
|
|
387
|
+
const year = d.getFullYear();
|
|
388
|
+
const formattedMonth = month.length < 2 ? `0${month}` : month;
|
|
389
|
+
const formattedDay = day.length < 2 ? `0${day}` : day;
|
|
390
|
+
return [year, formattedMonth, formattedDay].join("-");
|
|
918
391
|
};
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
392
|
+
|
|
393
|
+
// ../renderers/src/components/VariableDateInput.tsx
|
|
394
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
395
|
+
function VariableDateInput({
|
|
396
|
+
control,
|
|
397
|
+
inputProps
|
|
398
|
+
}) {
|
|
399
|
+
const {
|
|
400
|
+
autoComplete,
|
|
401
|
+
minimumDate,
|
|
402
|
+
maximumDate,
|
|
403
|
+
placeholder,
|
|
404
|
+
disabled,
|
|
405
|
+
onBlur,
|
|
406
|
+
onChange,
|
|
407
|
+
onFocus
|
|
408
|
+
} = inputProps;
|
|
409
|
+
if (control === "date-lookup") {
|
|
410
|
+
return /* @__PURE__ */ jsx10(
|
|
411
|
+
DateLookup,
|
|
412
|
+
{
|
|
413
|
+
value: dateStringToDateOrNull(inputProps.value),
|
|
414
|
+
min: dateStringToDateOrNull(minimumDate),
|
|
415
|
+
max: dateStringToDateOrNull(maximumDate),
|
|
416
|
+
placeholder,
|
|
417
|
+
disabled,
|
|
418
|
+
onChange: (date) => {
|
|
419
|
+
onChange(date !== null ? dateToDateString(date) : null);
|
|
420
|
+
},
|
|
421
|
+
onBlur,
|
|
422
|
+
onFocus
|
|
423
|
+
}
|
|
424
|
+
);
|
|
425
|
+
}
|
|
426
|
+
return /* @__PURE__ */ jsx10(
|
|
427
|
+
DateInput,
|
|
428
|
+
__spreadProps(__spreadValues({}, inputProps), {
|
|
429
|
+
dayAutoComplete: getAutocompleteString(autoComplete, "day"),
|
|
430
|
+
yearAutoComplete: getAutocompleteString(autoComplete, "year")
|
|
431
|
+
})
|
|
432
|
+
);
|
|
433
|
+
}
|
|
434
|
+
var getAutocompleteString = (value, suffix) => {
|
|
435
|
+
if (value === "bday") {
|
|
436
|
+
return `${value}-${suffix}`;
|
|
925
437
|
}
|
|
926
438
|
return void 0;
|
|
927
439
|
};
|
|
928
|
-
var
|
|
440
|
+
var VariableDateInput_default = VariableDateInput;
|
|
929
441
|
|
|
930
|
-
// ../renderers/src/
|
|
931
|
-
import
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
442
|
+
// ../renderers/src/DateInputRenderer.tsx
|
|
443
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
444
|
+
var DateInputRenderer = {
|
|
445
|
+
canRenderType: "input-date",
|
|
446
|
+
render: (props) => {
|
|
447
|
+
const _a = props, {
|
|
448
|
+
id,
|
|
449
|
+
control,
|
|
450
|
+
description,
|
|
451
|
+
type,
|
|
452
|
+
help,
|
|
453
|
+
title,
|
|
454
|
+
validationState,
|
|
455
|
+
value: initialValue
|
|
456
|
+
} = _a, rest = __objRest(_a, [
|
|
457
|
+
"id",
|
|
458
|
+
"control",
|
|
459
|
+
"description",
|
|
460
|
+
"type",
|
|
461
|
+
"help",
|
|
462
|
+
"title",
|
|
463
|
+
"validationState",
|
|
464
|
+
"value"
|
|
465
|
+
]);
|
|
466
|
+
const value = initialValue != null ? initialValue : "";
|
|
467
|
+
const inputProps = __spreadProps(__spreadValues({}, rest), { value, id });
|
|
468
|
+
return /* @__PURE__ */ jsx11(
|
|
469
|
+
FieldInput_default,
|
|
940
470
|
{
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
children
|
|
471
|
+
id,
|
|
472
|
+
label: title,
|
|
473
|
+
description,
|
|
474
|
+
validation: validationState,
|
|
475
|
+
help,
|
|
476
|
+
children: /* @__PURE__ */ jsx11(VariableDateInput_default, { control, inputProps })
|
|
947
477
|
}
|
|
948
478
|
);
|
|
949
|
-
return hasFixedWidth ? /* @__PURE__ */ jsx2("div", { className: classNames("df-box-renderer-fixed-width", getMargin(margin)), children: contents }) : contents;
|
|
950
479
|
}
|
|
951
480
|
};
|
|
952
|
-
var
|
|
481
|
+
var DateInputRenderer_default = DateInputRenderer;
|
|
953
482
|
|
|
954
|
-
// ../renderers/src/
|
|
955
|
-
import {
|
|
956
|
-
import { useIntl } from "react-intl";
|
|
483
|
+
// ../renderers/src/DecisionRenderer/DecisionRenderer.tsx
|
|
484
|
+
import { Header as Header2, SearchInput } from "@transferwise/components";
|
|
485
|
+
import { useIntl as useIntl4 } from "react-intl";
|
|
957
486
|
|
|
958
|
-
// ../renderers/src/messages/
|
|
959
|
-
import { defineMessages } from "react-intl";
|
|
960
|
-
var
|
|
961
|
-
|
|
962
|
-
id: "df.wise.
|
|
963
|
-
defaultMessage: "
|
|
964
|
-
description: "
|
|
487
|
+
// ../renderers/src/messages/decision.messages.ts
|
|
488
|
+
import { defineMessages as defineMessages3 } from "react-intl";
|
|
489
|
+
var decision_messages_default = defineMessages3({
|
|
490
|
+
all: {
|
|
491
|
+
id: "df.wise.Decision.all",
|
|
492
|
+
defaultMessage: "All",
|
|
493
|
+
description: "Label for the group of options that encompasses all options"
|
|
494
|
+
},
|
|
495
|
+
popular: {
|
|
496
|
+
id: "df.wise.Decision.popular",
|
|
497
|
+
defaultMessage: "Popular",
|
|
498
|
+
description: "Label for the group of options that are tagged as popular"
|
|
499
|
+
},
|
|
500
|
+
recent: {
|
|
501
|
+
id: "df.wise.Decision.recent",
|
|
502
|
+
defaultMessage: "Recent",
|
|
503
|
+
description: "Label for the group of options that are tagged as recent"
|
|
504
|
+
},
|
|
505
|
+
filterPlaceholder: {
|
|
506
|
+
id: "df.wise.Decision.filterPlaceholder",
|
|
507
|
+
defaultMessage: "Start typing to search",
|
|
508
|
+
description: "Placeholder for the filter input"
|
|
509
|
+
},
|
|
510
|
+
results: {
|
|
511
|
+
id: "df.wise.Decision.results",
|
|
512
|
+
defaultMessage: "Search results",
|
|
513
|
+
description: "Label for the results section"
|
|
514
|
+
},
|
|
515
|
+
noResults: {
|
|
516
|
+
id: "df.wise.Decision.noResults",
|
|
517
|
+
defaultMessage: "No results",
|
|
518
|
+
description: "Message for if there are no results"
|
|
965
519
|
}
|
|
966
520
|
});
|
|
967
521
|
|
|
968
|
-
// ../renderers/src/
|
|
969
|
-
import {
|
|
970
|
-
import { jsx as jsx3, jsxs } from "react/jsx-runtime";
|
|
971
|
-
var AddressValidationButtonRenderer = {
|
|
972
|
-
canRenderType: "button",
|
|
973
|
-
canRender: ({ control }) => control === "address-validation",
|
|
974
|
-
render: AddressValidationButtonComponent
|
|
975
|
-
};
|
|
976
|
-
function AddressValidationButtonComponent(props) {
|
|
977
|
-
const { disabled, margin, title, stepLoadingState, onClick } = props;
|
|
978
|
-
const { formatMessage } = useIntl();
|
|
979
|
-
const [spinny, setSpinny] = useState(false);
|
|
980
|
-
useEffect(() => {
|
|
981
|
-
if (stepLoadingState === "idle") {
|
|
982
|
-
setSpinny(false);
|
|
983
|
-
}
|
|
984
|
-
}, [stepLoadingState]);
|
|
985
|
-
return /* @__PURE__ */ jsxs("div", { className: `d-flex flex-column ${getMargin(margin)}`, children: [
|
|
986
|
-
/* @__PURE__ */ jsx3(
|
|
987
|
-
Button,
|
|
988
|
-
{
|
|
989
|
-
v2: true,
|
|
990
|
-
block: true,
|
|
991
|
-
disabled,
|
|
992
|
-
priority: "primary",
|
|
993
|
-
size: "md",
|
|
994
|
-
loading: spinny,
|
|
995
|
-
onClick: () => {
|
|
996
|
-
setSpinny(true);
|
|
997
|
-
onClick();
|
|
998
|
-
},
|
|
999
|
-
children: title
|
|
1000
|
-
}
|
|
1001
|
-
),
|
|
1002
|
-
spinny && /* @__PURE__ */ jsx3(InlineAlert, { type: "warning", className: "m-x-auto", children: formatMessage(loading_button_messages_default.buttonLoadingMessage) })
|
|
1003
|
-
] });
|
|
1004
|
-
}
|
|
1005
|
-
var AddressValidationButtonRenderer_default = AddressValidationButtonRenderer;
|
|
522
|
+
// ../renderers/src/DecisionRenderer/DecisionRenderer.tsx
|
|
523
|
+
import { useState as useState3 } from "react";
|
|
1006
524
|
|
|
1007
|
-
// ../renderers/src/
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
var
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
525
|
+
// ../renderers/src/DecisionRenderer/filter-and-sort-decision-options.ts
|
|
526
|
+
function filterAndSortDecisionOptions(selectOptions, query) {
|
|
527
|
+
const upperQuery = query.toUpperCase().trim();
|
|
528
|
+
const filteredItems = selectOptions.filter((option) => {
|
|
529
|
+
var _a, _b, _c, _d;
|
|
530
|
+
const searchableWords = [
|
|
531
|
+
option.title,
|
|
532
|
+
option.description,
|
|
533
|
+
option.additionalText,
|
|
534
|
+
(_a = option.supportingValues) == null ? void 0 : _a.value,
|
|
535
|
+
(_b = option.supportingValues) == null ? void 0 : _b.subvalue,
|
|
536
|
+
...(_c = option.keywords) != null ? _c : []
|
|
537
|
+
];
|
|
538
|
+
return (_d = searchableWords.some((word) => word == null ? void 0 : word.toUpperCase().includes(upperQuery))) != null ? _d : false;
|
|
539
|
+
});
|
|
540
|
+
return [...filteredItems].sort((a, b) => {
|
|
541
|
+
const aTitleUpper = a.title.toUpperCase();
|
|
542
|
+
const bTitleUpper = b.title.toUpperCase();
|
|
543
|
+
const aTitleStarts = aTitleUpper.startsWith(upperQuery);
|
|
544
|
+
const bTitleStarts = bTitleUpper.startsWith(upperQuery);
|
|
545
|
+
if (aTitleStarts && !bTitleStarts) {
|
|
546
|
+
return -1;
|
|
1021
547
|
}
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
const type = priority === "tertiary" ? void 0 : mapContext(context);
|
|
1025
|
-
return /* @__PURE__ */ jsx4(
|
|
1026
|
-
Button2,
|
|
1027
|
-
{
|
|
1028
|
-
block: true,
|
|
1029
|
-
className: getMargin(margin),
|
|
1030
|
-
disabled,
|
|
1031
|
-
priority,
|
|
1032
|
-
size: mapSize(size),
|
|
1033
|
-
loading: spinny,
|
|
1034
|
-
type,
|
|
1035
|
-
onClick: () => {
|
|
1036
|
-
setSpinny(true);
|
|
1037
|
-
onClick();
|
|
1038
|
-
},
|
|
1039
|
-
children: title
|
|
548
|
+
if (!aTitleStarts && bTitleStarts) {
|
|
549
|
+
return 1;
|
|
1040
550
|
}
|
|
1041
|
-
|
|
551
|
+
const aWordStarts = aTitleUpper.split(" ").some((word) => word.startsWith(upperQuery));
|
|
552
|
+
const bWordStarts = bTitleUpper.split(" ").some((word) => word.startsWith(upperQuery));
|
|
553
|
+
if (aWordStarts && !bWordStarts) {
|
|
554
|
+
return -1;
|
|
555
|
+
}
|
|
556
|
+
if (!aWordStarts && bWordStarts) {
|
|
557
|
+
return 1;
|
|
558
|
+
}
|
|
559
|
+
return a.title.localeCompare(b.title);
|
|
560
|
+
});
|
|
1042
561
|
}
|
|
1043
|
-
var mapContext = (context) => {
|
|
1044
|
-
switch (context) {
|
|
1045
|
-
case "neutral":
|
|
1046
|
-
case "warning":
|
|
1047
|
-
return "accent";
|
|
1048
|
-
default:
|
|
1049
|
-
return context;
|
|
1050
|
-
}
|
|
1051
|
-
};
|
|
1052
|
-
var mapControl = (control) => {
|
|
1053
|
-
switch (control) {
|
|
1054
|
-
case "primary":
|
|
1055
|
-
case "tertiary":
|
|
1056
|
-
return control;
|
|
1057
|
-
default:
|
|
1058
|
-
return "secondary";
|
|
1059
|
-
}
|
|
1060
|
-
};
|
|
1061
|
-
var mapSize = (size) => {
|
|
1062
|
-
if (!size) {
|
|
1063
|
-
return void 0;
|
|
1064
|
-
}
|
|
1065
|
-
switch (size) {
|
|
1066
|
-
case "xs":
|
|
1067
|
-
case "sm":
|
|
1068
|
-
return "sm";
|
|
1069
|
-
case "lg":
|
|
1070
|
-
case "xl":
|
|
1071
|
-
return "lg";
|
|
1072
|
-
case "md":
|
|
1073
|
-
default:
|
|
1074
|
-
return "md";
|
|
1075
|
-
}
|
|
1076
|
-
};
|
|
1077
|
-
var ButtonRenderer_default = ButtonRenderer;
|
|
1078
562
|
|
|
1079
|
-
// ../renderers/src/
|
|
1080
|
-
import {
|
|
563
|
+
// ../renderers/src/DecisionRenderer/DecisionList.tsx
|
|
564
|
+
import { NavigationOption, NavigationOptionsList } from "@transferwise/components";
|
|
1081
565
|
|
|
1082
|
-
// ../renderers/src/
|
|
1083
|
-
import {
|
|
1084
|
-
import {
|
|
566
|
+
// ../renderers/src/utils/UrnFlag.tsx
|
|
567
|
+
import { Flag } from "@wise/art";
|
|
568
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
569
|
+
var countryUrnPrefix = "urn:wise:countries:";
|
|
570
|
+
var currencyUrnPrefix = "urn:wise:currencies:";
|
|
571
|
+
var isUrnFlag = (uri) => uri.startsWith(countryUrnPrefix) || uri.startsWith(currencyUrnPrefix);
|
|
572
|
+
function UrnFlag({ size, urn }) {
|
|
573
|
+
return /* @__PURE__ */ jsx12(Flag, { code: getCode(urn), intrinsicSize: size });
|
|
574
|
+
}
|
|
575
|
+
var getCode = (urn) => {
|
|
576
|
+
return urn.replace(countryUrnPrefix, "").replace(currencyUrnPrefix, "").replace(":image", "").split("?")[0];
|
|
577
|
+
};
|
|
1085
578
|
|
|
1086
|
-
// ../renderers/src/
|
|
1087
|
-
import {
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
579
|
+
// ../renderers/src/components/icon/FlagIcon.tsx
|
|
580
|
+
import { Flag as Flag2 } from "@wise/art";
|
|
581
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
582
|
+
var isFlagIcon = (name) => name.startsWith("flag-");
|
|
583
|
+
function FlagIcon({ name }) {
|
|
584
|
+
if (!isFlagIcon(name)) {
|
|
585
|
+
return null;
|
|
1093
586
|
}
|
|
1094
|
-
|
|
587
|
+
const code = name.substring(5);
|
|
588
|
+
return /* @__PURE__ */ jsx13(Flag2, { code, intrinsicSize: 24 });
|
|
589
|
+
}
|
|
1095
590
|
|
|
1096
|
-
// ../renderers/src/components/
|
|
1097
|
-
import
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
);
|
|
591
|
+
// ../renderers/src/components/icon/NamedIcon.tsx
|
|
592
|
+
import * as icons from "@transferwise/icons";
|
|
593
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
594
|
+
var isNamedIcon = (name) => {
|
|
595
|
+
const iconName = toCapitalisedCamelCase(name);
|
|
596
|
+
return Object.keys(icons).includes(iconName);
|
|
597
|
+
};
|
|
598
|
+
function NamedIcon({ name }) {
|
|
599
|
+
if (!isNamedIcon(name)) {
|
|
600
|
+
return null;
|
|
601
|
+
}
|
|
602
|
+
const iconName = toCapitalisedCamelCase(name);
|
|
603
|
+
const Icon = icons[iconName];
|
|
604
|
+
return /* @__PURE__ */ jsx14(Icon, { size: 24 });
|
|
1111
605
|
}
|
|
1112
|
-
var
|
|
606
|
+
var toCapitalisedCamelCase = (value) => value.split("-").map(capitaliseFirstChar).join("");
|
|
607
|
+
var capitaliseFirstChar = (value) => `${value[0].toUpperCase()}${value.slice(1)}`;
|
|
1113
608
|
|
|
1114
|
-
// ../renderers/src/components/
|
|
1115
|
-
import { jsx as
|
|
1116
|
-
function
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
609
|
+
// ../renderers/src/components/icon/DynamicIcon.tsx
|
|
610
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
611
|
+
function DynamicIcon({ name }) {
|
|
612
|
+
if (isFlagIcon(name)) {
|
|
613
|
+
return /* @__PURE__ */ jsx15(FlagIcon, { name });
|
|
614
|
+
}
|
|
615
|
+
if (isNamedIcon(name)) {
|
|
616
|
+
return /* @__PURE__ */ jsx15(NamedIcon, { name });
|
|
617
|
+
}
|
|
618
|
+
return null;
|
|
1121
619
|
}
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
1125
|
-
function FieldInput({ id, children, label, validation, description, help }) {
|
|
1126
|
-
const labelContent = label && help ? /* @__PURE__ */ jsx7(LabelContentWithHelp, { text: label, help }) : label;
|
|
1127
|
-
return /* @__PURE__ */ jsx7(
|
|
1128
|
-
Field,
|
|
1129
|
-
{
|
|
1130
|
-
id,
|
|
1131
|
-
label: labelContent,
|
|
1132
|
-
description,
|
|
1133
|
-
message: validation == null ? void 0 : validation.message,
|
|
1134
|
-
sentiment: mapStatusToSentiment(validation),
|
|
1135
|
-
children
|
|
1136
|
-
}
|
|
1137
|
-
);
|
|
620
|
+
function isValidIconName(name) {
|
|
621
|
+
return isNamedIcon(name) || isFlagIcon(name);
|
|
1138
622
|
}
|
|
1139
|
-
|
|
1140
|
-
if (
|
|
1141
|
-
|
|
1142
|
-
return "positive";
|
|
1143
|
-
}
|
|
1144
|
-
return "negative";
|
|
1145
|
-
}
|
|
1146
|
-
return void 0;
|
|
1147
|
-
};
|
|
1148
|
-
var FieldInput_default = FieldInput;
|
|
1149
|
-
|
|
1150
|
-
// ../renderers/src/CheckboxInputRenderer.tsx
|
|
1151
|
-
import { Checkbox } from "@transferwise/components";
|
|
1152
|
-
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
1153
|
-
var CheckboxInputRenderer = {
|
|
1154
|
-
canRenderType: "input-checkbox",
|
|
1155
|
-
render: (props) => {
|
|
1156
|
-
const _a = props, {
|
|
1157
|
-
id,
|
|
1158
|
-
control,
|
|
1159
|
-
title = "",
|
|
1160
|
-
description,
|
|
1161
|
-
help,
|
|
1162
|
-
type,
|
|
1163
|
-
validationState,
|
|
1164
|
-
value
|
|
1165
|
-
} = _a, rest = __objRest(_a, [
|
|
1166
|
-
"id",
|
|
1167
|
-
"control",
|
|
1168
|
-
"title",
|
|
1169
|
-
"description",
|
|
1170
|
-
"help",
|
|
1171
|
-
"type",
|
|
1172
|
-
"validationState",
|
|
1173
|
-
"value"
|
|
1174
|
-
]);
|
|
1175
|
-
const checkboxProps = __spreadProps(__spreadValues({}, rest), { label: title, secondary: description, checked: value });
|
|
1176
|
-
return /* @__PURE__ */ jsx8(FieldInput_default, { id, label: "", description: "", validation: validationState, help, children: /* @__PURE__ */ jsx8(Checkbox, __spreadValues({ id }, checkboxProps)) });
|
|
623
|
+
function isValidIconUrn(uri) {
|
|
624
|
+
if (!uri.startsWith("urn:wise:icons:")) {
|
|
625
|
+
return false;
|
|
1177
626
|
}
|
|
1178
|
-
|
|
1179
|
-
|
|
627
|
+
const name = uri.replace("urn:wise:icons:", "").split("?")[0];
|
|
628
|
+
return isValidIconName(name);
|
|
629
|
+
}
|
|
630
|
+
var DynamicIcon_default = DynamicIcon;
|
|
1180
631
|
|
|
1181
|
-
// ../renderers/src/
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
children: [
|
|
1194
|
-
/* @__PURE__ */ jsx9("div", { className: "df-columns-renderer-column", children: startChildren }),
|
|
1195
|
-
/* @__PURE__ */ jsx9("div", { className: "df-columns-renderer-column", children: endChildren })
|
|
1196
|
-
]
|
|
1197
|
-
}
|
|
1198
|
-
)
|
|
632
|
+
// ../renderers/src/components/Media/stringToURN.ts
|
|
633
|
+
var stringToURN = (uri) => {
|
|
634
|
+
var _a;
|
|
635
|
+
const [nameWithRComponent, qComponent] = uri.split("?=");
|
|
636
|
+
const [name, rComponent] = (_a = nameWithRComponent == null ? void 0 : nameWithRComponent.split("?+")) != null ? _a : ["", ""];
|
|
637
|
+
const rComponents = rComponent == null ? void 0 : rComponent.split("&").map((c) => c.split("=")).map(([a, b]) => [a, b]);
|
|
638
|
+
const qComponents = qComponent == null ? void 0 : qComponent.split("&").map((c) => c.split("=")).map(([a, b]) => [a, b]);
|
|
639
|
+
return {
|
|
640
|
+
name,
|
|
641
|
+
rComponents,
|
|
642
|
+
qComponents
|
|
643
|
+
};
|
|
1199
644
|
};
|
|
1200
|
-
var ColumnsRenderer_default = ColumnsRenderer;
|
|
1201
|
-
|
|
1202
|
-
// ../renderers/src/components/VariableDateInput.tsx
|
|
1203
|
-
import { DateInput, DateLookup } from "@transferwise/components";
|
|
1204
|
-
|
|
1205
|
-
// ../renderers/src/validators/type-validators.ts
|
|
1206
|
-
var isNumber = (value) => typeof value === "number" && !Number.isNaN(value);
|
|
1207
645
|
|
|
1208
|
-
// ../renderers/src/
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
646
|
+
// ../renderers/src/components/Media/resolveUri.tsx
|
|
647
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
648
|
+
var resolveUri = (uri, size) => {
|
|
649
|
+
var _a, _b;
|
|
650
|
+
const { name, qComponents = [] } = stringToURN(uri);
|
|
651
|
+
if (isValidIconUrn(name)) {
|
|
652
|
+
const icon = /* @__PURE__ */ jsx16(DynamicIcon_default, { name: name.replace("urn:wise:icons:", "") });
|
|
653
|
+
return {
|
|
654
|
+
icon,
|
|
655
|
+
backgroundColor: formatColor((_a = qComponents.find(([key]) => key === "background-color")) == null ? void 0 : _a[1])
|
|
656
|
+
};
|
|
1212
657
|
}
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
658
|
+
if (isUrnFlag(name)) {
|
|
659
|
+
return {
|
|
660
|
+
asset: /* @__PURE__ */ jsx16(UrnFlag, { urn: name, size })
|
|
661
|
+
};
|
|
1216
662
|
}
|
|
1217
|
-
|
|
663
|
+
if (name.startsWith("data:text/plain,")) {
|
|
664
|
+
const text = decodeURI(name.replace("data:text/plain,", ""));
|
|
665
|
+
return {
|
|
666
|
+
asset: text,
|
|
667
|
+
backgroundColor: formatColor((_b = qComponents.find(([key]) => key === "background-color")) == null ? void 0 : _b[1])
|
|
668
|
+
};
|
|
669
|
+
}
|
|
670
|
+
if (!uri.startsWith("urn:")) {
|
|
671
|
+
return { asset: /* @__PURE__ */ jsx16("img", { src: uri, alt: "", width: `${size}px` }) };
|
|
672
|
+
}
|
|
673
|
+
return { asset: void 0 };
|
|
1218
674
|
};
|
|
1219
|
-
var
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
return
|
|
675
|
+
var formatColor = (color) => {
|
|
676
|
+
if (!color) {
|
|
677
|
+
return void 0;
|
|
678
|
+
}
|
|
679
|
+
if (color.startsWith("#")) {
|
|
680
|
+
return color;
|
|
681
|
+
}
|
|
682
|
+
return `var(--color-${color.replace(/^base-|brand-/, "")})`;
|
|
1227
683
|
};
|
|
1228
684
|
|
|
1229
|
-
// ../renderers/src/components/
|
|
1230
|
-
import {
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
685
|
+
// ../renderers/src/components/Media/AvatarMedia.tsx
|
|
686
|
+
import { AvatarLayout, AvatarView } from "@transferwise/components";
|
|
687
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
688
|
+
var AvatarMedia = ({
|
|
689
|
+
accessibilityDescription,
|
|
690
|
+
content,
|
|
691
|
+
size
|
|
692
|
+
}) => {
|
|
693
|
+
const getRenderableAvatar = (avatar) => {
|
|
694
|
+
if (avatar.type === "text") {
|
|
695
|
+
return { asset: avatar.text };
|
|
696
|
+
}
|
|
697
|
+
return __spreadProps(__spreadValues({}, resolveUri(avatar.uri, size)), {
|
|
698
|
+
badge: avatar.badgeUri ? resolveUri(avatar.badgeUri, 16) : void 0
|
|
699
|
+
});
|
|
700
|
+
};
|
|
701
|
+
const avatars = content.map(getRenderableAvatar);
|
|
702
|
+
if (avatars.length === 1) {
|
|
703
|
+
const { badge, backgroundColor, asset, icon } = avatars[0];
|
|
704
|
+
if (!asset && !icon) {
|
|
705
|
+
return null;
|
|
706
|
+
}
|
|
707
|
+
return /* @__PURE__ */ jsx17(
|
|
708
|
+
AvatarView,
|
|
1248
709
|
{
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
},
|
|
1257
|
-
onBlur,
|
|
1258
|
-
onFocus
|
|
710
|
+
"aria-label": accessibilityDescription,
|
|
711
|
+
size,
|
|
712
|
+
badge: badge ? __spreadProps(__spreadValues({}, badge), {
|
|
713
|
+
type: "reference"
|
|
714
|
+
}) : void 0,
|
|
715
|
+
style: { backgroundColor },
|
|
716
|
+
children: icon != null ? icon : asset
|
|
1259
717
|
}
|
|
1260
718
|
);
|
|
1261
719
|
}
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
720
|
+
const avatarsWithoutBadges = avatars.filter(({ asset }) => asset).slice(0, 2).map((_a) => {
|
|
721
|
+
var _b = _a, { badge } = _b, rest = __objRest(_b, ["badge"]);
|
|
722
|
+
return __spreadValues({}, rest);
|
|
723
|
+
});
|
|
724
|
+
return /* @__PURE__ */ jsx17(
|
|
725
|
+
AvatarLayout,
|
|
726
|
+
{
|
|
727
|
+
"aria-label": accessibilityDescription,
|
|
728
|
+
size,
|
|
729
|
+
orientation: "diagonal",
|
|
730
|
+
avatars: avatarsWithoutBadges
|
|
731
|
+
}
|
|
1268
732
|
);
|
|
1269
|
-
}
|
|
1270
|
-
var getAutocompleteString = (value, suffix) => {
|
|
1271
|
-
if (value === "bday") {
|
|
1272
|
-
return `${value}-${suffix}`;
|
|
1273
|
-
}
|
|
1274
|
-
return void 0;
|
|
1275
733
|
};
|
|
1276
|
-
var VariableDateInput_default = VariableDateInput;
|
|
1277
734
|
|
|
1278
|
-
// ../renderers/src/
|
|
1279
|
-
import {
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
description,
|
|
1287
|
-
type,
|
|
1288
|
-
help,
|
|
1289
|
-
title,
|
|
1290
|
-
validationState,
|
|
1291
|
-
value: initialValue
|
|
1292
|
-
} = _a, rest = __objRest(_a, [
|
|
1293
|
-
"id",
|
|
1294
|
-
"control",
|
|
1295
|
-
"description",
|
|
1296
|
-
"type",
|
|
1297
|
-
"help",
|
|
1298
|
-
"title",
|
|
1299
|
-
"validationState",
|
|
1300
|
-
"value"
|
|
1301
|
-
]);
|
|
1302
|
-
const value = initialValue != null ? initialValue : "";
|
|
1303
|
-
const inputProps = __spreadProps(__spreadValues({}, rest), { value, id });
|
|
1304
|
-
return /* @__PURE__ */ jsx11(
|
|
1305
|
-
FieldInput_default,
|
|
1306
|
-
{
|
|
1307
|
-
id,
|
|
1308
|
-
label: title,
|
|
1309
|
-
description,
|
|
1310
|
-
validation: validationState,
|
|
1311
|
-
help,
|
|
1312
|
-
children: /* @__PURE__ */ jsx11(VariableDateInput_default, { control, inputProps })
|
|
1313
|
-
}
|
|
1314
|
-
);
|
|
735
|
+
// ../renderers/src/utils/image-utils.tsx
|
|
736
|
+
import { AvatarView as AvatarView2 } from "@transferwise/components";
|
|
737
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
738
|
+
var getBadgedMedia = (iconNode, imageNode, size) => {
|
|
739
|
+
if (iconNode && imageNode) {
|
|
740
|
+
if (imageNode && iconNode) {
|
|
741
|
+
return /* @__PURE__ */ jsx18(AvatarView2, { size, badge: { asset: iconNode, type: "reference" }, children: imageNode });
|
|
742
|
+
}
|
|
1315
743
|
}
|
|
744
|
+
return null;
|
|
1316
745
|
};
|
|
1317
|
-
var
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
import { useIntl as useIntl4 } from "react-intl";
|
|
1322
|
-
|
|
1323
|
-
// ../renderers/src/messages/decision.messages.ts
|
|
1324
|
-
import { defineMessages as defineMessages3 } from "react-intl";
|
|
1325
|
-
var decision_messages_default = defineMessages3({
|
|
1326
|
-
all: {
|
|
1327
|
-
id: "df.wise.Decision.all",
|
|
1328
|
-
defaultMessage: "All",
|
|
1329
|
-
description: "Label for the group of options that encompasses all options"
|
|
1330
|
-
},
|
|
1331
|
-
popular: {
|
|
1332
|
-
id: "df.wise.Decision.popular",
|
|
1333
|
-
defaultMessage: "Popular",
|
|
1334
|
-
description: "Label for the group of options that are tagged as popular"
|
|
1335
|
-
},
|
|
1336
|
-
recent: {
|
|
1337
|
-
id: "df.wise.Decision.recent",
|
|
1338
|
-
defaultMessage: "Recent",
|
|
1339
|
-
description: "Label for the group of options that are tagged as recent"
|
|
1340
|
-
},
|
|
1341
|
-
filterPlaceholder: {
|
|
1342
|
-
id: "df.wise.Decision.filterPlaceholder",
|
|
1343
|
-
defaultMessage: "Start typing to search",
|
|
1344
|
-
description: "Placeholder for the filter input"
|
|
1345
|
-
},
|
|
1346
|
-
results: {
|
|
1347
|
-
id: "df.wise.Decision.results",
|
|
1348
|
-
defaultMessage: "Search results",
|
|
1349
|
-
description: "Label for the results section"
|
|
1350
|
-
},
|
|
1351
|
-
noResults: {
|
|
1352
|
-
id: "df.wise.Decision.noResults",
|
|
1353
|
-
defaultMessage: "No results",
|
|
1354
|
-
description: "Message for if there are no results"
|
|
1355
|
-
}
|
|
1356
|
-
});
|
|
1357
|
-
|
|
1358
|
-
// ../renderers/src/DecisionRenderer/DecisionRenderer.tsx
|
|
1359
|
-
import { useState as useState3 } from "react";
|
|
1360
|
-
|
|
1361
|
-
// ../renderers/src/DecisionRenderer/filter-and-sort-decision-options.ts
|
|
1362
|
-
function filterAndSortDecisionOptions(selectOptions, query) {
|
|
1363
|
-
const upperQuery = query.toUpperCase().trim();
|
|
1364
|
-
const filteredItems = selectOptions.filter((option) => {
|
|
1365
|
-
var _a, _b, _c, _d;
|
|
1366
|
-
const searchableWords = [
|
|
1367
|
-
option.title,
|
|
1368
|
-
option.description,
|
|
1369
|
-
option.additionalText,
|
|
1370
|
-
(_a = option.supportingValues) == null ? void 0 : _a.value,
|
|
1371
|
-
(_b = option.supportingValues) == null ? void 0 : _b.subvalue,
|
|
1372
|
-
...(_c = option.keywords) != null ? _c : []
|
|
1373
|
-
];
|
|
1374
|
-
return (_d = searchableWords.some((word) => word == null ? void 0 : word.toUpperCase().includes(upperQuery))) != null ? _d : false;
|
|
1375
|
-
});
|
|
1376
|
-
return [...filteredItems].sort((a, b) => {
|
|
1377
|
-
const aTitleUpper = a.title.toUpperCase();
|
|
1378
|
-
const bTitleUpper = b.title.toUpperCase();
|
|
1379
|
-
const aTitleStarts = aTitleUpper.startsWith(upperQuery);
|
|
1380
|
-
const bTitleStarts = bTitleUpper.startsWith(upperQuery);
|
|
1381
|
-
if (aTitleStarts && !bTitleStarts) {
|
|
1382
|
-
return -1;
|
|
746
|
+
var getIconNode = (icon) => {
|
|
747
|
+
if (icon) {
|
|
748
|
+
if ("name" in icon) {
|
|
749
|
+
return /* @__PURE__ */ jsx18(DynamicIcon_default, { name: icon.name });
|
|
1383
750
|
}
|
|
1384
|
-
if (
|
|
1385
|
-
return
|
|
751
|
+
if (icon.text) {
|
|
752
|
+
return icon.text;
|
|
1386
753
|
}
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
754
|
+
}
|
|
755
|
+
return null;
|
|
756
|
+
};
|
|
757
|
+
var getImageNode = (image, size) => {
|
|
758
|
+
if (image) {
|
|
759
|
+
const { accessibilityDescription, uri } = image;
|
|
760
|
+
if (!uri.startsWith("urn:")) {
|
|
761
|
+
return /* @__PURE__ */ jsx18("img", { src: uri, alt: accessibilityDescription, width: `${size}px` });
|
|
1391
762
|
}
|
|
1392
|
-
if (
|
|
1393
|
-
return
|
|
763
|
+
if (isUrnFlag(uri)) {
|
|
764
|
+
return /* @__PURE__ */ jsx18(UrnFlag, { urn: uri, accessibilityDescription, size });
|
|
1394
765
|
}
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
// ../renderers/src/DecisionRenderer/DecisionList.tsx
|
|
1400
|
-
import { NavigationOption, NavigationOptionsList } from "@transferwise/components";
|
|
1401
|
-
|
|
1402
|
-
// ../renderers/src/utils/UrnFlag.tsx
|
|
1403
|
-
import { Flag } from "@wise/art";
|
|
1404
|
-
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
1405
|
-
var countryUrnPrefix = "urn:wise:countries:";
|
|
1406
|
-
var currencyUrnPrefix = "urn:wise:currencies:";
|
|
1407
|
-
var isUrnFlag = (uri) => uri.startsWith(countryUrnPrefix) || uri.startsWith(currencyUrnPrefix);
|
|
1408
|
-
function UrnFlag({ size, urn }) {
|
|
1409
|
-
return /* @__PURE__ */ jsx12(Flag, { code: getCode(urn), intrinsicSize: size });
|
|
1410
|
-
}
|
|
1411
|
-
var getCode = (urn) => {
|
|
1412
|
-
return urn.replace(countryUrnPrefix, "").replace(currencyUrnPrefix, "").replace(":image", "").split("?")[0];
|
|
766
|
+
}
|
|
767
|
+
return null;
|
|
1413
768
|
};
|
|
1414
769
|
|
|
1415
|
-
// ../renderers/src/components/
|
|
1416
|
-
import {
|
|
1417
|
-
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
1418
|
-
var isFlagIcon = (name) => name.startsWith("flag-");
|
|
1419
|
-
function FlagIcon({ name }) {
|
|
1420
|
-
if (!isFlagIcon(name)) {
|
|
1421
|
-
return null;
|
|
1422
|
-
}
|
|
1423
|
-
const code = name.substring(5);
|
|
1424
|
-
return /* @__PURE__ */ jsx13(Flag2, { code, intrinsicSize: 24 });
|
|
1425
|
-
}
|
|
770
|
+
// ../renderers/src/components/Media/Media.tsx
|
|
771
|
+
import { AvatarView as AvatarView4 } from "@transferwise/components";
|
|
1426
772
|
|
|
1427
|
-
// ../renderers/src/components/
|
|
1428
|
-
import
|
|
1429
|
-
import { jsx as
|
|
1430
|
-
var
|
|
1431
|
-
const
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
return null;
|
|
773
|
+
// ../renderers/src/components/Media/LegacyMedia.tsx
|
|
774
|
+
import { AvatarView as AvatarView3 } from "@transferwise/components";
|
|
775
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
776
|
+
var LegacyMedia = ({ image, icon, preferAvatar, size }) => {
|
|
777
|
+
const imageNode = getImageNode(image, size);
|
|
778
|
+
const iconNode = getIconNode(icon);
|
|
779
|
+
const badge = getBadgedMedia(iconNode, imageNode, size);
|
|
780
|
+
if (badge) {
|
|
781
|
+
return badge;
|
|
1437
782
|
}
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
return /* @__PURE__ */ jsx14(Icon, { size: 24 });
|
|
1441
|
-
}
|
|
1442
|
-
var toCapitalisedCamelCase = (value) => value.split("-").map(capitaliseFirstChar).join("");
|
|
1443
|
-
var capitaliseFirstChar = (value) => `${value[0].toUpperCase()}${value.slice(1)}`;
|
|
1444
|
-
|
|
1445
|
-
// ../renderers/src/components/icon/DynamicIcon.tsx
|
|
1446
|
-
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
1447
|
-
function DynamicIcon({ name }) {
|
|
1448
|
-
if (isFlagIcon(name)) {
|
|
1449
|
-
return /* @__PURE__ */ jsx15(FlagIcon, { name });
|
|
783
|
+
if (imageNode) {
|
|
784
|
+
return preferAvatar ? /* @__PURE__ */ jsx19(AvatarView3, { children: imageNode }) : imageNode;
|
|
1450
785
|
}
|
|
1451
|
-
if (
|
|
1452
|
-
|
|
786
|
+
if (iconNode && icon) {
|
|
787
|
+
if ("text" in icon || size === 48) {
|
|
788
|
+
return /* @__PURE__ */ jsx19(AvatarView3, { size, children: iconNode });
|
|
789
|
+
}
|
|
790
|
+
return iconNode;
|
|
1453
791
|
}
|
|
1454
792
|
return null;
|
|
1455
|
-
}
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
}
|
|
1459
|
-
function
|
|
1460
|
-
|
|
1461
|
-
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
// ../renderers/src/components/Media/Media.tsx
|
|
796
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
797
|
+
function Media({
|
|
798
|
+
media,
|
|
799
|
+
preferAvatar,
|
|
800
|
+
size
|
|
801
|
+
}) {
|
|
802
|
+
switch (media == null ? void 0 : media.type) {
|
|
803
|
+
case "avatar":
|
|
804
|
+
return /* @__PURE__ */ jsx20(AvatarMedia, __spreadProps(__spreadValues({}, media), { size }));
|
|
805
|
+
case "image": {
|
|
806
|
+
const imageNode = getImageNode(media, size);
|
|
807
|
+
return preferAvatar ? /* @__PURE__ */ jsx20(AvatarView4, { children: imageNode }) : imageNode;
|
|
808
|
+
}
|
|
809
|
+
case "legacy": {
|
|
810
|
+
return /* @__PURE__ */ jsx20(LegacyMedia, __spreadProps(__spreadValues({}, media), { preferAvatar, size }));
|
|
811
|
+
}
|
|
812
|
+
default:
|
|
813
|
+
return null;
|
|
1462
814
|
}
|
|
1463
|
-
const name = uri.replace("urn:wise:icons:", "").split("?")[0];
|
|
1464
|
-
return isValidIconName(name);
|
|
1465
815
|
}
|
|
1466
|
-
var DynamicIcon_default = DynamicIcon;
|
|
1467
816
|
|
|
1468
|
-
// ../renderers/src/components/Media/
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
const qComponents = qComponent == null ? void 0 : qComponent.split("&").map((c) => c.split("=")).map(([a, b]) => [a, b]);
|
|
1475
|
-
return {
|
|
1476
|
-
name,
|
|
1477
|
-
rComponents,
|
|
1478
|
-
qComponents
|
|
1479
|
-
};
|
|
1480
|
-
};
|
|
1481
|
-
|
|
1482
|
-
// ../renderers/src/components/Media/resolveUri.tsx
|
|
1483
|
-
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
1484
|
-
var resolveUri = (uri, size) => {
|
|
1485
|
-
var _a, _b;
|
|
1486
|
-
const { name, qComponents = [] } = stringToURN(uri);
|
|
1487
|
-
if (isValidIconUrn(name)) {
|
|
1488
|
-
const icon = /* @__PURE__ */ jsx16(DynamicIcon_default, { name: name.replace("urn:wise:icons:", "") });
|
|
1489
|
-
return {
|
|
1490
|
-
icon,
|
|
1491
|
-
backgroundColor: formatColor((_a = qComponents.find(([key]) => key === "background-color")) == null ? void 0 : _a[1])
|
|
1492
|
-
};
|
|
1493
|
-
}
|
|
1494
|
-
if (isUrnFlag(name)) {
|
|
1495
|
-
return {
|
|
1496
|
-
asset: /* @__PURE__ */ jsx16(UrnFlag, { urn: name, size })
|
|
1497
|
-
};
|
|
1498
|
-
}
|
|
1499
|
-
if (name.startsWith("data:text/plain,")) {
|
|
1500
|
-
const text = decodeURI(name.replace("data:text/plain,", ""));
|
|
1501
|
-
return {
|
|
1502
|
-
asset: text,
|
|
1503
|
-
backgroundColor: formatColor((_b = qComponents.find(([key]) => key === "background-color")) == null ? void 0 : _b[1])
|
|
1504
|
-
};
|
|
1505
|
-
}
|
|
1506
|
-
if (!uri.startsWith("urn:")) {
|
|
1507
|
-
return { asset: /* @__PURE__ */ jsx16("img", { src: uri, alt: "", width: `${size}px` }) };
|
|
1508
|
-
}
|
|
1509
|
-
return { asset: void 0 };
|
|
1510
|
-
};
|
|
1511
|
-
var formatColor = (color) => {
|
|
1512
|
-
if (!color) {
|
|
1513
|
-
return void 0;
|
|
1514
|
-
}
|
|
1515
|
-
if (color.startsWith("#")) {
|
|
1516
|
-
return color;
|
|
1517
|
-
}
|
|
1518
|
-
return `var(--color-${color.replace(/^base-|brand-/, "")})`;
|
|
1519
|
-
};
|
|
1520
|
-
|
|
1521
|
-
// ../renderers/src/components/Media/AvatarMedia.tsx
|
|
1522
|
-
import { AvatarLayout, AvatarView } from "@transferwise/components";
|
|
1523
|
-
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
1524
|
-
var AvatarMedia = ({
|
|
1525
|
-
accessibilityDescription,
|
|
1526
|
-
content,
|
|
1527
|
-
size
|
|
1528
|
-
}) => {
|
|
1529
|
-
const getRenderableAvatar = (avatar) => {
|
|
1530
|
-
if (avatar.type === "text") {
|
|
1531
|
-
return { asset: avatar.text };
|
|
1532
|
-
}
|
|
1533
|
-
return __spreadProps(__spreadValues({}, resolveUri(avatar.uri, size)), {
|
|
1534
|
-
badge: avatar.badgeUri ? resolveUri(avatar.badgeUri, 16) : void 0
|
|
1535
|
-
});
|
|
1536
|
-
};
|
|
1537
|
-
const avatars = content.map(getRenderableAvatar);
|
|
1538
|
-
if (avatars.length === 1) {
|
|
1539
|
-
const { badge, backgroundColor, asset, icon } = avatars[0];
|
|
1540
|
-
if (!asset && !icon) {
|
|
1541
|
-
return null;
|
|
1542
|
-
}
|
|
1543
|
-
return /* @__PURE__ */ jsx17(
|
|
1544
|
-
AvatarView,
|
|
1545
|
-
{
|
|
1546
|
-
"aria-label": accessibilityDescription,
|
|
1547
|
-
size,
|
|
1548
|
-
badge: badge ? __spreadProps(__spreadValues({}, badge), {
|
|
1549
|
-
type: "reference"
|
|
1550
|
-
}) : void 0,
|
|
1551
|
-
style: { backgroundColor },
|
|
1552
|
-
children: icon != null ? icon : asset
|
|
1553
|
-
}
|
|
1554
|
-
);
|
|
1555
|
-
}
|
|
1556
|
-
const avatarsWithoutBadges = avatars.filter(({ asset }) => asset).slice(0, 2).map((_a) => {
|
|
1557
|
-
var _b = _a, { badge } = _b, rest = __objRest(_b, ["badge"]);
|
|
1558
|
-
return __spreadValues({}, rest);
|
|
1559
|
-
});
|
|
1560
|
-
return /* @__PURE__ */ jsx17(
|
|
1561
|
-
AvatarLayout,
|
|
1562
|
-
{
|
|
1563
|
-
"aria-label": accessibilityDescription,
|
|
1564
|
-
size,
|
|
1565
|
-
orientation: "diagonal",
|
|
1566
|
-
avatars: avatarsWithoutBadges
|
|
1567
|
-
}
|
|
1568
|
-
);
|
|
1569
|
-
};
|
|
1570
|
-
|
|
1571
|
-
// ../renderers/src/utils/image-utils.tsx
|
|
1572
|
-
import { AvatarView as AvatarView2 } from "@transferwise/components";
|
|
1573
|
-
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
1574
|
-
var getBadgedMedia = (iconNode, imageNode, size) => {
|
|
1575
|
-
if (iconNode && imageNode) {
|
|
1576
|
-
if (imageNode && iconNode) {
|
|
1577
|
-
return /* @__PURE__ */ jsx18(AvatarView2, { size, badge: { asset: iconNode, type: "reference" }, children: imageNode });
|
|
1578
|
-
}
|
|
1579
|
-
}
|
|
1580
|
-
return null;
|
|
1581
|
-
};
|
|
1582
|
-
var getIconNode = (icon) => {
|
|
1583
|
-
if (icon) {
|
|
1584
|
-
if ("name" in icon) {
|
|
1585
|
-
return /* @__PURE__ */ jsx18(DynamicIcon_default, { name: icon.name });
|
|
1586
|
-
}
|
|
1587
|
-
if (icon.text) {
|
|
1588
|
-
return icon.text;
|
|
1589
|
-
}
|
|
1590
|
-
}
|
|
1591
|
-
return null;
|
|
1592
|
-
};
|
|
1593
|
-
var getImageNode = (image, size) => {
|
|
1594
|
-
if (image) {
|
|
1595
|
-
const { accessibilityDescription, uri } = image;
|
|
1596
|
-
if (!uri.startsWith("urn:")) {
|
|
1597
|
-
return /* @__PURE__ */ jsx18("img", { src: uri, alt: accessibilityDescription, width: `${size}px` });
|
|
1598
|
-
}
|
|
1599
|
-
if (isUrnFlag(uri)) {
|
|
1600
|
-
return /* @__PURE__ */ jsx18(UrnFlag, { urn: uri, accessibilityDescription, size });
|
|
1601
|
-
}
|
|
1602
|
-
}
|
|
1603
|
-
return null;
|
|
1604
|
-
};
|
|
1605
|
-
|
|
1606
|
-
// ../renderers/src/components/Media/Media.tsx
|
|
1607
|
-
import { AvatarView as AvatarView4 } from "@transferwise/components";
|
|
1608
|
-
|
|
1609
|
-
// ../renderers/src/components/Media/LegacyMedia.tsx
|
|
1610
|
-
import { AvatarView as AvatarView3 } from "@transferwise/components";
|
|
1611
|
-
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
1612
|
-
var LegacyMedia = ({ image, icon, preferAvatar, size }) => {
|
|
1613
|
-
const imageNode = getImageNode(image, size);
|
|
1614
|
-
const iconNode = getIconNode(icon);
|
|
1615
|
-
const badge = getBadgedMedia(iconNode, imageNode, size);
|
|
1616
|
-
if (badge) {
|
|
1617
|
-
return badge;
|
|
1618
|
-
}
|
|
1619
|
-
if (imageNode) {
|
|
1620
|
-
return preferAvatar ? /* @__PURE__ */ jsx19(AvatarView3, { children: imageNode }) : imageNode;
|
|
1621
|
-
}
|
|
1622
|
-
if (iconNode && icon) {
|
|
1623
|
-
if ("text" in icon || size === 48) {
|
|
1624
|
-
return /* @__PURE__ */ jsx19(AvatarView3, { size, children: iconNode });
|
|
1625
|
-
}
|
|
1626
|
-
return iconNode;
|
|
1627
|
-
}
|
|
1628
|
-
return null;
|
|
1629
|
-
};
|
|
1630
|
-
|
|
1631
|
-
// ../renderers/src/components/Media/Media.tsx
|
|
1632
|
-
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
1633
|
-
function Media({
|
|
1634
|
-
media,
|
|
1635
|
-
preferAvatar,
|
|
1636
|
-
size
|
|
1637
|
-
}) {
|
|
1638
|
-
switch (media == null ? void 0 : media.type) {
|
|
1639
|
-
case "avatar":
|
|
1640
|
-
return /* @__PURE__ */ jsx20(AvatarMedia, __spreadProps(__spreadValues({}, media), { size }));
|
|
1641
|
-
case "image": {
|
|
1642
|
-
const imageNode = getImageNode(media, size);
|
|
1643
|
-
return preferAvatar ? /* @__PURE__ */ jsx20(AvatarView4, { children: imageNode }) : imageNode;
|
|
1644
|
-
}
|
|
1645
|
-
case "legacy": {
|
|
1646
|
-
return /* @__PURE__ */ jsx20(LegacyMedia, __spreadProps(__spreadValues({}, media), { preferAvatar, size }));
|
|
1647
|
-
}
|
|
1648
|
-
default:
|
|
1649
|
-
return null;
|
|
1650
|
-
}
|
|
1651
|
-
}
|
|
1652
|
-
|
|
1653
|
-
// ../renderers/src/components/Media/OptionMedia.tsx
|
|
1654
|
-
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
1655
|
-
var mediaSize = 48;
|
|
1656
|
-
function OptionMedia(props) {
|
|
1657
|
-
return /* @__PURE__ */ jsx21(Media, __spreadProps(__spreadValues({}, props), { size: mediaSize }));
|
|
1658
|
-
}
|
|
817
|
+
// ../renderers/src/components/Media/OptionMedia.tsx
|
|
818
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
819
|
+
var mediaSize = 48;
|
|
820
|
+
function OptionMedia(props) {
|
|
821
|
+
return /* @__PURE__ */ jsx21(Media, __spreadProps(__spreadValues({}, props), { size: mediaSize }));
|
|
822
|
+
}
|
|
1659
823
|
|
|
1660
824
|
// ../renderers/src/components/Media/getInlineMedia.tsx
|
|
1661
825
|
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
@@ -2868,6 +2032,18 @@ var getHeaderAction = (callToAction) => {
|
|
|
2868
2032
|
import { Fragment as Fragment5, jsx as jsx50, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
2869
2033
|
var ReviewRenderer = {
|
|
2870
2034
|
canRenderType: "review",
|
|
2035
|
+
extensions: {
|
|
2036
|
+
field: ({ label, value, help, analyticsId: fieldAnalyticsId, trackEvent, orientation }) => ({
|
|
2037
|
+
key: label,
|
|
2038
|
+
title: label,
|
|
2039
|
+
value: getFieldValue(
|
|
2040
|
+
value,
|
|
2041
|
+
help,
|
|
2042
|
+
orientation,
|
|
2043
|
+
() => trackEvent("Help Pressed", { layoutItemId: fieldAnalyticsId })
|
|
2044
|
+
)
|
|
2045
|
+
})
|
|
2046
|
+
},
|
|
2871
2047
|
render: ({ callToAction, control, fields, margin, title, trackEvent }) => {
|
|
2872
2048
|
const orientation = mapControlToDefinitionListLayout(control);
|
|
2873
2049
|
return /* @__PURE__ */ jsxs14("div", { className: getMargin(margin), children: [
|
|
@@ -2877,16 +2053,10 @@ var ReviewRenderer = {
|
|
|
2877
2053
|
{
|
|
2878
2054
|
layout: orientation,
|
|
2879
2055
|
definitions: fields.map(
|
|
2880
|
-
(
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
value,
|
|
2885
|
-
help,
|
|
2886
|
-
orientation,
|
|
2887
|
-
() => trackEvent("Help Pressed", { layoutItemId: fieldAnalyticsId })
|
|
2888
|
-
)
|
|
2889
|
-
})
|
|
2056
|
+
(field) => ReviewRenderer.extensions.field(__spreadProps(__spreadValues({}, field), {
|
|
2057
|
+
orientation,
|
|
2058
|
+
trackEvent
|
|
2059
|
+
}))
|
|
2890
2060
|
)
|
|
2891
2061
|
}
|
|
2892
2062
|
) })
|
|
@@ -3805,161 +2975,1006 @@ var TextInputRenderer = {
|
|
|
3805
2975
|
);
|
|
3806
2976
|
}
|
|
3807
2977
|
};
|
|
3808
|
-
var TextInputRenderer_default = TextInputRenderer;
|
|
3809
|
-
|
|
3810
|
-
// ../renderers/src/UploadInputRenderer.tsx
|
|
3811
|
-
import { Upload, UploadInput as UploadInput2 } from "@transferwise/components";
|
|
3812
|
-
|
|
3813
|
-
// ../renderers/src/utils/getRandomId.ts
|
|
3814
|
-
var getRandomId = () => Math.random().toString(36).substring(2);
|
|
2978
|
+
var TextInputRenderer_default = TextInputRenderer;
|
|
2979
|
+
|
|
2980
|
+
// ../renderers/src/UploadInputRenderer.tsx
|
|
2981
|
+
import { Upload, UploadInput as UploadInput2 } from "@transferwise/components";
|
|
2982
|
+
|
|
2983
|
+
// ../renderers/src/utils/getRandomId.ts
|
|
2984
|
+
var getRandomId = () => Math.random().toString(36).substring(2);
|
|
2985
|
+
|
|
2986
|
+
// ../renderers/src/UploadInputRenderer.tsx
|
|
2987
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
2988
|
+
var UploadInputRenderer = {
|
|
2989
|
+
canRenderType: "input-upload",
|
|
2990
|
+
render: (props) => {
|
|
2991
|
+
const { id, accepts, title, description, disabled, maxSize, validationState, onUpload } = props;
|
|
2992
|
+
const onUploadFile = async (formData) => {
|
|
2993
|
+
const file = formData.get("file");
|
|
2994
|
+
return onUpload(file).then(() => ({
|
|
2995
|
+
id: getRandomId()
|
|
2996
|
+
}));
|
|
2997
|
+
};
|
|
2998
|
+
const onDeleteFile = async () => {
|
|
2999
|
+
await onUpload(null);
|
|
3000
|
+
};
|
|
3001
|
+
return (
|
|
3002
|
+
// We don't pass help here as there is no sensible place to display it
|
|
3003
|
+
/* @__PURE__ */ jsx71(
|
|
3004
|
+
UploadFieldInput_default,
|
|
3005
|
+
{
|
|
3006
|
+
id,
|
|
3007
|
+
label: void 0,
|
|
3008
|
+
description: void 0,
|
|
3009
|
+
validation: validationState,
|
|
3010
|
+
children: /* @__PURE__ */ jsx71(
|
|
3011
|
+
UploadInput2,
|
|
3012
|
+
{
|
|
3013
|
+
id,
|
|
3014
|
+
description,
|
|
3015
|
+
disabled,
|
|
3016
|
+
sizeLimit: getSizeLimit(maxSize),
|
|
3017
|
+
fileTypes: acceptsToFileTypes(accepts),
|
|
3018
|
+
uploadButtonTitle: title,
|
|
3019
|
+
onDeleteFile,
|
|
3020
|
+
onUploadFile
|
|
3021
|
+
}
|
|
3022
|
+
)
|
|
3023
|
+
}
|
|
3024
|
+
)
|
|
3025
|
+
);
|
|
3026
|
+
}
|
|
3027
|
+
};
|
|
3028
|
+
var LargeUploadRenderer = {
|
|
3029
|
+
canRenderType: "input-upload",
|
|
3030
|
+
canRender: (props) => props.control === "upload-large",
|
|
3031
|
+
render: (props) => {
|
|
3032
|
+
const _a = props, {
|
|
3033
|
+
id,
|
|
3034
|
+
accepts,
|
|
3035
|
+
control,
|
|
3036
|
+
title,
|
|
3037
|
+
description,
|
|
3038
|
+
disabled,
|
|
3039
|
+
help,
|
|
3040
|
+
type,
|
|
3041
|
+
validationState,
|
|
3042
|
+
maxSize = null,
|
|
3043
|
+
onUpload
|
|
3044
|
+
} = _a, rest = __objRest(_a, [
|
|
3045
|
+
"id",
|
|
3046
|
+
"accepts",
|
|
3047
|
+
"control",
|
|
3048
|
+
"title",
|
|
3049
|
+
"description",
|
|
3050
|
+
"disabled",
|
|
3051
|
+
"help",
|
|
3052
|
+
"type",
|
|
3053
|
+
"validationState",
|
|
3054
|
+
"maxSize",
|
|
3055
|
+
"onUpload"
|
|
3056
|
+
]);
|
|
3057
|
+
const uploadProps = __spreadProps(__spreadValues({}, rest), { id, name: id, maxSize });
|
|
3058
|
+
const onUploadFile = async (file, fileName) => {
|
|
3059
|
+
try {
|
|
3060
|
+
const convertedFile = file ? await toFile(file, fileName) : null;
|
|
3061
|
+
await onUpload(convertedFile);
|
|
3062
|
+
} catch (e) {
|
|
3063
|
+
await onUpload(null);
|
|
3064
|
+
throw e;
|
|
3065
|
+
}
|
|
3066
|
+
};
|
|
3067
|
+
const filetypes = acceptsToFileTypes(accepts);
|
|
3068
|
+
const usAccept = filetypes === "*" ? "*" : filetypes.join(",");
|
|
3069
|
+
return /* @__PURE__ */ jsx71(
|
|
3070
|
+
FieldInput_default,
|
|
3071
|
+
{
|
|
3072
|
+
id,
|
|
3073
|
+
label: title,
|
|
3074
|
+
description,
|
|
3075
|
+
validation: validationState,
|
|
3076
|
+
help,
|
|
3077
|
+
children: /* @__PURE__ */ jsx71(
|
|
3078
|
+
Upload,
|
|
3079
|
+
__spreadProps(__spreadValues({}, uploadProps), {
|
|
3080
|
+
usAccept,
|
|
3081
|
+
usDisabled: disabled,
|
|
3082
|
+
onSuccess: onUploadFile,
|
|
3083
|
+
onFailure: async () => onUpload(null),
|
|
3084
|
+
onCancel: async () => onUpload(null)
|
|
3085
|
+
})
|
|
3086
|
+
)
|
|
3087
|
+
}
|
|
3088
|
+
);
|
|
3089
|
+
}
|
|
3090
|
+
};
|
|
3091
|
+
|
|
3092
|
+
// ../renderers/src/getWiseRenderers.ts
|
|
3093
|
+
var getWiseRenderers = () => [
|
|
3094
|
+
AddressValidationButtonRenderer_default,
|
|
3095
|
+
AlertRenderer_default,
|
|
3096
|
+
CheckboxInputRenderer_default,
|
|
3097
|
+
BoxRenderer_default,
|
|
3098
|
+
ButtonRenderer_default,
|
|
3099
|
+
ColumnsRenderer_default,
|
|
3100
|
+
DateInputRenderer_default,
|
|
3101
|
+
DecisionRenderer_default,
|
|
3102
|
+
DividerRenderer_default,
|
|
3103
|
+
ExternalConfirmationRenderer_default,
|
|
3104
|
+
FormRenderer_default,
|
|
3105
|
+
FormSectionRenderer_default,
|
|
3106
|
+
HeadingRenderer_default,
|
|
3107
|
+
ImageRenderer_default,
|
|
3108
|
+
InstructionsRenderer_default,
|
|
3109
|
+
IntegerInputRenderer_default,
|
|
3110
|
+
LargeUploadRenderer,
|
|
3111
|
+
ListRenderer_default,
|
|
3112
|
+
LoadingIndicatorRenderer_default,
|
|
3113
|
+
MarkdownRenderer_default,
|
|
3114
|
+
ModalRenderer,
|
|
3115
|
+
ModalLayoutRenderer_default,
|
|
3116
|
+
MultiSelectInputRenderer_default,
|
|
3117
|
+
MultiUploadInputRenderer_default,
|
|
3118
|
+
NumberInputRenderer_default,
|
|
3119
|
+
ParagraphRenderer_default,
|
|
3120
|
+
RepeatableRenderer_default,
|
|
3121
|
+
ReviewRenderer_default,
|
|
3122
|
+
SearchRenderer_default,
|
|
3123
|
+
SelectInputRenderer_default,
|
|
3124
|
+
SectionRenderer_default,
|
|
3125
|
+
StatusListRenderer_default,
|
|
3126
|
+
TabsRenderer,
|
|
3127
|
+
TextInputRenderer_default,
|
|
3128
|
+
UploadInputRenderer,
|
|
3129
|
+
SplashStepRenderer,
|
|
3130
|
+
SplashCelebrationStepRenderer,
|
|
3131
|
+
StepRenderer
|
|
3132
|
+
];
|
|
3133
|
+
|
|
3134
|
+
// ../renderers/src/factories/createReviewRenderer.ts
|
|
3135
|
+
function createReviewRenderer(extensions = {}) {
|
|
3136
|
+
return __spreadProps(__spreadValues({}, ReviewRenderer_default), {
|
|
3137
|
+
extensions: __spreadValues(__spreadValues({}, ReviewRenderer_default.extensions), extensions)
|
|
3138
|
+
});
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
// src/index.ts
|
|
3142
|
+
import { findRendererPropsByType, isValidSchema, JsonSchemaForm } from "@wise/dynamic-flow-client";
|
|
3143
|
+
|
|
3144
|
+
// src/i18n/index.ts
|
|
3145
|
+
import { translations as coreTranslations } from "@wise/dynamic-flow-client";
|
|
3146
|
+
|
|
3147
|
+
// src/i18n/cs.json
|
|
3148
|
+
var cs_default = {
|
|
3149
|
+
"df.wise.ArraySchema.addItem": "Ulo\u017Eit",
|
|
3150
|
+
"df.wise.ArraySchema.addItemTitle": "P\u0159idat polo\u017Eku",
|
|
3151
|
+
"df.wise.ArraySchema.editItem": "Ulo\u017Eit",
|
|
3152
|
+
"df.wise.ArraySchema.maxItemsError": "P\u0159idejte {maxItems} nebo m\xE9n\u011B.",
|
|
3153
|
+
"df.wise.ArraySchema.minItemsError": "P\u0159idejte alespo\u0148 {minItems}.",
|
|
3154
|
+
"df.wise.ArraySchema.removeItem": "Odebrat",
|
|
3155
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "M\u016F\u017Ee to trvat p\xE1r sekund",
|
|
3156
|
+
"df.wise.ControlFeedback.maxLength": "Zadejte {maxLength} nebo m\xE9n\u011B znak\u016F.",
|
|
3157
|
+
"df.wise.ControlFeedback.maximum": "Zadejte \u010D\xEDslo, kter\xE9 je {maximum} nebo men\u0161\xED.",
|
|
3158
|
+
"df.wise.ControlFeedback.maximumDate": "Zadejte datum, kter\xE9 je {maximum} nebo p\u0159edt\xEDm.",
|
|
3159
|
+
"df.wise.ControlFeedback.minLength": "Zadejte alespo\u0148 n\xE1sleduj\xEDc\xED po\u010Det znak\u016F: {minLength}.",
|
|
3160
|
+
"df.wise.ControlFeedback.minimum": "Zadejte \u010D\xEDslo, kter\xE9 je {minimum} nebo vy\u0161\u0161\xED.",
|
|
3161
|
+
"df.wise.ControlFeedback.minimumDate": "Zadejte datum, kter\xE9 je {minimum} nebo potom.",
|
|
3162
|
+
"df.wise.ControlFeedback.pattern": "Zadejte to pros\xEDm ve spr\xE1vn\xE9m form\xE1tu.",
|
|
3163
|
+
"df.wise.ControlFeedback.patternDate": "Zadejte pros\xEDm datum ve spr\xE1vn\xE9m form\xE1tu.",
|
|
3164
|
+
"df.wise.ControlFeedback.required": "Vypl\u0148te pros\xEDm toto pole.",
|
|
3165
|
+
"df.wise.ControlFeedback.type": "Nespr\xE1vn\xFD typ",
|
|
3166
|
+
"df.wise.CopyFeedback.copy": "Zkop\xEDrov\xE1no do schr\xE1nky",
|
|
3167
|
+
"df.wise.CopyFeedback.copyFailed": "Kop\xEDrov\xE1n\xED do schr\xE1nky se nezda\u0159ilo",
|
|
3168
|
+
"df.wise.Decision.all": "V\u0161e",
|
|
3169
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3170
|
+
"df.wise.Decision.noResults": "\u017D\xE1dn\xE9 v\xFDsledky",
|
|
3171
|
+
"df.wise.Decision.popular": "Popul\xE1rn\xED",
|
|
3172
|
+
"df.wise.Decision.recent": "Ned\xE1vn\xE9",
|
|
3173
|
+
"df.wise.Decision.results": "V\xFDsledky hled\xE1n\xED",
|
|
3174
|
+
"df.wise.DynamicParagraph.copied": "Zkop\xEDrov\xE1no do schr\xE1nky",
|
|
3175
|
+
"df.wise.DynamicParagraph.copy": "Kop\xEDrovat",
|
|
3176
|
+
"df.wise.ErrorBoundary.errorAlert": "N\u011Bco se pokazilo.",
|
|
3177
|
+
"df.wise.ErrorBoundary.retry": "Zkusit znovu",
|
|
3178
|
+
"df.wise.ExternalConfirmation.cancel": "Zru\u0161it",
|
|
3179
|
+
"df.wise.ExternalConfirmation.description": "Potvr\u010Fte, \u017Ee chcete otev\u0159\xEDt **{origin}** v nov\xE9 kart\u011B prohl\xED\u017Ee\u010De.",
|
|
3180
|
+
"df.wise.ExternalConfirmation.open": "Otev\u0159\xEDt v nov\xE9 kart\u011B",
|
|
3181
|
+
"df.wise.ExternalConfirmation.title": "Potvr\u010Fte",
|
|
3182
|
+
"df.wise.Help.ariaLabel": "Pro v\xEDce informac\xED klikn\u011Bte sem.",
|
|
3183
|
+
"df.wise.MultiSelect.summary": "{first} a {count} dal\u0161\xED(ch)",
|
|
3184
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Je n\xE1m l\xEDto, ale tento soubor je p\u0159\xEDli\u0161 velk\xFD. Nahrajte pros\xEDm men\u0161\xED soubor.",
|
|
3185
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Nahrajte {maxItems} nebo m\xE9n\u011B soubor\u016F.",
|
|
3186
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Nahrajte pros\xEDm alespo\u0148 n\xE1sleduj\xEDc\xED po\u010Det soubor\u016F: {minItems}.",
|
|
3187
|
+
"df.wise.PersistAsyncSchema.genericError": "N\u011Bco se pokazilo. Zkuste to pros\xEDm znovu.",
|
|
3188
|
+
"df.wise.SearchLayout.loading": "Na\u010D\xEDt\xE1n\xED..."
|
|
3189
|
+
};
|
|
3190
|
+
|
|
3191
|
+
// src/i18n/de.json
|
|
3192
|
+
var de_default = {
|
|
3193
|
+
"df.wise.ArraySchema.addItem": "Speichern",
|
|
3194
|
+
"df.wise.ArraySchema.addItemTitle": "Artikel hinzuf\xFCgen",
|
|
3195
|
+
"df.wise.ArraySchema.editItem": "Speichern",
|
|
3196
|
+
"df.wise.ArraySchema.maxItemsError": "Bitte f\xFCge {maxItems} oder weniger hinzu.",
|
|
3197
|
+
"df.wise.ArraySchema.minItemsError": "Bitte f\xFCge mindestens {minItems} hinzu.",
|
|
3198
|
+
"df.wise.ArraySchema.removeItem": "Entfernen",
|
|
3199
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Dies kann ein paar Sekunden dauern",
|
|
3200
|
+
"df.wise.ControlFeedback.maxLength": "Bitte gib nicht mehr als {maxLength} Zeichen ein.",
|
|
3201
|
+
"df.wise.ControlFeedback.maximum": "Bitte gib eine Zahl ein, die {maximum} oder weniger betr\xE4gt.",
|
|
3202
|
+
"df.wise.ControlFeedback.maximumDate": "Bitte gib ein Datum ein, das am oder vor dem {maximum} liegt.",
|
|
3203
|
+
"df.wise.ControlFeedback.minLength": "Bitte gib mindestens {minLength} Zeichen ein.",
|
|
3204
|
+
"df.wise.ControlFeedback.minimum": "Bitte gib eine Zahl ein, die {minimum} oder mehr betr\xE4gt.",
|
|
3205
|
+
"df.wise.ControlFeedback.minimumDate": "Bitte gib ein Datum ein, das am oder nach dem {minimum} liegt.",
|
|
3206
|
+
"df.wise.ControlFeedback.pattern": "Bitte gib die Angabe im richtigen Format ein.",
|
|
3207
|
+
"df.wise.ControlFeedback.patternDate": "Bitte gib ein Datum im richtigen Format ein.",
|
|
3208
|
+
"df.wise.ControlFeedback.required": "Bitte f\xFClle dieses Feld aus.",
|
|
3209
|
+
"df.wise.ControlFeedback.type": "Falscher Typ",
|
|
3210
|
+
"df.wise.CopyFeedback.copy": "In Zwischenablage kopiert",
|
|
3211
|
+
"df.wise.CopyFeedback.copyFailed": "Kopieren in Zwischenablage fehlgeschlagen",
|
|
3212
|
+
"df.wise.Decision.all": "Alle",
|
|
3213
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3214
|
+
"df.wise.Decision.noResults": "Keine Ergebnisse",
|
|
3215
|
+
"df.wise.Decision.popular": "Beliebt",
|
|
3216
|
+
"df.wise.Decision.recent": "Neu",
|
|
3217
|
+
"df.wise.Decision.results": "Suchergebnisse",
|
|
3218
|
+
"df.wise.DynamicParagraph.copied": "In Zwischenablage kopiert",
|
|
3219
|
+
"df.wise.DynamicParagraph.copy": "Kopieren",
|
|
3220
|
+
"df.wise.ErrorBoundary.errorAlert": "Da ist etwas schiefgegangen.",
|
|
3221
|
+
"df.wise.ErrorBoundary.retry": "Erneut versuchen",
|
|
3222
|
+
"df.wise.ExternalConfirmation.cancel": "Abbrechen",
|
|
3223
|
+
"df.wise.ExternalConfirmation.description": "Bitte best\xE4tige, dass du **{origin}** in einem neuen Browser-Tab \xF6ffnen m\xF6chtest.",
|
|
3224
|
+
"df.wise.ExternalConfirmation.open": "In neuem Tab \xF6ffnen",
|
|
3225
|
+
"df.wise.ExternalConfirmation.title": "Bitte best\xE4tigen",
|
|
3226
|
+
"df.wise.Help.ariaLabel": "Klicke hier f\xFCr mehr Informationen.",
|
|
3227
|
+
"df.wise.MultiSelect.summary": "{first} und {count} weitere",
|
|
3228
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Diese Datei ist leider zu gro\xDF. Bitte lade eine kleinere Datei hoch.",
|
|
3229
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Bitte lade {maxItems} oder weniger Dateien hoch.",
|
|
3230
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Bitte lade mindestens {minItems} Datei(en) hoch.",
|
|
3231
|
+
"df.wise.PersistAsyncSchema.genericError": "Da ist etwas schiefgegangen. Versuche es bitte nochmal.",
|
|
3232
|
+
"df.wise.SearchLayout.loading": "L\xE4dt..."
|
|
3233
|
+
};
|
|
3234
|
+
|
|
3235
|
+
// src/i18n/en.json
|
|
3236
|
+
var en_default = {
|
|
3237
|
+
"df.wise.ArraySchema.addItem": "Save",
|
|
3238
|
+
"df.wise.ArraySchema.addItemTitle": "Add Item",
|
|
3239
|
+
"df.wise.ArraySchema.editItem": "Save",
|
|
3240
|
+
"df.wise.ArraySchema.maxItemsError": "Please add {maxItems} or fewer.",
|
|
3241
|
+
"df.wise.ArraySchema.minItemsError": "Please add at least {minItems}.",
|
|
3242
|
+
"df.wise.ArraySchema.removeItem": "Remove",
|
|
3243
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "This might take a few seconds",
|
|
3244
|
+
"df.wise.ControlFeedback.maxLength": "Please enter {maxLength} or fewer characters.",
|
|
3245
|
+
"df.wise.ControlFeedback.maximum": "Please enter a number that's {maximum} or less.",
|
|
3246
|
+
"df.wise.ControlFeedback.maximumDate": "Please enter a date that's on or before {maximum}.",
|
|
3247
|
+
"df.wise.ControlFeedback.minLength": "Please enter at least {minLength} characters.",
|
|
3248
|
+
"df.wise.ControlFeedback.minimum": "Please enter a number that's {minimum} or more.",
|
|
3249
|
+
"df.wise.ControlFeedback.minimumDate": "Please enter a date that's on or after {minimum}.",
|
|
3250
|
+
"df.wise.ControlFeedback.pattern": "Please enter this in the correct format.",
|
|
3251
|
+
"df.wise.ControlFeedback.patternDate": "Please enter a date in the corrrect format.",
|
|
3252
|
+
"df.wise.ControlFeedback.required": "Please fill out this field.",
|
|
3253
|
+
"df.wise.ControlFeedback.type": "Incorrect type",
|
|
3254
|
+
"df.wise.CopyFeedback.copy": "Copied to clipboard",
|
|
3255
|
+
"df.wise.CopyFeedback.copyFailed": "Failed to copy to clipboard",
|
|
3256
|
+
"df.wise.Decision.all": "All",
|
|
3257
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3258
|
+
"df.wise.Decision.noResults": "No results",
|
|
3259
|
+
"df.wise.Decision.popular": "Popular",
|
|
3260
|
+
"df.wise.Decision.recent": "Recent",
|
|
3261
|
+
"df.wise.Decision.results": "Search results",
|
|
3262
|
+
"df.wise.DynamicParagraph.copied": "Copied to clipboard",
|
|
3263
|
+
"df.wise.DynamicParagraph.copy": "Copy",
|
|
3264
|
+
"df.wise.ErrorBoundary.errorAlert": "Something went wrong.",
|
|
3265
|
+
"df.wise.ErrorBoundary.retry": "Retry",
|
|
3266
|
+
"df.wise.ExternalConfirmation.cancel": "Cancel",
|
|
3267
|
+
"df.wise.ExternalConfirmation.description": "Please confirm you want to open **{origin}** in a new browser tab.",
|
|
3268
|
+
"df.wise.ExternalConfirmation.open": "Open in new tab",
|
|
3269
|
+
"df.wise.ExternalConfirmation.title": "Please confirm",
|
|
3270
|
+
"df.wise.Help.ariaLabel": "Click here for more info.",
|
|
3271
|
+
"df.wise.MultiSelect.summary": "{first} and {count} more",
|
|
3272
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Sorry, that file is too big. Please upload a smaller file.",
|
|
3273
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Please upload {maxItems} or fewer files.",
|
|
3274
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Please upload at least {minItems} file(s).",
|
|
3275
|
+
"df.wise.PersistAsyncSchema.genericError": "Something went wrong, please try again.",
|
|
3276
|
+
"df.wise.SearchLayout.loading": "Loading..."
|
|
3277
|
+
};
|
|
3278
|
+
|
|
3279
|
+
// src/i18n/es.json
|
|
3280
|
+
var es_default = {
|
|
3281
|
+
"df.wise.ArraySchema.addItem": "Guardar",
|
|
3282
|
+
"df.wise.ArraySchema.addItemTitle": "A\xF1adir elemento",
|
|
3283
|
+
"df.wise.ArraySchema.editItem": "Guardar",
|
|
3284
|
+
"df.wise.ArraySchema.maxItemsError": "A\xF1ade {maxItems} o menos.",
|
|
3285
|
+
"df.wise.ArraySchema.minItemsError": "A\xF1ade al menos {minItems}.",
|
|
3286
|
+
"df.wise.ArraySchema.removeItem": "Eliminar",
|
|
3287
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Esto puede tardar unos segundos",
|
|
3288
|
+
"df.wise.ControlFeedback.maxLength": "Introduce {maxLength} caracteres o menos.",
|
|
3289
|
+
"df.wise.ControlFeedback.maximum": "Introduce una cifra igual o inferior a {maximum}.",
|
|
3290
|
+
"df.wise.ControlFeedback.maximumDate": "Introduce una fecha que sea igual o anterior al {maximum}.",
|
|
3291
|
+
"df.wise.ControlFeedback.minLength": "Introduce al menos {minLength} caracteres.",
|
|
3292
|
+
"df.wise.ControlFeedback.minimum": "Introduce una cifra igual o inferior a {minimum}.",
|
|
3293
|
+
"df.wise.ControlFeedback.minimumDate": "Introduce una fecha que sea igual o posterior al {minimum}.",
|
|
3294
|
+
"df.wise.ControlFeedback.pattern": "Utiliza el formato correcto.",
|
|
3295
|
+
"df.wise.ControlFeedback.patternDate": "Introduce la fecha en un formato correcto.",
|
|
3296
|
+
"df.wise.ControlFeedback.required": "Completa este campo.",
|
|
3297
|
+
"df.wise.ControlFeedback.type": "Tipo incorrecto",
|
|
3298
|
+
"df.wise.CopyFeedback.copy": "Copiado al portapapeles",
|
|
3299
|
+
"df.wise.CopyFeedback.copyFailed": "Error al copiar al portapapeles",
|
|
3300
|
+
"df.wise.Decision.all": "Todas",
|
|
3301
|
+
"df.wise.Decision.filterPlaceholder": "Empieza a escribir para buscar",
|
|
3302
|
+
"df.wise.Decision.noResults": "No hay resultados",
|
|
3303
|
+
"df.wise.Decision.popular": "Populares",
|
|
3304
|
+
"df.wise.Decision.recent": "Recientes",
|
|
3305
|
+
"df.wise.Decision.results": "Resultados de b\xFAsqueda",
|
|
3306
|
+
"df.wise.DynamicParagraph.copied": "Copiado al portapapeles",
|
|
3307
|
+
"df.wise.DynamicParagraph.copy": "Copiar",
|
|
3308
|
+
"df.wise.ErrorBoundary.errorAlert": "Ha habido un error.",
|
|
3309
|
+
"df.wise.ErrorBoundary.retry": "Reintentar",
|
|
3310
|
+
"df.wise.ExternalConfirmation.cancel": "Cancelar",
|
|
3311
|
+
"df.wise.ExternalConfirmation.description": "Confirma que quieres abrir **{origin}** en una nueva pesta\xF1a del navegador.",
|
|
3312
|
+
"df.wise.ExternalConfirmation.open": "Abrir en nueva pesta\xF1a",
|
|
3313
|
+
"df.wise.ExternalConfirmation.title": "Por favor, confirma",
|
|
3314
|
+
"df.wise.Help.ariaLabel": "Haz clic aqu\xED para obtener m\xE1s informaci\xF3n.",
|
|
3315
|
+
"df.wise.MultiSelect.summary": "{first} y {count} m\xE1s",
|
|
3316
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Lo sentimos, el archivo pesa demasiado. Sube uno m\xE1s peque\xF1o.",
|
|
3317
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Sube {maxItems} o menos archivos.",
|
|
3318
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Sube al menos {minItems} archivo(s).",
|
|
3319
|
+
"df.wise.PersistAsyncSchema.genericError": "Ha habido un error. Int\xE9ntalo de nuevo.",
|
|
3320
|
+
"df.wise.SearchLayout.loading": "Cargando..."
|
|
3321
|
+
};
|
|
3322
|
+
|
|
3323
|
+
// src/i18n/fr.json
|
|
3324
|
+
var fr_default = {
|
|
3325
|
+
"df.wise.ArraySchema.addItem": "Enregistrer",
|
|
3326
|
+
"df.wise.ArraySchema.addItemTitle": "Ajouter un \xE9l\xE9ment",
|
|
3327
|
+
"df.wise.ArraySchema.editItem": "Enregistrer",
|
|
3328
|
+
"df.wise.ArraySchema.maxItemsError": "Veuillez ajouter {maxItems} ou moins.",
|
|
3329
|
+
"df.wise.ArraySchema.minItemsError": "Veuillez ajouter au moins {minItems}.",
|
|
3330
|
+
"df.wise.ArraySchema.removeItem": "Supprimer",
|
|
3331
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Patientez quelques secondes",
|
|
3332
|
+
"df.wise.ControlFeedback.maxLength": "Veuillez saisir {maxLength} caract\xE8res ou moins.",
|
|
3333
|
+
"df.wise.ControlFeedback.maximum": "Veuillez saisir un nombre inf\xE9rieur ou \xE9gal \xE0 {maximum}.",
|
|
3334
|
+
"df.wise.ControlFeedback.maximumDate": "Veuillez saisir une date \xE9gale ou ant\xE9rieure au {maximum}.",
|
|
3335
|
+
"df.wise.ControlFeedback.minLength": "Veuillez saisir au moins {minLength} caract\xE8res.",
|
|
3336
|
+
"df.wise.ControlFeedback.minimum": "Veuillez saisir un nombre sup\xE9rieur ou \xE9gal \xE0 {minimum}.",
|
|
3337
|
+
"df.wise.ControlFeedback.minimumDate": "Veuillez saisir une date \xE9gale ou post\xE9rieure au {minimum}.",
|
|
3338
|
+
"df.wise.ControlFeedback.pattern": "Veuillez saisir les informations dans le bon format.",
|
|
3339
|
+
"df.wise.ControlFeedback.patternDate": "Veuillez saisir une date au format correct.",
|
|
3340
|
+
"df.wise.ControlFeedback.required": "Champ obligatoire.",
|
|
3341
|
+
"df.wise.ControlFeedback.type": "Type incorrect",
|
|
3342
|
+
"df.wise.CopyFeedback.copy": "Copi\xE9 dans le presse-papier",
|
|
3343
|
+
"df.wise.CopyFeedback.copyFailed": "Impossible de copier dans le presse-papier",
|
|
3344
|
+
"df.wise.Decision.all": "Toutes",
|
|
3345
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3346
|
+
"df.wise.Decision.noResults": "Aucun r\xE9sultat",
|
|
3347
|
+
"df.wise.Decision.popular": "Populaires",
|
|
3348
|
+
"df.wise.Decision.recent": "R\xE9cents",
|
|
3349
|
+
"df.wise.Decision.results": "R\xE9sultats de recherche",
|
|
3350
|
+
"df.wise.DynamicParagraph.copied": "Copi\xE9 dans le presse-papier",
|
|
3351
|
+
"df.wise.DynamicParagraph.copy": "Copier",
|
|
3352
|
+
"df.wise.ErrorBoundary.errorAlert": "Une erreur s'est produite.",
|
|
3353
|
+
"df.wise.ErrorBoundary.retry": "R\xE9essayer",
|
|
3354
|
+
"df.wise.ExternalConfirmation.cancel": "Annuler",
|
|
3355
|
+
"df.wise.ExternalConfirmation.description": "Veuillez confirmer que vous souhaitez ouvrir **{origin}** dans un nouvel onglet.",
|
|
3356
|
+
"df.wise.ExternalConfirmation.open": "Ouvrir dans un nouvel onglet",
|
|
3357
|
+
"df.wise.ExternalConfirmation.title": "Veuillez confirmer",
|
|
3358
|
+
"df.wise.Help.ariaLabel": "Cliquez ici pour plus d'informations.",
|
|
3359
|
+
"df.wise.MultiSelect.summary": "{first} et {count} de plus",
|
|
3360
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Nous sommes d\xE9sol\xE9s, ce fichier est trop volumineux. Veuillez t\xE9l\xE9charger un fichier plus petit.",
|
|
3361
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Veuillez t\xE9l\xE9charger {maxItems} fichiers ou moins.",
|
|
3362
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Veuillez t\xE9l\xE9charger au moins {minItems} fichier(s).",
|
|
3363
|
+
"df.wise.PersistAsyncSchema.genericError": "Une erreur s'est produite, veuillez r\xE9essayer.",
|
|
3364
|
+
"df.wise.SearchLayout.loading": "Chargement..."
|
|
3365
|
+
};
|
|
3366
|
+
|
|
3367
|
+
// src/i18n/hu.json
|
|
3368
|
+
var hu_default = {
|
|
3369
|
+
"df.wise.ArraySchema.addItem": "Ment\xE9s",
|
|
3370
|
+
"df.wise.ArraySchema.addItemTitle": "Elem hozz\xE1ad\xE1sa",
|
|
3371
|
+
"df.wise.ArraySchema.editItem": "Ment\xE9s",
|
|
3372
|
+
"df.wise.ArraySchema.maxItemsError": "K\xE9r\xFCnk, {maxItems} vagy ann\xE1l kevesebb t\xE9telt adj meg.",
|
|
3373
|
+
"df.wise.ArraySchema.minItemsError": "K\xE9r\xFCnk, legal\xE1bb {minItems} t\xE9telt adj meg.",
|
|
3374
|
+
"df.wise.ArraySchema.removeItem": "Elt\xE1vol\xEDt\xE1s",
|
|
3375
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Ez eltarthat n\xE9h\xE1ny m\xE1sodpercig",
|
|
3376
|
+
"df.wise.ControlFeedback.maxLength": "K\xE9r\xFCnk, legfeljebb {maxLength} karaktert adj meg.",
|
|
3377
|
+
"df.wise.ControlFeedback.maximum": "K\xE9r\xFCnk, add meg ezt vagy egy enn\xE9l kisebb sz\xE1mot: {maximum}.",
|
|
3378
|
+
"df.wise.ControlFeedback.maximumDate": "K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {maximum} napj\xE1val, vagy egy enn\xE9l kor\xE1bbit.",
|
|
3379
|
+
"df.wise.ControlFeedback.minLength": "K\xE9r\xFCnk, legal\xE1bb {minLength} karaktert adj meg.",
|
|
3380
|
+
"df.wise.ControlFeedback.minimum": "K\xE9r\xFCnk add meg ezt vagy egy enn\xE9l nagyobb sz\xE1mot: {minimum}.",
|
|
3381
|
+
"df.wise.ControlFeedback.minimumDate": "K\xE9r\xFCnk, adj meg egy d\xE1tumot, ami megegyezik {minimum} napj\xE1val, vagy egy enn\xE9l k\xE9s\u0151bbit.",
|
|
3382
|
+
"df.wise.ControlFeedback.pattern": "Helytelen form\xE1tum",
|
|
3383
|
+
"df.wise.ControlFeedback.patternDate": "K\xE9r\xFCnk, hogy a d\xE1tumot helyes form\xE1tumban add meg.",
|
|
3384
|
+
"df.wise.ControlFeedback.required": "K\xE9r\xFCnk, t\xF6ltsd ki ezt a mez\u0151t.",
|
|
3385
|
+
"df.wise.ControlFeedback.type": "Helytelen t\xEDpus",
|
|
3386
|
+
"df.wise.CopyFeedback.copy": "V\xE1g\xF3lapra m\xE1solva",
|
|
3387
|
+
"df.wise.CopyFeedback.copyFailed": "Nem siker\xFClt a v\xE1g\xF3lapra m\xE1solni",
|
|
3388
|
+
"df.wise.Decision.all": "\xD6sszes",
|
|
3389
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3390
|
+
"df.wise.Decision.noResults": "Nincs tal\xE1lat",
|
|
3391
|
+
"df.wise.Decision.popular": "N\xE9pszer\u0171",
|
|
3392
|
+
"df.wise.Decision.recent": "Legut\xF3bbi",
|
|
3393
|
+
"df.wise.Decision.results": "Keres\xE9si eredm\xE9nyek",
|
|
3394
|
+
"df.wise.DynamicParagraph.copied": "V\xE1g\xF3lapra m\xE1solva",
|
|
3395
|
+
"df.wise.DynamicParagraph.copy": "M\xE1sol\xE1s",
|
|
3396
|
+
"df.wise.ErrorBoundary.errorAlert": "Valami hiba t\xF6rt\xE9nt.",
|
|
3397
|
+
"df.wise.ErrorBoundary.retry": "\xDAjra",
|
|
3398
|
+
"df.wise.ExternalConfirmation.cancel": "M\xE9gsem",
|
|
3399
|
+
"df.wise.ExternalConfirmation.description": "K\xE9r\xFCnk, er\u0151s\xEDtsd meg, hogy a(z) **{origin}** alkalmaz\xE1st egy \xFAj b\xF6ng\xE9sz\u0151lapon szeretn\xE9d megnyitni.",
|
|
3400
|
+
"df.wise.ExternalConfirmation.open": "Megnyit\xE1s \xFAj lapon",
|
|
3401
|
+
"df.wise.ExternalConfirmation.title": "Meger\u0151s\xEDt\xE9s",
|
|
3402
|
+
"df.wise.Help.ariaLabel": "Kattints ide tov\xE1bbi inform\xE1ci\xF3\xE9rt.",
|
|
3403
|
+
"df.wise.MultiSelect.summary": "{first} \xE9s tov\xE1bbi {count}",
|
|
3404
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Sajnos ez a f\xE1jl t\xFAl nagy. K\xE9r\xFCnk, t\xF6lts fel egy kisebb f\xE1jlt.",
|
|
3405
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "K\xE9r\xFCnk, hogy legfeljebb {maxItems} f\xE1jlt t\xF6lts fel.",
|
|
3406
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "K\xE9r\xFCnk, hogy legal\xE1bb {minItems} f\xE1jlt t\xF6lts fel.",
|
|
3407
|
+
"df.wise.PersistAsyncSchema.genericError": "Valami hiba t\xF6rt\xE9nt. K\xE9r\xFCnk, pr\xF3b\xE1ld \xFAjra.",
|
|
3408
|
+
"df.wise.SearchLayout.loading": "Bet\xF6lt\xE9s..."
|
|
3409
|
+
};
|
|
3410
|
+
|
|
3411
|
+
// src/i18n/id.json
|
|
3412
|
+
var id_default = {
|
|
3413
|
+
"df.wise.ArraySchema.addItem": "Simpan",
|
|
3414
|
+
"df.wise.ArraySchema.addItemTitle": "Tambahkan Item",
|
|
3415
|
+
"df.wise.ArraySchema.editItem": "Simpan",
|
|
3416
|
+
"df.wise.ArraySchema.maxItemsError": "Harap tambahkan {maxItems} atau kurang.",
|
|
3417
|
+
"df.wise.ArraySchema.minItemsError": "Harap tambahkan setidaknya {minItems}.",
|
|
3418
|
+
"df.wise.ArraySchema.removeItem": "Hapus",
|
|
3419
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "This might take a few seconds",
|
|
3420
|
+
"df.wise.ControlFeedback.maxLength": "Harap masukkan {maxLength} karakter atau kurang.",
|
|
3421
|
+
"df.wise.ControlFeedback.maximum": "Harap masukkan angka paling besar {maximum} atau kurang dari itu.",
|
|
3422
|
+
"df.wise.ControlFeedback.maximumDate": "Harap masukkan tanggal pada atau sebelum {maximum}.",
|
|
3423
|
+
"df.wise.ControlFeedback.minLength": "Harap masukkan setidaknya {minLength} karakter.",
|
|
3424
|
+
"df.wise.ControlFeedback.minimum": "Harap masukkan angka paling kecil {minimum} atau lebih dari itu.",
|
|
3425
|
+
"df.wise.ControlFeedback.minimumDate": "Harap masukkan tanggal pada atau setelah {minimum}.",
|
|
3426
|
+
"df.wise.ControlFeedback.pattern": "Mohon masukkan ini dalam format yang benar.",
|
|
3427
|
+
"df.wise.ControlFeedback.patternDate": "Harap masukkan tanggal dalam format yang benar.",
|
|
3428
|
+
"df.wise.ControlFeedback.required": "Harap isi kolom ini.",
|
|
3429
|
+
"df.wise.ControlFeedback.type": "Tipe salah",
|
|
3430
|
+
"df.wise.CopyFeedback.copy": "Disalin ke clipboard",
|
|
3431
|
+
"df.wise.CopyFeedback.copyFailed": "Gagal menyalin ke clipboard",
|
|
3432
|
+
"df.wise.Decision.all": "Semua",
|
|
3433
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3434
|
+
"df.wise.Decision.noResults": "Tidak ada hasil",
|
|
3435
|
+
"df.wise.Decision.popular": "Populer",
|
|
3436
|
+
"df.wise.Decision.recent": "Terbaru",
|
|
3437
|
+
"df.wise.Decision.results": "Hasil pencarian",
|
|
3438
|
+
"df.wise.DynamicParagraph.copied": "Disalin ke clipboard",
|
|
3439
|
+
"df.wise.DynamicParagraph.copy": "Salin",
|
|
3440
|
+
"df.wise.ErrorBoundary.errorAlert": "Terjadi kesalahan.",
|
|
3441
|
+
"df.wise.ErrorBoundary.retry": "Coba lagi",
|
|
3442
|
+
"df.wise.ExternalConfirmation.cancel": "Batalkan",
|
|
3443
|
+
"df.wise.ExternalConfirmation.description": "Harap konfirmasikan bahwa Anda ingin membuka **{origin}** di tab browser baru.",
|
|
3444
|
+
"df.wise.ExternalConfirmation.open": "Buka di tab baru",
|
|
3445
|
+
"df.wise.ExternalConfirmation.title": "Harap konfirmasi",
|
|
3446
|
+
"df.wise.Help.ariaLabel": "Klik di sini untuk info selengkapnya.",
|
|
3447
|
+
"df.wise.MultiSelect.summary": "{first} dan {count} lagi",
|
|
3448
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Maaf, file Anda terlalu besar. Silakan unggah file yang lebih kecil.",
|
|
3449
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Harap unggah {maxItems} file atau kurang.",
|
|
3450
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Harap unggah sedikitnya {minItems} file.",
|
|
3451
|
+
"df.wise.PersistAsyncSchema.genericError": "Terjadi kesalahan, mohon coba lagi.",
|
|
3452
|
+
"df.wise.SearchLayout.loading": "Memuat ..."
|
|
3453
|
+
};
|
|
3454
|
+
|
|
3455
|
+
// src/i18n/it.json
|
|
3456
|
+
var it_default = {
|
|
3457
|
+
"df.wise.ArraySchema.addItem": "Salva",
|
|
3458
|
+
"df.wise.ArraySchema.addItemTitle": "Aggiungi elemento",
|
|
3459
|
+
"df.wise.ArraySchema.editItem": "Salva",
|
|
3460
|
+
"df.wise.ArraySchema.maxItemsError": "Aggiungi al massimo {maxItems}.",
|
|
3461
|
+
"df.wise.ArraySchema.minItemsError": "Aggiungi almeno {minItems}.",
|
|
3462
|
+
"df.wise.ArraySchema.removeItem": "Rimuovi",
|
|
3463
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Potrebbero volerci un paio di secondi",
|
|
3464
|
+
"df.wise.ControlFeedback.maxLength": "Inserisci un massimo di {maxLength} caratteri.",
|
|
3465
|
+
"df.wise.ControlFeedback.maximum": "Inserisci un numero uguale o inferiore a {maximum}.",
|
|
3466
|
+
"df.wise.ControlFeedback.maximumDate": "Inserisci una data corrispondente o precedente al {maximum}.",
|
|
3467
|
+
"df.wise.ControlFeedback.minLength": "Inserisci almeno {minLength} caratteri.",
|
|
3468
|
+
"df.wise.ControlFeedback.minimum": "Inserisci un numero uguale o superiore a {minimum}.",
|
|
3469
|
+
"df.wise.ControlFeedback.minimumDate": "Inserisci una data corrispondente o successiva al {minimum}.",
|
|
3470
|
+
"df.wise.ControlFeedback.pattern": "Inseriscilo in un formato corretto.",
|
|
3471
|
+
"df.wise.ControlFeedback.patternDate": "Inserisci la data in un formato corretto.",
|
|
3472
|
+
"df.wise.ControlFeedback.required": "Compila questo campo.",
|
|
3473
|
+
"df.wise.ControlFeedback.type": "Tipo errato",
|
|
3474
|
+
"df.wise.CopyFeedback.copy": "Copiato negli appunti",
|
|
3475
|
+
"df.wise.CopyFeedback.copyFailed": "Impossibile copiare negli appunti",
|
|
3476
|
+
"df.wise.Decision.all": "Tutte",
|
|
3477
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3478
|
+
"df.wise.Decision.noResults": "Nessun risultato",
|
|
3479
|
+
"df.wise.Decision.popular": "Popolari",
|
|
3480
|
+
"df.wise.Decision.recent": "Recenti",
|
|
3481
|
+
"df.wise.Decision.results": "Risultati della ricerca",
|
|
3482
|
+
"df.wise.DynamicParagraph.copied": "Copiato negli appunti",
|
|
3483
|
+
"df.wise.DynamicParagraph.copy": "Copia",
|
|
3484
|
+
"df.wise.ErrorBoundary.errorAlert": "Qualcosa non ha funzionato.",
|
|
3485
|
+
"df.wise.ErrorBoundary.retry": "Riprova",
|
|
3486
|
+
"df.wise.ExternalConfirmation.cancel": "Annulla",
|
|
3487
|
+
"df.wise.ExternalConfirmation.description": "Conferma di voler aprire **{origin}** in una nuova scheda del browser.",
|
|
3488
|
+
"df.wise.ExternalConfirmation.open": "Apri in una nuova scheda",
|
|
3489
|
+
"df.wise.ExternalConfirmation.title": "Conferma",
|
|
3490
|
+
"df.wise.Help.ariaLabel": "Clicca qui per maggiori informazioni.",
|
|
3491
|
+
"df.wise.MultiSelect.summary": "{first} e altri {count}",
|
|
3492
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Spiacenti, il file \xE8 troppo grande. Carica un file di dimensioni inferiori.",
|
|
3493
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Carica al massimo {maxItems} file.",
|
|
3494
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Carica almeno {minItems} file.",
|
|
3495
|
+
"df.wise.PersistAsyncSchema.genericError": "Qualcosa \xE8 andato storto. Riprova.",
|
|
3496
|
+
"df.wise.SearchLayout.loading": "Caricamento..."
|
|
3497
|
+
};
|
|
3498
|
+
|
|
3499
|
+
// src/i18n/ja.json
|
|
3500
|
+
var ja_default = {
|
|
3501
|
+
"df.wise.ArraySchema.addItem": "\u4FDD\u5B58\u3059\u308B",
|
|
3502
|
+
"df.wise.ArraySchema.addItemTitle": "\u30A2\u30A4\u30C6\u30E0\u3092\u8FFD\u52A0\u3059\u308B",
|
|
3503
|
+
"df.wise.ArraySchema.editItem": "\u4FDD\u5B58\u3059\u308B",
|
|
3504
|
+
"df.wise.ArraySchema.maxItemsError": "{maxItems}\u30A2\u30A4\u30C6\u30E0\u4EE5\u4E0B\u3092\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3505
|
+
"df.wise.ArraySchema.minItemsError": "{minItems}\u30A2\u30A4\u30C6\u30E0\u4EE5\u4E0A\u3092\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3506
|
+
"df.wise.ArraySchema.removeItem": "\u524A\u9664\u3059\u308B",
|
|
3507
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "\u6570\u79D2\u304B\u304B\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059",
|
|
3508
|
+
"df.wise.ControlFeedback.maxLength": "{maxLength}\u6587\u5B57\u4EE5\u4E0B\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3509
|
+
"df.wise.ControlFeedback.maximum": "{maximum}\u4EE5\u4E0B\u306E\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3510
|
+
"df.wise.ControlFeedback.maximumDate": "{maximum}\u307E\u305F\u306F\u305D\u308C\u4EE5\u524D\u306E\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3511
|
+
"df.wise.ControlFeedback.minLength": "{minLength}\u6587\u5B57\u4EE5\u4E0A\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3512
|
+
"df.wise.ControlFeedback.minimum": "{minimum}\u4EE5\u4E0A\u306E\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3513
|
+
"df.wise.ControlFeedback.minimumDate": "{minimum}\u307E\u305F\u306F\u305D\u308C\u4EE5\u964D\u306E\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3514
|
+
"df.wise.ControlFeedback.pattern": "\u6B63\u3057\u3044\u5F62\u5F0F\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3515
|
+
"df.wise.ControlFeedback.patternDate": "\u6B63\u3057\u3044\u5F62\u5F0F\u3067\u65E5\u4ED8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3516
|
+
"df.wise.ControlFeedback.required": "\u3053\u306E\u9805\u76EE\u306F\u5165\u529B\u5FC5\u9808\u3067\u3059\u3002",
|
|
3517
|
+
"df.wise.ControlFeedback.type": "\u4E0D\u6B63\u306A\u30BF\u30A4\u30D7",
|
|
3518
|
+
"df.wise.CopyFeedback.copy": "\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u3078\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F",
|
|
3519
|
+
"df.wise.CopyFeedback.copyFailed": "\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u306B\u30B3\u30D4\u30FC\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F",
|
|
3520
|
+
"df.wise.Decision.all": "\u3059\u3079\u3066",
|
|
3521
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3522
|
+
"df.wise.Decision.noResults": "\u691C\u7D22\u7D50\u679C\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
3523
|
+
"df.wise.Decision.popular": "\u4EBA\u6C17",
|
|
3524
|
+
"df.wise.Decision.recent": "\u6700\u8FD1",
|
|
3525
|
+
"df.wise.Decision.results": "\u691C\u7D22\u7D50\u679C",
|
|
3526
|
+
"df.wise.DynamicParagraph.copied": "\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u3078\u30B3\u30D4\u30FC\u3057\u307E\u3057\u305F",
|
|
3527
|
+
"df.wise.DynamicParagraph.copy": "\u30B3\u30D4\u30FC\u3059\u308B",
|
|
3528
|
+
"df.wise.ErrorBoundary.errorAlert": "\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002",
|
|
3529
|
+
"df.wise.ErrorBoundary.retry": "\u3084\u308A\u76F4\u3059",
|
|
3530
|
+
"df.wise.ExternalConfirmation.cancel": "\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B",
|
|
3531
|
+
"df.wise.ExternalConfirmation.description": "\u65B0\u3057\u3044\u30D6\u30E9\u30A6\u30B6\u30BF\u30D6\u3067**{origin}**\u3092\u958B\u304F\u3053\u3068\u3092\u627F\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3532
|
+
"df.wise.ExternalConfirmation.open": "\u65B0\u3057\u3044\u30BF\u30D6\u3067\u958B\u304F",
|
|
3533
|
+
"df.wise.ExternalConfirmation.title": "\u627F\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
3534
|
+
"df.wise.Help.ariaLabel": "\u8A73\u7D30\u306F\u3053\u3061\u3089\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3535
|
+
"df.wise.MultiSelect.summary": "{first}\u3068\u305D\u306E\u4ED6{count}",
|
|
3536
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u5927\u5909\u7533\u3057\u8A33\u3054\u3056\u3044\u307E\u305B\u3093\u304C\u3001\u30D5\u30A1\u30A4\u30EB\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002\u3053\u308C\u3088\u308A\u5C0F\u3055\u3044\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3537
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "{maxItems}\u500B\u4EE5\u4E0B\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3538
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "{minItems}\u500B\u4EE5\u4E0A\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
3539
|
+
"df.wise.PersistAsyncSchema.genericError": "\u554F\u984C\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002\u518D\u5EA6\u304A\u8A66\u3057\u304F\u3060\u3055\u3044\u3002",
|
|
3540
|
+
"df.wise.SearchLayout.loading": "\u8AAD\u307F\u8FBC\u307F\u4E2D\u2026"
|
|
3541
|
+
};
|
|
3542
|
+
|
|
3543
|
+
// src/i18n/nl.json
|
|
3544
|
+
var nl_default = {
|
|
3545
|
+
"df.wise.ArraySchema.addItem": "Opslaan",
|
|
3546
|
+
"df.wise.ArraySchema.addItemTitle": "Item toevoegen",
|
|
3547
|
+
"df.wise.ArraySchema.editItem": "Opslaan",
|
|
3548
|
+
"df.wise.ArraySchema.maxItemsError": "Voeg {maxItems} of minder toe.",
|
|
3549
|
+
"df.wise.ArraySchema.minItemsError": "Voeg minimaal {minItems} toe.",
|
|
3550
|
+
"df.wise.ArraySchema.removeItem": "Verwijderen",
|
|
3551
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "This might take a few seconds",
|
|
3552
|
+
"df.wise.ControlFeedback.maxLength": "Voer {maxLength} of minder tekens in.",
|
|
3553
|
+
"df.wise.ControlFeedback.maximum": "Voer een getal in dat {maximum} of lager is.",
|
|
3554
|
+
"df.wise.ControlFeedback.maximumDate": "Voer een datum in die op of voor {maximum} is.",
|
|
3555
|
+
"df.wise.ControlFeedback.minLength": "Voer minimaal {minLength} tekens in.",
|
|
3556
|
+
"df.wise.ControlFeedback.minimum": "Voer een getal in dat {minimum} of hoger is.",
|
|
3557
|
+
"df.wise.ControlFeedback.minimumDate": "Voer een datum in die op of na {minimum} is.",
|
|
3558
|
+
"df.wise.ControlFeedback.pattern": "Voer dit in de juiste indeling in.",
|
|
3559
|
+
"df.wise.ControlFeedback.patternDate": "Voer een datum in de juiste indeling in.",
|
|
3560
|
+
"df.wise.ControlFeedback.required": "Vul dit veld in.",
|
|
3561
|
+
"df.wise.ControlFeedback.type": "Onjuist type",
|
|
3562
|
+
"df.wise.CopyFeedback.copy": "Naar klembord gekopieerd",
|
|
3563
|
+
"df.wise.CopyFeedback.copyFailed": "Naar klembord kopi\xEBren mislukt",
|
|
3564
|
+
"df.wise.Decision.all": "Alles",
|
|
3565
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3566
|
+
"df.wise.Decision.noResults": "Niks gevonden",
|
|
3567
|
+
"df.wise.Decision.popular": "Populair",
|
|
3568
|
+
"df.wise.Decision.recent": "Recent",
|
|
3569
|
+
"df.wise.Decision.results": "Zoekresultaten",
|
|
3570
|
+
"df.wise.DynamicParagraph.copied": "Naar klembord gekopieerd",
|
|
3571
|
+
"df.wise.DynamicParagraph.copy": "Kopi\xEBren",
|
|
3572
|
+
"df.wise.ErrorBoundary.errorAlert": "Er is iets misgegaan.",
|
|
3573
|
+
"df.wise.ErrorBoundary.retry": "Opnieuw proberen",
|
|
3574
|
+
"df.wise.ExternalConfirmation.cancel": "Annuleren",
|
|
3575
|
+
"df.wise.ExternalConfirmation.description": "Bevestig dat je **{origin}** in een nieuw browsertabblad wilt openen.",
|
|
3576
|
+
"df.wise.ExternalConfirmation.open": "In nieuw tabblad openen",
|
|
3577
|
+
"df.wise.ExternalConfirmation.title": "Bevestigen",
|
|
3578
|
+
"df.wise.Help.ariaLabel": "Klik hier voor meer informatie.",
|
|
3579
|
+
"df.wise.MultiSelect.summary": "{first} en nog {count}",
|
|
3580
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Het bestand is te groot. Upload een kleiner bestand.",
|
|
3581
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Upload {maxItems} of minder bestanden.",
|
|
3582
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Upload minimaal {minItems} bestand(en).",
|
|
3583
|
+
"df.wise.PersistAsyncSchema.genericError": "Er is iets misgegaan, probeer het opnieuw.",
|
|
3584
|
+
"df.wise.SearchLayout.loading": "Laden..."
|
|
3585
|
+
};
|
|
3586
|
+
|
|
3587
|
+
// src/i18n/pl.json
|
|
3588
|
+
var pl_default = {
|
|
3589
|
+
"df.wise.ArraySchema.addItem": "Zapisz",
|
|
3590
|
+
"df.wise.ArraySchema.addItemTitle": "Dodaj pozycj\u0119",
|
|
3591
|
+
"df.wise.ArraySchema.editItem": "Zapisz",
|
|
3592
|
+
"df.wise.ArraySchema.maxItemsError": "Prosimy doda\u0107 maksymalnie {maxItems}.",
|
|
3593
|
+
"df.wise.ArraySchema.minItemsError": "Prosimy doda\u0107 co najmniej {minItems}.",
|
|
3594
|
+
"df.wise.ArraySchema.removeItem": "Usu\u0144",
|
|
3595
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "To mo\u017Ce potrwa\u0107 kilka sekund",
|
|
3596
|
+
"df.wise.ControlFeedback.maxLength": "Prosimy wprowadzi\u0107 do {maxLength} znak\xF3w.",
|
|
3597
|
+
"df.wise.ControlFeedback.maximum": "Wprowad\u017A liczb\u0119 r\xF3wn\u0105 lub mniejsz\u0105 ni\u017C {maximum}.",
|
|
3598
|
+
"df.wise.ControlFeedback.maximumDate": "Wprowad\u017A dat\u0119 nie p\xF3\u017Aniejsz\u0105 ni\u017C {maximum}.",
|
|
3599
|
+
"df.wise.ControlFeedback.minLength": "Prosz\u0119 wpisa\u0107 co najmniej {minLength} znak\xF3w.",
|
|
3600
|
+
"df.wise.ControlFeedback.minimum": "Wprowad\u017A liczb\u0119 r\xF3wn\u0105 lub wi\u0119ksz\u0105 ni\u017C {minimum}.",
|
|
3601
|
+
"df.wise.ControlFeedback.minimumDate": "Wprowad\u017A dat\u0119 nie wcze\u015Bniejsz\u0105 ni\u017C {minimum}.",
|
|
3602
|
+
"df.wise.ControlFeedback.pattern": "Wprowad\u017A t\u0119 warto\u015B\u0107 w prawid\u0142owym formacie.",
|
|
3603
|
+
"df.wise.ControlFeedback.patternDate": "Wprowad\u017A dat\u0119 w prawid\u0142owym formacie.",
|
|
3604
|
+
"df.wise.ControlFeedback.required": "Prosz\u0119 wype\u0142ni\u0107 to pole.",
|
|
3605
|
+
"df.wise.ControlFeedback.type": "Nieprawid\u0142owy typ",
|
|
3606
|
+
"df.wise.CopyFeedback.copy": "Skopiowano do schowka",
|
|
3607
|
+
"df.wise.CopyFeedback.copyFailed": "Nie uda\u0142o si\u0119 skopiowa\u0107 do schowka",
|
|
3608
|
+
"df.wise.Decision.all": "Wszystkie",
|
|
3609
|
+
"df.wise.Decision.filterPlaceholder": "Zacznij pisa\u0107, \u017Ceby wyszuka\u0107",
|
|
3610
|
+
"df.wise.Decision.noResults": "Brak wynik\xF3w",
|
|
3611
|
+
"df.wise.Decision.popular": "Popularne",
|
|
3612
|
+
"df.wise.Decision.recent": "Ostatnie",
|
|
3613
|
+
"df.wise.Decision.results": "Wyniki wyszukiwania",
|
|
3614
|
+
"df.wise.DynamicParagraph.copied": "Skopiowano do schowka",
|
|
3615
|
+
"df.wise.DynamicParagraph.copy": "Kopiuj",
|
|
3616
|
+
"df.wise.ErrorBoundary.errorAlert": "Co\u015B posz\u0142o nie tak.",
|
|
3617
|
+
"df.wise.ErrorBoundary.retry": "Spr\xF3buj ponownie",
|
|
3618
|
+
"df.wise.ExternalConfirmation.cancel": "Anuluj",
|
|
3619
|
+
"df.wise.ExternalConfirmation.description": "Prosimy potwierdzi\u0107, \u017Ce chcesz otworzy\u0107 **{origin}** w nowej zak\u0142adce przegl\u0105darki.",
|
|
3620
|
+
"df.wise.ExternalConfirmation.open": "Otw\xF3rz w nowej zak\u0142adce",
|
|
3621
|
+
"df.wise.ExternalConfirmation.title": "Potwierd\u017A",
|
|
3622
|
+
"df.wise.Help.ariaLabel": "Kliknij tutaj, \u017Ceby uzyska\u0107 wi\u0119cej informacji.",
|
|
3623
|
+
"df.wise.MultiSelect.summary": "{first} oraz {count} wi\u0119cej",
|
|
3624
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Przepraszamy, ten plik jest zbyt du\u017Cy. Prze\u015Blij mniejszy plik.",
|
|
3625
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Prze\u015Blij do {maxItems} plik\xF3w.",
|
|
3626
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Prze\u015Blij co najmniej nast\u0119puj\u0105c\u0105 liczb\u0119 plik\xF3w: {minItems}.",
|
|
3627
|
+
"df.wise.PersistAsyncSchema.genericError": "Wyst\u0105pi\u0142 b\u0142\u0105d, prosimy spr\xF3bowa\u0107 ponownie.",
|
|
3628
|
+
"df.wise.SearchLayout.loading": "\u0141adowanie..."
|
|
3629
|
+
};
|
|
3630
|
+
|
|
3631
|
+
// src/i18n/pt.json
|
|
3632
|
+
var pt_default = {
|
|
3633
|
+
"df.wise.ArraySchema.addItem": "Salvar",
|
|
3634
|
+
"df.wise.ArraySchema.addItemTitle": "Adicionar item",
|
|
3635
|
+
"df.wise.ArraySchema.editItem": "Salvar",
|
|
3636
|
+
"df.wise.ArraySchema.maxItemsError": "Adicione {maxItems} ou menos.",
|
|
3637
|
+
"df.wise.ArraySchema.minItemsError": "Adicione pelo menos {minItems}.",
|
|
3638
|
+
"df.wise.ArraySchema.removeItem": "Remover",
|
|
3639
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Isso pode levar alguns segundos",
|
|
3640
|
+
"df.wise.ControlFeedback.maxLength": "Por favor, insira {maxLength} caracteres ou menos.",
|
|
3641
|
+
"df.wise.ControlFeedback.maximum": "Por favor, insira um n\xFAmero que seja {maximum} ou menos.",
|
|
3642
|
+
"df.wise.ControlFeedback.maximumDate": "Por favor, insira uma data que seja em ou antes de {maximum}.",
|
|
3643
|
+
"df.wise.ControlFeedback.minLength": "Por favor, insira pelo menos {minLength} caracteres.",
|
|
3644
|
+
"df.wise.ControlFeedback.minimum": "Por favor, insira um n\xFAmero que seja {minimum} ou mais.",
|
|
3645
|
+
"df.wise.ControlFeedback.minimumDate": "Por favor, insira uma data que seja em ou ap\xF3s {minimum}.",
|
|
3646
|
+
"df.wise.ControlFeedback.pattern": "Por favor, insira essa informa\xE7\xE3o no formato correto.",
|
|
3647
|
+
"df.wise.ControlFeedback.patternDate": "Por favor, insira a data no formato correto.",
|
|
3648
|
+
"df.wise.ControlFeedback.required": "Por favor, preencha o campo.",
|
|
3649
|
+
"df.wise.ControlFeedback.type": "Tipo incorreto",
|
|
3650
|
+
"df.wise.CopyFeedback.copy": "Copiado",
|
|
3651
|
+
"df.wise.CopyFeedback.copyFailed": "Falha ao copiar para \xE1rea de transfer\xEAncia",
|
|
3652
|
+
"df.wise.Decision.all": "Todos",
|
|
3653
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3654
|
+
"df.wise.Decision.noResults": "Nenhum resultado",
|
|
3655
|
+
"df.wise.Decision.popular": "Populares",
|
|
3656
|
+
"df.wise.Decision.recent": "Recente",
|
|
3657
|
+
"df.wise.Decision.results": "Resultados da busca",
|
|
3658
|
+
"df.wise.DynamicParagraph.copied": "Copiado",
|
|
3659
|
+
"df.wise.DynamicParagraph.copy": "Copiar",
|
|
3660
|
+
"df.wise.ErrorBoundary.errorAlert": "Algo deu errado.",
|
|
3661
|
+
"df.wise.ErrorBoundary.retry": "Tentar novamente",
|
|
3662
|
+
"df.wise.ExternalConfirmation.cancel": "Cancelar",
|
|
3663
|
+
"df.wise.ExternalConfirmation.description": "Por favor, confirme que deseja abrir * *{origin}* * em uma nova aba do navegador.",
|
|
3664
|
+
"df.wise.ExternalConfirmation.open": "Abrir em uma nova aba",
|
|
3665
|
+
"df.wise.ExternalConfirmation.title": "Por favor, confirme",
|
|
3666
|
+
"df.wise.Help.ariaLabel": "Clique aqui para mais informa\xE7\xF5es.",
|
|
3667
|
+
"df.wise.MultiSelect.summary": "{first} e mais {count} ",
|
|
3668
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Este arquivo \xE9 muito grande. Por favor, envie um arquivo menor.",
|
|
3669
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Por favor, envie {maxItems} ou menos arquivos.",
|
|
3670
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Por favor, envie pelo menos {minItems} arquivo(s).",
|
|
3671
|
+
"df.wise.PersistAsyncSchema.genericError": "Ocorreu um erro. Por favor, tente novamente.",
|
|
3672
|
+
"df.wise.SearchLayout.loading": "Carregando..."
|
|
3673
|
+
};
|
|
3674
|
+
|
|
3675
|
+
// src/i18n/ro.json
|
|
3676
|
+
var ro_default = {
|
|
3677
|
+
"df.wise.ArraySchema.addItem": "Salvare",
|
|
3678
|
+
"df.wise.ArraySchema.addItemTitle": "Adaug\u0103 produs",
|
|
3679
|
+
"df.wise.ArraySchema.editItem": "Salvare",
|
|
3680
|
+
"df.wise.ArraySchema.maxItemsError": "Te rug\u0103m s\u0103 adaugi {maxItems} sau mai pu\u021Bine.",
|
|
3681
|
+
"df.wise.ArraySchema.minItemsError": "Te rug\u0103m s\u0103 adaugi cel pu\u021Bin {minItems}.",
|
|
3682
|
+
"df.wise.ArraySchema.removeItem": "Elimin\u0103",
|
|
3683
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Acest lucru ar putea dura c\xE2teva secunde",
|
|
3684
|
+
"df.wise.ControlFeedback.maxLength": "Te rug\u0103m s\u0103 introduci {maxLength} sau mai pu\u021Bine caractere.",
|
|
3685
|
+
"df.wise.ControlFeedback.maximum": "Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {maximum} sau mai mic.",
|
|
3686
|
+
"df.wise.ControlFeedback.maximumDate": "Te rug\u0103m s\u0103 introduci o dat\u0103 de \xEEnainte de sau egal\u0103 cu {maximum}.",
|
|
3687
|
+
"df.wise.ControlFeedback.minLength": "Te rug\u0103m s\u0103 introduci cel pu\u021Bin {minLength} caractere.",
|
|
3688
|
+
"df.wise.ControlFeedback.minimum": "Te rug\u0103m s\u0103 introduci un num\u0103r egal cu {minimum} sau mai mare.",
|
|
3689
|
+
"df.wise.ControlFeedback.minimumDate": "Te rug\u0103m s\u0103 introduci o dat\u0103 de dup\u0103 sau egal\u0103 cu {minimum}.",
|
|
3690
|
+
"df.wise.ControlFeedback.pattern": "Te rug\u0103m s\u0103 introduci acest lucru \xEEn formatul corect.",
|
|
3691
|
+
"df.wise.ControlFeedback.patternDate": "Te rug\u0103m s\u0103 introduci o dat\u0103 \xEEn formatul corect.",
|
|
3692
|
+
"df.wise.ControlFeedback.required": "Te rug\u0103m s\u0103 completezi acest spa\u021Biu.",
|
|
3693
|
+
"df.wise.ControlFeedback.type": "Tip incorect",
|
|
3694
|
+
"df.wise.CopyFeedback.copy": "Copiat \xEEn clipboard",
|
|
3695
|
+
"df.wise.CopyFeedback.copyFailed": "Copierea \xEEn clipboard a e\u0219uat",
|
|
3696
|
+
"df.wise.Decision.all": "Toate",
|
|
3697
|
+
"df.wise.Decision.filterPlaceholder": "\xCEncepe s\u0103 tastezi pentru a c\u0103uta",
|
|
3698
|
+
"df.wise.Decision.noResults": "Niciun rezultat",
|
|
3699
|
+
"df.wise.Decision.popular": "Populare",
|
|
3700
|
+
"df.wise.Decision.recent": "Recente",
|
|
3701
|
+
"df.wise.Decision.results": "Rezultatele c\u0103ut\u0103rii",
|
|
3702
|
+
"df.wise.DynamicParagraph.copied": "Copiat \xEEn clipboard",
|
|
3703
|
+
"df.wise.DynamicParagraph.copy": "Copiaz\u0103",
|
|
3704
|
+
"df.wise.ErrorBoundary.errorAlert": "Ceva nu a mers bine.",
|
|
3705
|
+
"df.wise.ErrorBoundary.retry": "\xCEncearc\u0103 din nou",
|
|
3706
|
+
"df.wise.ExternalConfirmation.cancel": "Anuleaz\u0103",
|
|
3707
|
+
"df.wise.ExternalConfirmation.description": "Te rug\u0103m s\u0103 confirmi c\u0103 vrei s\u0103 deschizi **{origin}** \xEEntr-o nou\u0103 fil\u0103 a browserului.",
|
|
3708
|
+
"df.wise.ExternalConfirmation.open": "Deschide \xEEntr-o fil\u0103 nou\u0103",
|
|
3709
|
+
"df.wise.ExternalConfirmation.title": "Te rug\u0103m s\u0103 confirmi",
|
|
3710
|
+
"df.wise.Help.ariaLabel": "D\u0103 click aici pentru mai multe informa\u021Bii.",
|
|
3711
|
+
"df.wise.MultiSelect.summary": "{first} \u0219i \xEEnc\u0103 {count}",
|
|
3712
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "Ne pare r\u0103u, acel fi\u0219ier este prea mare. Te rug\u0103m s\u0103 \xEEncarci un fi\u0219ier mai mic.",
|
|
3713
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "Te rug\u0103m s\u0103 \xEEncarci {maxItems} fi\u0219iere sau mai pu\u021Bine.",
|
|
3714
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "Te rug\u0103m s\u0103 \xEEncarci cel pu\u021Bin {minItems} fi\u0219ier(e).",
|
|
3715
|
+
"df.wise.PersistAsyncSchema.genericError": "Ceva nu a mers bine, te rug\u0103m s\u0103 \xEEncerci din nou.",
|
|
3716
|
+
"df.wise.SearchLayout.loading": "Se \xEEncarc\u0103..."
|
|
3717
|
+
};
|
|
3718
|
+
|
|
3719
|
+
// src/i18n/ru.json
|
|
3720
|
+
var ru_default = {
|
|
3721
|
+
"df.wise.ArraySchema.addItem": "\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C",
|
|
3722
|
+
"df.wise.ArraySchema.addItemTitle": "\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0443\u043D\u043A\u0442",
|
|
3723
|
+
"df.wise.ArraySchema.editItem": "\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C",
|
|
3724
|
+
"df.wise.ArraySchema.maxItemsError": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 {maxItems} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.",
|
|
3725
|
+
"df.wise.ArraySchema.minItemsError": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems}.",
|
|
3726
|
+
"df.wise.ArraySchema.removeItem": "\u0423\u0434\u0430\u043B\u0438\u0442\u044C",
|
|
3727
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "\u042D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u0437\u0430\u043D\u044F\u0442\u044C \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0441\u0435\u043A\u0443\u043D\u0434",
|
|
3728
|
+
"df.wise.ControlFeedback.maxLength": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 {maxLength} \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.",
|
|
3729
|
+
"df.wise.ControlFeedback.maximum": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {maximum} \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435.",
|
|
3730
|
+
"df.wise.ControlFeedback.maximumDate": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {maximum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u0440\u0430\u043D\u043D\u044E\u044E.",
|
|
3731
|
+
"df.wise.ControlFeedback.minLength": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minLength} \u0441\u0438\u043C\u0432\u043E\u043B\u0430(-\u043E\u0432).",
|
|
3732
|
+
"df.wise.ControlFeedback.minimum": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0447\u0438\u0441\u043B\u043E, \u0440\u0430\u0432\u043D\u043E\u0435 {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u044C\u0448\u0435.",
|
|
3733
|
+
"df.wise.ControlFeedback.minimumDate": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443, \u0440\u0430\u0432\u043D\u0443\u044E {minimum} \u0438\u043B\u0438 \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0437\u0434\u043D\u044E\u044E.",
|
|
3734
|
+
"df.wise.ControlFeedback.pattern": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u044D\u0442\u043E \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.",
|
|
3735
|
+
"df.wise.ControlFeedback.patternDate": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u043C \u0444\u043E\u0440\u043C\u0430\u0442\u0435.",
|
|
3736
|
+
"df.wise.ControlFeedback.required": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u043E\u0435 \u043F\u043E\u043B\u0435.",
|
|
3737
|
+
"df.wise.ControlFeedback.type": "\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0442\u0438\u043F",
|
|
3738
|
+
"df.wise.CopyFeedback.copy": "\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430",
|
|
3739
|
+
"df.wise.CopyFeedback.copyFailed": "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0441\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430",
|
|
3740
|
+
"df.wise.Decision.all": "\u0412\u0441\u0435",
|
|
3741
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3742
|
+
"df.wise.Decision.noResults": "\u041D\u0435\u0442 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432",
|
|
3743
|
+
"df.wise.Decision.popular": "\u041F\u043E\u043F\u0443\u043B\u044F\u0440\u043D\u044B\u0435",
|
|
3744
|
+
"df.wise.Decision.recent": "\u041D\u0435\u0434\u0430\u0432\u043D\u0438\u0435",
|
|
3745
|
+
"df.wise.Decision.results": "\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u043F\u043E\u0438\u0441\u043A\u0430",
|
|
3746
|
+
"df.wise.DynamicParagraph.copied": "\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430",
|
|
3747
|
+
"df.wise.DynamicParagraph.copy": "\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C",
|
|
3748
|
+
"df.wise.ErrorBoundary.errorAlert": "\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A.",
|
|
3749
|
+
"df.wise.ErrorBoundary.retry": "\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C \u043F\u043E\u043F\u044B\u0442\u043A\u0443",
|
|
3750
|
+
"df.wise.ExternalConfirmation.cancel": "\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C",
|
|
3751
|
+
"df.wise.ExternalConfirmation.description": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043E \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u0440\u044B\u0442\u044C **{origin}** \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.",
|
|
3752
|
+
"df.wise.ExternalConfirmation.open": "\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u043D\u043E\u0432\u043E\u0439 \u0432\u043A\u043B\u0430\u0434\u043A\u0435",
|
|
3753
|
+
"df.wise.ExternalConfirmation.title": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435",
|
|
3754
|
+
"df.wise.Help.ariaLabel": "\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044C \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438.",
|
|
3755
|
+
"df.wise.MultiSelect.summary": "{first} \u0438 \u0435\u0449\u0435 {count} \u0434\u0440\u0443\u0433\u0438\u0445",
|
|
3756
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u0418\u0437\u0432\u0438\u043D\u0438\u0442\u0435, \u0444\u0430\u0439\u043B \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0439. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0444\u0430\u0439\u043B \u043C\u0435\u043D\u044C\u0448\u0435\u0433\u043E \u0440\u0430\u0437\u043C\u0435\u0440\u0430.",
|
|
3757
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043D\u0435 \u0431\u043E\u043B\u0435\u0435 {maxItems} \u0444\u0430\u0439\u043B\u043E\u0432.",
|
|
3758
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043F\u043E \u043A\u0440\u0430\u0439\u043D\u0435\u0439 \u043C\u0435\u0440\u0435 {minItems} \u0444\u0430\u0439\u043B(-\u0430/\u043E\u0432).",
|
|
3759
|
+
"df.wise.PersistAsyncSchema.genericError": "\u0427\u0442\u043E-\u0442\u043E \u043F\u043E\u0448\u043B\u043E \u043D\u0435 \u0442\u0430\u043A, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437.",
|
|
3760
|
+
"df.wise.SearchLayout.loading": "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430..."
|
|
3761
|
+
};
|
|
3762
|
+
|
|
3763
|
+
// src/i18n/th.json
|
|
3764
|
+
var th_default = {
|
|
3765
|
+
"df.wise.ArraySchema.addItem": "\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01",
|
|
3766
|
+
"df.wise.ArraySchema.addItemTitle": "\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23",
|
|
3767
|
+
"df.wise.ArraySchema.editItem": "\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01",
|
|
3768
|
+
"df.wise.ArraySchema.maxItemsError": "\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21 {maxItems} \u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
3769
|
+
"df.wise.ArraySchema.minItemsError": "\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems}",
|
|
3770
|
+
"df.wise.ArraySchema.removeItem": "\u0E25\u0E1A",
|
|
3771
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "\u0E2D\u0E32\u0E08\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E25\u0E32\u0E2A\u0E31\u0E01\u0E2A\u0E2D\u0E07\u0E2A\u0E32\u0E21\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35",
|
|
3772
|
+
"df.wise.ControlFeedback.maxLength": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19 {maxLength} \u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19",
|
|
3773
|
+
"df.wise.ControlFeedback.maximum": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {maximum} \u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
3774
|
+
"df.wise.ControlFeedback.maximumDate": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19 {maximum} \u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32\u0E19\u0E31\u0E49\u0E19",
|
|
3775
|
+
"df.wise.ControlFeedback.minLength": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minLength} \u0E15\u0E31\u0E27",
|
|
3776
|
+
"df.wise.ControlFeedback.minimum": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 {minimum} \u0E2B\u0E23\u0E37\u0E2D\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32",
|
|
3777
|
+
"df.wise.ControlFeedback.minimumDate": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19 {minimum} \u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19",
|
|
3778
|
+
"df.wise.ControlFeedback.pattern": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
|
|
3779
|
+
"df.wise.ControlFeedback.patternDate": "\u0E42\u0E1B\u0E23\u0E14\u0E1B\u0E49\u0E2D\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
|
|
3780
|
+
"df.wise.ControlFeedback.required": "\u0E42\u0E1B\u0E23\u0E14\u0E43\u0E2A\u0E48\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E19\u0E35\u0E49",
|
|
3781
|
+
"df.wise.ControlFeedback.type": "\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
|
|
3782
|
+
"df.wise.CopyFeedback.copy": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14",
|
|
3783
|
+
"df.wise.CopyFeedback.copyFailed": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08",
|
|
3784
|
+
"df.wise.Decision.all": "\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
|
3785
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3786
|
+
"df.wise.Decision.noResults": "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C",
|
|
3787
|
+
"df.wise.Decision.popular": "\u0E2A\u0E01\u0E38\u0E25\u0E22\u0E2D\u0E14\u0E19\u0E34\u0E22\u0E21",
|
|
3788
|
+
"df.wise.Decision.recent": "\u0E25\u0E48\u0E32\u0E2A\u0E38\u0E14",
|
|
3789
|
+
"df.wise.Decision.results": "\u0E1C\u0E25\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32",
|
|
3790
|
+
"df.wise.DynamicParagraph.copied": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E1B\u0E22\u0E31\u0E07\u0E04\u0E25\u0E34\u0E1B\u0E1A\u0E2D\u0E23\u0E4C\u0E14",
|
|
3791
|
+
"df.wise.DynamicParagraph.copy": "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01",
|
|
3792
|
+
"df.wise.ErrorBoundary.errorAlert": "\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19",
|
|
3793
|
+
"df.wise.ErrorBoundary.retry": "\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07",
|
|
3794
|
+
"df.wise.ExternalConfirmation.cancel": "\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01",
|
|
3795
|
+
"df.wise.ExternalConfirmation.description": "\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14 **{origin}** \u0E40\u0E1B\u0E47\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E19\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C",
|
|
3796
|
+
"df.wise.ExternalConfirmation.open": "\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E41\u0E17\u0E47\u0E1A\u0E43\u0E2B\u0E21\u0E48",
|
|
3797
|
+
"df.wise.ExternalConfirmation.title": "\u0E42\u0E1B\u0E23\u0E14\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19",
|
|
3798
|
+
"df.wise.Help.ariaLabel": "\u0E04\u0E25\u0E34\u0E01\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
|
|
3799
|
+
"df.wise.MultiSelect.summary": "{first} \u0E41\u0E25\u0E30\u0E2D\u0E35\u0E01 {count}",
|
|
3800
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22 \u0E44\u0E1F\u0E25\u0E4C\u0E19\u0E31\u0E49\u0E19\u0E43\u0E2B\u0E0D\u0E48\u0E40\u0E01\u0E34\u0E19\u0E44\u0E1B \u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E44\u0E1F\u0E25\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E25\u0E47\u0E01\u0E25\u0E07",
|
|
3801
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14 {maxItems} \u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32",
|
|
3802
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "\u0E42\u0E1B\u0E23\u0E14\u0E2D\u0E31\u0E1B\u0E42\u0E2B\u0E25\u0E14\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 {minItems} \u0E44\u0E1F\u0E25\u0E4C",
|
|
3803
|
+
"df.wise.PersistAsyncSchema.genericError": "\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E1A\u0E32\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07 \u0E42\u0E1B\u0E23\u0E14\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07",
|
|
3804
|
+
"df.wise.SearchLayout.loading": "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14..."
|
|
3805
|
+
};
|
|
3806
|
+
|
|
3807
|
+
// src/i18n/tr.json
|
|
3808
|
+
var tr_default = {
|
|
3809
|
+
"df.wise.ArraySchema.addItem": "Kaydet",
|
|
3810
|
+
"df.wise.ArraySchema.addItemTitle": "\xD6ge ekle",
|
|
3811
|
+
"df.wise.ArraySchema.editItem": "Kaydet",
|
|
3812
|
+
"df.wise.ArraySchema.maxItemsError": "L\xFCtfen {maxItems} veya daha az ekleme yap\u0131n",
|
|
3813
|
+
"df.wise.ArraySchema.minItemsError": "L\xFCtfen en az {minItems} ekleme yap\u0131n.",
|
|
3814
|
+
"df.wise.ArraySchema.removeItem": "Kald\u0131r",
|
|
3815
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "Bu birka\xE7 saniye s\xFCrebilir",
|
|
3816
|
+
"df.wise.ControlFeedback.maxLength": "L\xFCtfen {maxLength} veya daha az karakter girin.",
|
|
3817
|
+
"df.wise.ControlFeedback.maximum": "L\xFCtfen {maximum} veya daha d\xFC\u015F\xFCk bir say\u0131 girin.",
|
|
3818
|
+
"df.wise.ControlFeedback.maximumDate": "L\xFCtfen {maximum} veya daha erken bir tarih girin.",
|
|
3819
|
+
"df.wise.ControlFeedback.minLength": "En az {minLength} karakter girebilirsiniz.",
|
|
3820
|
+
"df.wise.ControlFeedback.minimum": "L\xFCtfen {minimum} veya daha y\xFCksek bir say\u0131 girin.",
|
|
3821
|
+
"df.wise.ControlFeedback.minimumDate": "L\xFCtfen {minimum} veya daha ge\xE7 bir tarih girin.",
|
|
3822
|
+
"df.wise.ControlFeedback.pattern": "Yanl\u0131\u015F bi\xE7im",
|
|
3823
|
+
"df.wise.ControlFeedback.patternDate": "L\xFCtfen tarihi do\u011Fru bi\xE7imde girin.",
|
|
3824
|
+
"df.wise.ControlFeedback.required": "L\xFCtfen bu alan\u0131 doldurun.",
|
|
3825
|
+
"df.wise.ControlFeedback.type": "Ge\xE7ersiz se\xE7im",
|
|
3826
|
+
"df.wise.CopyFeedback.copy": "Panoya kopyaland\u0131",
|
|
3827
|
+
"df.wise.CopyFeedback.copyFailed": "Panoya kopyalama ba\u015Far\u0131s\u0131z oldu",
|
|
3828
|
+
"df.wise.Decision.all": "T\xFCm\xFC",
|
|
3829
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3830
|
+
"df.wise.Decision.noResults": "Sonu\xE7 yok",
|
|
3831
|
+
"df.wise.Decision.popular": "Pop\xFCler",
|
|
3832
|
+
"df.wise.Decision.recent": "Yak\u0131n zamanl\u0131",
|
|
3833
|
+
"df.wise.Decision.results": "Arama sonu\xE7lar\u0131",
|
|
3834
|
+
"df.wise.DynamicParagraph.copied": "Panoya kopyaland\u0131",
|
|
3835
|
+
"df.wise.DynamicParagraph.copy": "Kopyala",
|
|
3836
|
+
"df.wise.ErrorBoundary.errorAlert": "Bir sorun olu\u015Ftu.",
|
|
3837
|
+
"df.wise.ErrorBoundary.retry": "Tekrar dene",
|
|
3838
|
+
"df.wise.ExternalConfirmation.cancel": "\u0130ptal edin",
|
|
3839
|
+
"df.wise.ExternalConfirmation.description": "L\xFCtfen yeni bir taray\u0131c\u0131 sekmesinde **{origin}** a\xE7mak istedi\u011Finizi onaylay\u0131n.",
|
|
3840
|
+
"df.wise.ExternalConfirmation.open": "Yeni sekmede a\xE7",
|
|
3841
|
+
"df.wise.ExternalConfirmation.title": "L\xFCtfen onaylay\u0131n",
|
|
3842
|
+
"df.wise.Help.ariaLabel": "Ayr\u0131nt\u0131lar i\xE7in t\u0131klay\u0131n.",
|
|
3843
|
+
"df.wise.MultiSelect.summary": "{first} ve {count} daha",
|
|
3844
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\xDCzg\xFCn\xFCz, bu dosya \xE7ok b\xFCy\xFCk. L\xFCtfen daha k\xFC\xE7\xFCk bir dosya y\xFCkleyin.",
|
|
3845
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "L\xFCtfen {maxItems} veya daha az dosya y\xFCkleyin.",
|
|
3846
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "L\xFCtfen en az {minItems} dosya y\xFCkleyin.",
|
|
3847
|
+
"df.wise.PersistAsyncSchema.genericError": "Bir \u015Feyler ters gitti, l\xFCtfen tekrar deneyin.",
|
|
3848
|
+
"df.wise.SearchLayout.loading": "Y\xFCkleniyor..."
|
|
3849
|
+
};
|
|
3850
|
+
|
|
3851
|
+
// src/i18n/zh_CN.json
|
|
3852
|
+
var zh_CN_default = {
|
|
3853
|
+
"df.wise.ArraySchema.addItem": "\u4FDD\u5B58",
|
|
3854
|
+
"df.wise.ArraySchema.addItemTitle": "\u6DFB\u52A0\u9879\u76EE",
|
|
3855
|
+
"df.wise.ArraySchema.editItem": "\u4FDD\u5B58",
|
|
3856
|
+
"df.wise.ArraySchema.maxItemsError": "\u8BF7\u6DFB\u52A0\u4E0D\u8D85\u8FC7 {maxItems} \u9879\u3002",
|
|
3857
|
+
"df.wise.ArraySchema.minItemsError": "\u8BF7\u81F3\u5C11\u6DFB\u52A0 {minItems} \u9879\u3002",
|
|
3858
|
+
"df.wise.ArraySchema.removeItem": "\u79FB\u9664",
|
|
3859
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "\u6B64\u8FC7\u7A0B\u53EF\u80FD\u9700\u8981\u51E0\u79D2\u949F",
|
|
3860
|
+
"df.wise.ControlFeedback.maxLength": "\u8BF7\u8F93\u5165\u4E0D\u8D85\u8FC7 {maxLength} \u4E2A\u5B57\u7B26\u3002",
|
|
3861
|
+
"df.wise.ControlFeedback.maximum": "\u8BF7\u8F93\u5165\u4E00\u4E2A\u5C0F\u4E8E\u6216\u7B49\u4E8E {maximum} \u7684\u6570\u5B57\u3002",
|
|
3862
|
+
"df.wise.ControlFeedback.maximumDate": "\u8BF7\u8F93\u5165 {maximum} \u6216\u4E4B\u524D\u7684\u65E5\u671F",
|
|
3863
|
+
"df.wise.ControlFeedback.minLength": "\u8BF7\u81F3\u5C11\u8F93\u5165 {minLength} \u4E2A\u5B57\u7B26",
|
|
3864
|
+
"df.wise.ControlFeedback.minimum": "\u8BF7\u8F93\u5165\u4E00\u4E2A\u5927\u4E8E\u6216\u7B49\u4E8E {minimum} \u7684\u6570\u5B57",
|
|
3865
|
+
"df.wise.ControlFeedback.minimumDate": "\u8BF7\u8F93\u5165 {minimum} \u6216\u4E4B\u540E\u7684\u65E5\u671F",
|
|
3866
|
+
"df.wise.ControlFeedback.pattern": "\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165",
|
|
3867
|
+
"df.wise.ControlFeedback.patternDate": "\u8BF7\u4EE5\u6B63\u786E\u7684\u683C\u5F0F\u8F93\u5165\u65E5\u671F",
|
|
3868
|
+
"df.wise.ControlFeedback.required": "\u8BF7\u586B\u5199\u6B64\u5B57\u6BB5\u3002",
|
|
3869
|
+
"df.wise.ControlFeedback.type": "\u7C7B\u578B\u9519\u8BEF",
|
|
3870
|
+
"df.wise.CopyFeedback.copy": "\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F",
|
|
3871
|
+
"df.wise.CopyFeedback.copyFailed": "\u590D\u5236\u5230\u526A\u8D34\u677F\u5931\u8D25",
|
|
3872
|
+
"df.wise.Decision.all": "\u5168\u90E8",
|
|
3873
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3874
|
+
"df.wise.Decision.noResults": "\u6682\u65E0\u7ED3\u679C",
|
|
3875
|
+
"df.wise.Decision.popular": "\u70ED\u95E8",
|
|
3876
|
+
"df.wise.Decision.recent": "\u6700\u8FD1",
|
|
3877
|
+
"df.wise.Decision.results": "\u641C\u7D22\u7ED3\u679C",
|
|
3878
|
+
"df.wise.DynamicParagraph.copied": "\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F",
|
|
3879
|
+
"df.wise.DynamicParagraph.copy": "\u590D\u5236",
|
|
3880
|
+
"df.wise.ErrorBoundary.errorAlert": "\u51FA\u9519\u4E86\u3002",
|
|
3881
|
+
"df.wise.ErrorBoundary.retry": "\u91CD\u8BD5",
|
|
3882
|
+
"df.wise.ExternalConfirmation.cancel": "\u53D6\u6D88",
|
|
3883
|
+
"df.wise.ExternalConfirmation.description": "\u8BF7\u786E\u8BA4\u60A8\u662F\u5426\u8981\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00**{origin}**\u3002",
|
|
3884
|
+
"df.wise.ExternalConfirmation.open": "\u5728\u65B0\u6807\u7B7E\u9875\u4E2D\u6253\u5F00",
|
|
3885
|
+
"df.wise.ExternalConfirmation.title": "\u8BF7\u786E\u8BA4",
|
|
3886
|
+
"df.wise.Help.ariaLabel": "\u70B9\u51FB\u6B64\u5904\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002",
|
|
3887
|
+
"df.wise.MultiSelect.summary": "{first} \u548C\u5176\u4ED6 {count} \u4E2A",
|
|
3888
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u62B1\u6B49\uFF0C\u8BE5\u6587\u4EF6\u592A\u5927\u3002\u8BF7\u4E0A\u4F20\u4E00\u4E2A\u66F4\u5C0F\u7684\u6587\u4EF6\u3002",
|
|
3889
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u8BF7\u4E0A\u4F20\u4E0D\u8D85\u8FC7 {maxItems} \u4E2A\u6587\u4EF6\u3002",
|
|
3890
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "\u8BF7\u4E0A\u4F20\u81F3\u5C11 {minItems} \u4E2A\u6587\u4EF6\u3002",
|
|
3891
|
+
"df.wise.PersistAsyncSchema.genericError": "\u51FA\u9519\u4E86\uFF0C\u8BF7\u91CD\u8BD5\u3002",
|
|
3892
|
+
"df.wise.SearchLayout.loading": "\u6B63\u5728\u52A0\u8F7D\u2026"
|
|
3893
|
+
};
|
|
3815
3894
|
|
|
3816
|
-
//
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3895
|
+
// src/i18n/zh_HK.json
|
|
3896
|
+
var zh_HK_default = {
|
|
3897
|
+
"df.wise.ArraySchema.addItem": "\u5132\u5B58",
|
|
3898
|
+
"df.wise.ArraySchema.addItemTitle": "\u6DFB\u52A0\u9805\u76EE",
|
|
3899
|
+
"df.wise.ArraySchema.editItem": "\u5132\u5B58",
|
|
3900
|
+
"df.wise.ArraySchema.maxItemsError": "\u8ACB\u6DFB\u52A0\u4E0D\u8D85\u904E{maxItems}\u9805\u3002",
|
|
3901
|
+
"df.wise.ArraySchema.minItemsError": "\u8ACB\u81F3\u5C11\u6DFB\u52A0{minItems}\u9805\u3002",
|
|
3902
|
+
"df.wise.ArraySchema.removeItem": "\u79FB\u9664",
|
|
3903
|
+
"df.wise.ButtonLayout.buttonLoadingMessage": "\u6B64\u7A0B\u5E8F\u53EF\u80FD\u9700\u6642\u5E7E\u79D2",
|
|
3904
|
+
"df.wise.ControlFeedback.maxLength": "\u8ACB\u8F38\u5165\u6700\u591A{maxLength}\u500B\u5B57\u5143\u3002",
|
|
3905
|
+
"df.wise.ControlFeedback.maximum": "\u8ACB\u8F38\u5165\u4E00\u500B\u5C0F\u65BC\u6216\u7B49\u65BC{maximum}\u7684\u6578\u5B57\u3002",
|
|
3906
|
+
"df.wise.ControlFeedback.maximumDate": "\u8ACB\u8F38\u5165{maximum}\u6216\u4E4B\u524D\u7684\u65E5\u671F\u3002",
|
|
3907
|
+
"df.wise.ControlFeedback.minLength": "\u8ACB\u8F38\u5165\u81F3\u5C11{minLength}\u500B\u5B57\u5143\u3002",
|
|
3908
|
+
"df.wise.ControlFeedback.minimum": "\u8ACB\u8F38\u5165\u4E00\u500B\u5927\u65BC\u6216\u7B49\u65BC{minimum}\u7684\u6578\u5B57\u3002",
|
|
3909
|
+
"df.wise.ControlFeedback.minimumDate": "\u8ACB\u8F38\u5165{minimum}\u6216\u4E4B\u5F8C\u7684\u65E5\u671F\u3002",
|
|
3910
|
+
"df.wise.ControlFeedback.pattern": "\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u5185\u5BB9\u3002",
|
|
3911
|
+
"df.wise.ControlFeedback.patternDate": "\u8ACB\u4EE5\u6B63\u78BA\u683C\u5F0F\u8F38\u5165\u65E5\u671F\u3002",
|
|
3912
|
+
"df.wise.ControlFeedback.required": "\u8ACB\u586B\u5BEB\u6B64\u6B04\u4F4D\u3002",
|
|
3913
|
+
"df.wise.ControlFeedback.type": "\u932F\u8AA4\u7684\u985E\u578B",
|
|
3914
|
+
"df.wise.CopyFeedback.copy": "\u8907\u88FD\u5230\u526A\u8CBC\u677F",
|
|
3915
|
+
"df.wise.CopyFeedback.copyFailed": "\u7121\u6CD5\u8907\u88FD\u5230\u526A\u8CBC\u677F",
|
|
3916
|
+
"df.wise.Decision.all": "\u5168\u90E8",
|
|
3917
|
+
"df.wise.Decision.filterPlaceholder": "Start typing to search",
|
|
3918
|
+
"df.wise.Decision.noResults": "\u6C92\u6709\u7D50\u679C",
|
|
3919
|
+
"df.wise.Decision.popular": "\u71B1\u9580",
|
|
3920
|
+
"df.wise.Decision.recent": "\u6700\u8FD1\u7684",
|
|
3921
|
+
"df.wise.Decision.results": "\u641C\u5C0B\u7D50\u679C",
|
|
3922
|
+
"df.wise.DynamicParagraph.copied": "\u8907\u88FD\u5230\u526A\u8CBC\u677F",
|
|
3923
|
+
"df.wise.DynamicParagraph.copy": "\u8907\u88FD",
|
|
3924
|
+
"df.wise.ErrorBoundary.errorAlert": "\u51FA\u4E86\u4E9B\u554F\u984C\u3002",
|
|
3925
|
+
"df.wise.ErrorBoundary.retry": "\u91CD\u8A66",
|
|
3926
|
+
"df.wise.ExternalConfirmation.cancel": "\u53D6\u6D88",
|
|
3927
|
+
"df.wise.ExternalConfirmation.description": "\u8ACB\u78BA\u8A8D\u4F60\u662F\u5426\u8981\u5728\u700F\u89BD\u5668\u7684\u65B0\u5206\u9801\u6253\u958B**{origin}**\u3002",
|
|
3928
|
+
"df.wise.ExternalConfirmation.open": "\u5728\u65B0\u5206\u9801\u4E2D\u958B\u555F",
|
|
3929
|
+
"df.wise.ExternalConfirmation.title": "\u8ACB\u78BA\u8A8D",
|
|
3930
|
+
"df.wise.Help.ariaLabel": "\u6309\u6B64\u67E5\u770B\u8A73\u60C5\u3002",
|
|
3931
|
+
"df.wise.MultiSelect.summary": "{first}\u548C\u5176\u4ED6{count}\u9805",
|
|
3932
|
+
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "\u62B1\u6B49\uFF0C\u8A72\u6A94\u6848\u592A\u5927\u3002\u8ACB\u4E0A\u8F09\u4E00\u500B\u8F03\u5C0F\u7684\u6A94\u6848\u3002",
|
|
3933
|
+
"df.wise.MultipleFileUploadSchema.maxItemsError": "\u8ACB\u4E0D\u8981\u4E0A\u8F09\u8D85\u904E{maxItems}\u500B\u6A94\u6848\u3002",
|
|
3934
|
+
"df.wise.MultipleFileUploadSchema.minItemsError": "\u8ACB\u4E0A\u8F09\u81F3\u5C11{minItems}\u500B\u6A94\u6848\u3002",
|
|
3935
|
+
"df.wise.PersistAsyncSchema.genericError": "\u51FA\u73FE\u4E86\u554F\u984C\uFF0C\u8ACB\u518D\u8A66\u4E00\u6B21\u3002",
|
|
3936
|
+
"df.wise.SearchLayout.loading": "\u8F09\u5165\u4E2D\u2026"
|
|
3857
3937
|
};
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
"disabled",
|
|
3881
|
-
"help",
|
|
3882
|
-
"type",
|
|
3883
|
-
"validationState",
|
|
3884
|
-
"maxSize",
|
|
3885
|
-
"onUpload"
|
|
3886
|
-
]);
|
|
3887
|
-
const uploadProps = __spreadProps(__spreadValues({}, rest), { id, name: id, maxSize });
|
|
3888
|
-
const onUploadFile = async (file, fileName) => {
|
|
3889
|
-
try {
|
|
3890
|
-
const convertedFile = file ? await toFile(file, fileName) : null;
|
|
3891
|
-
await onUpload(convertedFile);
|
|
3892
|
-
} catch (e) {
|
|
3893
|
-
await onUpload(null);
|
|
3894
|
-
throw e;
|
|
3895
|
-
}
|
|
3896
|
-
};
|
|
3897
|
-
const filetypes = acceptsToFileTypes(accepts);
|
|
3898
|
-
const usAccept = filetypes === "*" ? "*" : filetypes.join(",");
|
|
3899
|
-
return /* @__PURE__ */ jsx71(
|
|
3900
|
-
FieldInput_default,
|
|
3901
|
-
{
|
|
3902
|
-
id,
|
|
3903
|
-
label: title,
|
|
3904
|
-
description,
|
|
3905
|
-
validation: validationState,
|
|
3906
|
-
help,
|
|
3907
|
-
children: /* @__PURE__ */ jsx71(
|
|
3908
|
-
Upload,
|
|
3909
|
-
__spreadProps(__spreadValues({}, uploadProps), {
|
|
3910
|
-
usAccept,
|
|
3911
|
-
usDisabled: disabled,
|
|
3912
|
-
onSuccess: onUploadFile,
|
|
3913
|
-
onFailure: async () => onUpload(null),
|
|
3914
|
-
onCancel: async () => onUpload(null)
|
|
3915
|
-
})
|
|
3916
|
-
)
|
|
3917
|
-
}
|
|
3918
|
-
);
|
|
3919
|
-
}
|
|
3938
|
+
|
|
3939
|
+
// src/i18n/index.ts
|
|
3940
|
+
var wiseTranslations = {
|
|
3941
|
+
cs: cs_default,
|
|
3942
|
+
en: en_default,
|
|
3943
|
+
de: de_default,
|
|
3944
|
+
es: es_default,
|
|
3945
|
+
fr: fr_default,
|
|
3946
|
+
hu: hu_default,
|
|
3947
|
+
id: id_default,
|
|
3948
|
+
it: it_default,
|
|
3949
|
+
ja: ja_default,
|
|
3950
|
+
nl: nl_default,
|
|
3951
|
+
pl: pl_default,
|
|
3952
|
+
pt: pt_default,
|
|
3953
|
+
ro: ro_default,
|
|
3954
|
+
ru: ru_default,
|
|
3955
|
+
th: th_default,
|
|
3956
|
+
tr: tr_default,
|
|
3957
|
+
zh: zh_CN_default,
|
|
3958
|
+
"zh-CN": zh_CN_default,
|
|
3959
|
+
"zh-HK": zh_HK_default
|
|
3920
3960
|
};
|
|
3961
|
+
var languages = Array.from(
|
|
3962
|
+
/* @__PURE__ */ new Set([...Object.keys(coreTranslations), ...Object.keys(wiseTranslations)])
|
|
3963
|
+
);
|
|
3964
|
+
var translations = languages.reduce(
|
|
3965
|
+
(acc, lang) => __spreadProps(__spreadValues({}, acc), { [lang]: __spreadValues(__spreadValues({}, coreTranslations[lang]), wiseTranslations[lang]) }),
|
|
3966
|
+
{}
|
|
3967
|
+
);
|
|
3968
|
+
var i18n_default = translations;
|
|
3921
3969
|
|
|
3922
|
-
//
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
DateInputRenderer_default,
|
|
3931
|
-
DecisionRenderer_default,
|
|
3932
|
-
DividerRenderer_default,
|
|
3933
|
-
ExternalConfirmationRenderer_default,
|
|
3934
|
-
FormRenderer_default,
|
|
3935
|
-
FormSectionRenderer_default,
|
|
3936
|
-
HeadingRenderer_default,
|
|
3937
|
-
ImageRenderer_default,
|
|
3938
|
-
InstructionsRenderer_default,
|
|
3939
|
-
IntegerInputRenderer_default,
|
|
3940
|
-
LargeUploadRenderer,
|
|
3941
|
-
ListRenderer_default,
|
|
3942
|
-
LoadingIndicatorRenderer_default,
|
|
3943
|
-
MarkdownRenderer_default,
|
|
3944
|
-
ModalRenderer,
|
|
3945
|
-
ModalLayoutRenderer_default,
|
|
3946
|
-
MultiSelectInputRenderer_default,
|
|
3947
|
-
MultiUploadInputRenderer_default,
|
|
3948
|
-
NumberInputRenderer_default,
|
|
3949
|
-
ParagraphRenderer_default,
|
|
3950
|
-
RepeatableRenderer_default,
|
|
3951
|
-
ReviewRenderer_default,
|
|
3952
|
-
SearchRenderer_default,
|
|
3953
|
-
SelectInputRenderer_default,
|
|
3954
|
-
SectionRenderer_default,
|
|
3955
|
-
StatusListRenderer_default,
|
|
3956
|
-
TabsRenderer,
|
|
3957
|
-
TextInputRenderer_default,
|
|
3958
|
-
UploadInputRenderer,
|
|
3959
|
-
SplashStepRenderer,
|
|
3960
|
-
SplashCelebrationStepRenderer,
|
|
3961
|
-
StepRenderer
|
|
3962
|
-
];
|
|
3970
|
+
// src/dynamicFlow/DynamicFlow.tsx
|
|
3971
|
+
import { forwardRef, useCallback, useMemo as useMemo2 } from "react";
|
|
3972
|
+
import { useIntl as useIntl12 } from "react-intl";
|
|
3973
|
+
import {
|
|
3974
|
+
DynamicFlow as DynamicFlowCoreLegacy,
|
|
3975
|
+
DynamicFlowCoreRevamp,
|
|
3976
|
+
DynamicFormCore
|
|
3977
|
+
} from "@wise/dynamic-flow-client";
|
|
3963
3978
|
|
|
3964
3979
|
// src/dynamicFlow/telemetry/app-version.ts
|
|
3965
3980
|
var appVersion = (
|
|
@@ -4130,6 +4145,7 @@ export {
|
|
|
4130
4145
|
DynamicFlowRevamp,
|
|
4131
4146
|
DynamicForm,
|
|
4132
4147
|
JsonSchemaForm,
|
|
4148
|
+
createReviewRenderer,
|
|
4133
4149
|
findRendererPropsByType,
|
|
4134
4150
|
isValidSchema,
|
|
4135
4151
|
makeHttpClient as makeCustomFetch,
|