@burdenoff/microfe-export 2026.801.1 → 2026.830.2
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/dist/export/ExportRoot.d.ts.map +1 -1
- package/dist/export/ExportRoot.js +41 -36
- package/dist/export/ExportRoot.js.map +1 -1
- package/dist/export/ExportRoutes.d.ts.map +1 -1
- package/dist/export/ExportRoutes.js +75 -66
- package/dist/export/ExportRoutes.js.map +1 -1
- package/dist/export/components/ExportProgressBar.d.ts.map +1 -1
- package/dist/export/components/ExportProgressBar.js +19 -18
- package/dist/export/components/ExportProgressBar.js.map +1 -1
- package/dist/export/components/ExportStatusBadge.d.ts.map +1 -1
- package/dist/export/components/ExportStatusBadge.js +19 -20
- package/dist/export/components/ExportStatusBadge.js.map +1 -1
- package/dist/export/hooks/useTr.d.ts +19 -0
- package/dist/export/hooks/useTr.d.ts.map +1 -0
- package/dist/export/hooks/useTr.js +15 -0
- package/dist/export/hooks/useTr.js.map +1 -0
- package/dist/export/index.d.ts +1 -0
- package/dist/export/index.d.ts.map +1 -1
- package/dist/export/index.js +1 -0
- package/dist/export/pages/CreateExportPage.d.ts +4 -0
- package/dist/export/pages/CreateExportPage.d.ts.map +1 -1
- package/dist/export/pages/CreateExportPage.js +271 -283
- package/dist/export/pages/CreateExportPage.js.map +1 -1
- package/dist/export/pages/ExportDashboardPage.d.ts.map +1 -1
- package/dist/export/pages/ExportDashboardPage.js +71 -72
- package/dist/export/pages/ExportDashboardPage.js.map +1 -1
- package/dist/export/pages/ExportDetailPage.d.ts.map +1 -1
- package/dist/export/pages/ExportDetailPage.js +171 -173
- package/dist/export/pages/ExportDetailPage.js.map +1 -1
- package/dist/export/pages/ExportHistoryPage.d.ts.map +1 -1
- package/dist/export/pages/ExportHistoryPage.js +110 -111
- package/dist/export/pages/ExportHistoryPage.js.map +1 -1
- package/dist/export/pages/ExportLandingPage.d.ts.map +1 -1
- package/dist/export/pages/ExportLandingPage.js +28 -27
- package/dist/export/pages/ExportLandingPage.js.map +1 -1
- package/dist/export/pages/ExportTemplatesPage.d.ts.map +1 -1
- package/dist/export/pages/ExportTemplatesPage.js +115 -116
- package/dist/export/pages/ExportTemplatesPage.js.map +1 -1
- package/dist/export/pages/TemplateDetailPage.d.ts.map +1 -1
- package/dist/export/pages/TemplateDetailPage.js +122 -118
- package/dist/export/pages/TemplateDetailPage.js.map +1 -1
- package/dist/export/utils/i18n.d.ts +18 -2
- package/dist/export/utils/i18n.d.ts.map +1 -1
- package/dist/export/utils/i18n.js +2 -9
- package/dist/export/utils/i18n.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/translations/en.d.ts +454 -0
- package/dist/translations/en.d.ts.map +1 -0
- package/dist/translations/en.js +417 -0
- package/dist/translations/en.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bundled English translations for microfe-export.
|
|
3
|
+
*
|
|
4
|
+
* These serve as fallback translations when the i18n API is unavailable.
|
|
5
|
+
* The i18n service should be the source of truth, but these ensure the
|
|
6
|
+
* export microfrontend remains usable even when translations can't be fetched.
|
|
7
|
+
*/
|
|
8
|
+
export declare const enTranslations: {
|
|
9
|
+
export: {
|
|
10
|
+
nav: {
|
|
11
|
+
root: string;
|
|
12
|
+
dashboard: string;
|
|
13
|
+
newExport: string;
|
|
14
|
+
history: string;
|
|
15
|
+
templates: string;
|
|
16
|
+
footerStatus: string;
|
|
17
|
+
};
|
|
18
|
+
routes: {
|
|
19
|
+
error: {
|
|
20
|
+
title: string;
|
|
21
|
+
description: string;
|
|
22
|
+
retry: string;
|
|
23
|
+
};
|
|
24
|
+
disabled: {
|
|
25
|
+
title: string;
|
|
26
|
+
description: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
dashboard: {
|
|
30
|
+
title: string;
|
|
31
|
+
subtitle: string;
|
|
32
|
+
purpose: string;
|
|
33
|
+
metrics: {
|
|
34
|
+
total: string;
|
|
35
|
+
active: string;
|
|
36
|
+
completed: string;
|
|
37
|
+
};
|
|
38
|
+
nextSteps: {
|
|
39
|
+
title: string;
|
|
40
|
+
create: {
|
|
41
|
+
label: string;
|
|
42
|
+
description: string;
|
|
43
|
+
};
|
|
44
|
+
template: {
|
|
45
|
+
label: string;
|
|
46
|
+
description: string;
|
|
47
|
+
};
|
|
48
|
+
history: {
|
|
49
|
+
label: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
actions: {
|
|
54
|
+
newExport: {
|
|
55
|
+
label: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
history: {
|
|
59
|
+
label: string;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
62
|
+
templates: {
|
|
63
|
+
label: string;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
66
|
+
activeJobs: {
|
|
67
|
+
label: string;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
active: {
|
|
72
|
+
title: string;
|
|
73
|
+
description: string;
|
|
74
|
+
};
|
|
75
|
+
recent: {
|
|
76
|
+
title: string;
|
|
77
|
+
description: string;
|
|
78
|
+
actions: {
|
|
79
|
+
viewAll: string;
|
|
80
|
+
};
|
|
81
|
+
entitiesCount: string;
|
|
82
|
+
};
|
|
83
|
+
empty: {
|
|
84
|
+
title: string;
|
|
85
|
+
description: string;
|
|
86
|
+
actions: {
|
|
87
|
+
createFirst: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
create: {
|
|
92
|
+
title: string;
|
|
93
|
+
purpose: string;
|
|
94
|
+
steps: {
|
|
95
|
+
entities: string;
|
|
96
|
+
options: string;
|
|
97
|
+
review: string;
|
|
98
|
+
};
|
|
99
|
+
select: {
|
|
100
|
+
title: string;
|
|
101
|
+
description: string;
|
|
102
|
+
emptyTitle: string;
|
|
103
|
+
empty: string;
|
|
104
|
+
unavailableSection: string;
|
|
105
|
+
unavailable: string;
|
|
106
|
+
unavailableHint: string;
|
|
107
|
+
};
|
|
108
|
+
entities: {
|
|
109
|
+
users: {
|
|
110
|
+
label: string;
|
|
111
|
+
description: string;
|
|
112
|
+
};
|
|
113
|
+
projects: {
|
|
114
|
+
label: string;
|
|
115
|
+
description: string;
|
|
116
|
+
};
|
|
117
|
+
tasks: {
|
|
118
|
+
label: string;
|
|
119
|
+
description: string;
|
|
120
|
+
};
|
|
121
|
+
files: {
|
|
122
|
+
label: string;
|
|
123
|
+
description: string;
|
|
124
|
+
};
|
|
125
|
+
conversations: {
|
|
126
|
+
label: string;
|
|
127
|
+
description: string;
|
|
128
|
+
};
|
|
129
|
+
tags: {
|
|
130
|
+
label: string;
|
|
131
|
+
description: string;
|
|
132
|
+
};
|
|
133
|
+
activity: {
|
|
134
|
+
label: string;
|
|
135
|
+
description: string;
|
|
136
|
+
};
|
|
137
|
+
calendar: {
|
|
138
|
+
label: string;
|
|
139
|
+
description: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
scope: {
|
|
143
|
+
individual: {
|
|
144
|
+
label: string;
|
|
145
|
+
description: string;
|
|
146
|
+
};
|
|
147
|
+
workspaceAdmin: {
|
|
148
|
+
label: string;
|
|
149
|
+
description: string;
|
|
150
|
+
required: string;
|
|
151
|
+
};
|
|
152
|
+
orgAdmin: {
|
|
153
|
+
label: string;
|
|
154
|
+
description: string;
|
|
155
|
+
required: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
options: {
|
|
159
|
+
title: string;
|
|
160
|
+
scope: string;
|
|
161
|
+
name: string;
|
|
162
|
+
namePlaceholder: string;
|
|
163
|
+
outputFormat: string;
|
|
164
|
+
archiveFormat: string;
|
|
165
|
+
archiveDescription: string;
|
|
166
|
+
advancedToggle: string;
|
|
167
|
+
dateRange: string;
|
|
168
|
+
dateFrom: string;
|
|
169
|
+
dateTo: string;
|
|
170
|
+
noTemplate: string;
|
|
171
|
+
noTemplates: string;
|
|
172
|
+
createTemplateLink: string;
|
|
173
|
+
reuseTemplateHint: string;
|
|
174
|
+
};
|
|
175
|
+
review: {
|
|
176
|
+
title: string;
|
|
177
|
+
fields: {
|
|
178
|
+
name: string;
|
|
179
|
+
scope: string;
|
|
180
|
+
entityTypes: string;
|
|
181
|
+
format: string;
|
|
182
|
+
archive: string;
|
|
183
|
+
dateRange: string;
|
|
184
|
+
template: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
actions: {
|
|
188
|
+
back: string;
|
|
189
|
+
backToDashboard: string;
|
|
190
|
+
cancel: string;
|
|
191
|
+
next: string;
|
|
192
|
+
startExport: string;
|
|
193
|
+
};
|
|
194
|
+
errors: {
|
|
195
|
+
selectEntity: string;
|
|
196
|
+
exportNameRequired: string;
|
|
197
|
+
quotaReached: string;
|
|
198
|
+
createFailed: string;
|
|
199
|
+
};
|
|
200
|
+
shared: {
|
|
201
|
+
optional: string;
|
|
202
|
+
};
|
|
203
|
+
quotaDialog: {
|
|
204
|
+
title: string;
|
|
205
|
+
description: string;
|
|
206
|
+
dismiss: string;
|
|
207
|
+
viewBilling: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
history: {
|
|
211
|
+
title: string;
|
|
212
|
+
subtitle: string;
|
|
213
|
+
purpose: string;
|
|
214
|
+
actions: {
|
|
215
|
+
newExport: string;
|
|
216
|
+
};
|
|
217
|
+
search: {
|
|
218
|
+
placeholder: string;
|
|
219
|
+
};
|
|
220
|
+
filters: {
|
|
221
|
+
show: string;
|
|
222
|
+
hide: string;
|
|
223
|
+
title: string;
|
|
224
|
+
clearAll: string;
|
|
225
|
+
status: {
|
|
226
|
+
label: string;
|
|
227
|
+
all: string;
|
|
228
|
+
};
|
|
229
|
+
format: {
|
|
230
|
+
label: string;
|
|
231
|
+
all: string;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
error: {
|
|
235
|
+
title: string;
|
|
236
|
+
retry: string;
|
|
237
|
+
};
|
|
238
|
+
pagination: {
|
|
239
|
+
showing: string;
|
|
240
|
+
page: string;
|
|
241
|
+
prev: string;
|
|
242
|
+
next: string;
|
|
243
|
+
};
|
|
244
|
+
empty: {
|
|
245
|
+
title: string;
|
|
246
|
+
description: string;
|
|
247
|
+
actions: {
|
|
248
|
+
createFirst: string;
|
|
249
|
+
};
|
|
250
|
+
filtered: {
|
|
251
|
+
title: string;
|
|
252
|
+
description: string;
|
|
253
|
+
actions: {
|
|
254
|
+
clear: string;
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
templates: {
|
|
260
|
+
title: string;
|
|
261
|
+
subtitle: string;
|
|
262
|
+
purpose: string;
|
|
263
|
+
actions: {
|
|
264
|
+
newTemplate: string;
|
|
265
|
+
newExport: string;
|
|
266
|
+
};
|
|
267
|
+
summary: {
|
|
268
|
+
available: string;
|
|
269
|
+
};
|
|
270
|
+
form: {
|
|
271
|
+
title: string;
|
|
272
|
+
fields: {
|
|
273
|
+
name: string;
|
|
274
|
+
namePlaceholder: string;
|
|
275
|
+
format: string;
|
|
276
|
+
description: string;
|
|
277
|
+
descriptionPlaceholder: string;
|
|
278
|
+
entityTypes: string;
|
|
279
|
+
entityTypesHint: string;
|
|
280
|
+
};
|
|
281
|
+
actions: {
|
|
282
|
+
create: string;
|
|
283
|
+
cancel: string;
|
|
284
|
+
};
|
|
285
|
+
errors: {
|
|
286
|
+
nameRequired: string;
|
|
287
|
+
entityRequired: string;
|
|
288
|
+
createFailed: string;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
search: {
|
|
292
|
+
placeholder: string;
|
|
293
|
+
};
|
|
294
|
+
card: {
|
|
295
|
+
default: string;
|
|
296
|
+
moreEntities: string;
|
|
297
|
+
deleteAriaLabel: string;
|
|
298
|
+
};
|
|
299
|
+
empty: {
|
|
300
|
+
title: string;
|
|
301
|
+
description: string;
|
|
302
|
+
actions: {
|
|
303
|
+
newTemplate: string;
|
|
304
|
+
};
|
|
305
|
+
filtered: {
|
|
306
|
+
title: string;
|
|
307
|
+
description: string;
|
|
308
|
+
actions: {
|
|
309
|
+
clear: string;
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
delete: {
|
|
314
|
+
title: string;
|
|
315
|
+
description: string;
|
|
316
|
+
cancel: string;
|
|
317
|
+
confirmAction: string;
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
detail: {
|
|
321
|
+
loading: string;
|
|
322
|
+
notFound: {
|
|
323
|
+
title: string;
|
|
324
|
+
heading: string;
|
|
325
|
+
description: string;
|
|
326
|
+
};
|
|
327
|
+
actions: {
|
|
328
|
+
back: string;
|
|
329
|
+
backToDashboard: string;
|
|
330
|
+
download: string;
|
|
331
|
+
retry: string;
|
|
332
|
+
cancel: string;
|
|
333
|
+
delete: string;
|
|
334
|
+
};
|
|
335
|
+
nextSteps: {
|
|
336
|
+
title: string;
|
|
337
|
+
download: {
|
|
338
|
+
label: string;
|
|
339
|
+
description: string;
|
|
340
|
+
};
|
|
341
|
+
retry: {
|
|
342
|
+
label: string;
|
|
343
|
+
description: string;
|
|
344
|
+
};
|
|
345
|
+
history: {
|
|
346
|
+
label: string;
|
|
347
|
+
description: string;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
error: {
|
|
351
|
+
title: string;
|
|
352
|
+
};
|
|
353
|
+
info: {
|
|
354
|
+
format: string;
|
|
355
|
+
archive: string;
|
|
356
|
+
totalSize: string;
|
|
357
|
+
created: string;
|
|
358
|
+
};
|
|
359
|
+
progress: {
|
|
360
|
+
entitiesProcessed: string;
|
|
361
|
+
};
|
|
362
|
+
parts: {
|
|
363
|
+
title: string;
|
|
364
|
+
description: string;
|
|
365
|
+
download: string;
|
|
366
|
+
pending: string;
|
|
367
|
+
expires: string;
|
|
368
|
+
};
|
|
369
|
+
complete: {
|
|
370
|
+
title: string;
|
|
371
|
+
noParts: string;
|
|
372
|
+
};
|
|
373
|
+
confirm: {
|
|
374
|
+
keep: string;
|
|
375
|
+
cancel: {
|
|
376
|
+
title: string;
|
|
377
|
+
description: string;
|
|
378
|
+
};
|
|
379
|
+
delete: {
|
|
380
|
+
title: string;
|
|
381
|
+
description: string;
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
templateDetail: {
|
|
386
|
+
loading: string;
|
|
387
|
+
notFound: {
|
|
388
|
+
title: string;
|
|
389
|
+
heading: string;
|
|
390
|
+
description: string;
|
|
391
|
+
};
|
|
392
|
+
actions: {
|
|
393
|
+
backToTemplates: string;
|
|
394
|
+
use: string;
|
|
395
|
+
delete: string;
|
|
396
|
+
};
|
|
397
|
+
badge: {
|
|
398
|
+
default: string;
|
|
399
|
+
custom: string;
|
|
400
|
+
};
|
|
401
|
+
info: {
|
|
402
|
+
format: string;
|
|
403
|
+
archive: string;
|
|
404
|
+
entityTypes: string;
|
|
405
|
+
entityTypesCount: string;
|
|
406
|
+
lastUpdated: string;
|
|
407
|
+
};
|
|
408
|
+
nextSteps: {
|
|
409
|
+
title: string;
|
|
410
|
+
use: {
|
|
411
|
+
label: string;
|
|
412
|
+
description: string;
|
|
413
|
+
};
|
|
414
|
+
browse: {
|
|
415
|
+
label: string;
|
|
416
|
+
description: string;
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
entityTypes: {
|
|
420
|
+
title: string;
|
|
421
|
+
description: string;
|
|
422
|
+
};
|
|
423
|
+
delete: {
|
|
424
|
+
title: string;
|
|
425
|
+
description: string;
|
|
426
|
+
keep: string;
|
|
427
|
+
confirmAction: string;
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
shared: {
|
|
431
|
+
status: {
|
|
432
|
+
created: string;
|
|
433
|
+
queued: string;
|
|
434
|
+
running: string;
|
|
435
|
+
completed: string;
|
|
436
|
+
failed: string;
|
|
437
|
+
cancelled: string;
|
|
438
|
+
expired: string;
|
|
439
|
+
deleted: string;
|
|
440
|
+
};
|
|
441
|
+
};
|
|
442
|
+
progress: {
|
|
443
|
+
label: string;
|
|
444
|
+
};
|
|
445
|
+
format: {
|
|
446
|
+
csv: string;
|
|
447
|
+
json: string;
|
|
448
|
+
};
|
|
449
|
+
archive: {
|
|
450
|
+
zip: string;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/translations/en.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0e1B,CAAC"}
|