@voyantjs/i18n 0.16.0

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.
Files changed (85) hide show
  1. package/dist/admin/app-dmc.d.ts +22 -0
  2. package/dist/admin/app-dmc.d.ts.map +1 -0
  3. package/dist/admin/app-dmc.js +29 -0
  4. package/dist/admin/app-operator.d.ts +23 -0
  5. package/dist/admin/app-operator.d.ts.map +1 -0
  6. package/dist/admin/app-operator.js +17 -0
  7. package/dist/admin/auth.d.ts +247 -0
  8. package/dist/admin/auth.d.ts.map +1 -0
  9. package/dist/admin/auth.js +166 -0
  10. package/dist/admin/availability.d.ts +689 -0
  11. package/dist/admin/availability.d.ts.map +1 -0
  12. package/dist/admin/availability.js +686 -0
  13. package/dist/admin/bookings.d.ts +1067 -0
  14. package/dist/admin/bookings.d.ts.map +1 -0
  15. package/dist/admin/bookings.js +1064 -0
  16. package/dist/admin/chrome.d.ts +36 -0
  17. package/dist/admin/chrome.d.ts.map +1 -0
  18. package/dist/admin/chrome.js +24 -0
  19. package/dist/admin/contacts.d.ts +269 -0
  20. package/dist/admin/contacts.d.ts.map +1 -0
  21. package/dist/admin/contacts.js +266 -0
  22. package/dist/admin/core-dmc.d.ts +21 -0
  23. package/dist/admin/core-dmc.d.ts.map +1 -0
  24. package/dist/admin/core-dmc.js +14 -0
  25. package/dist/admin/core-operator.d.ts +117 -0
  26. package/dist/admin/core-operator.d.ts.map +1 -0
  27. package/dist/admin/core-operator.js +78 -0
  28. package/dist/admin/crm-operator.d.ts +579 -0
  29. package/dist/admin/crm-operator.d.ts.map +1 -0
  30. package/dist/admin/crm-operator.js +576 -0
  31. package/dist/admin/dashboard-operator.d.ts +83 -0
  32. package/dist/admin/dashboard-operator.d.ts.map +1 -0
  33. package/dist/admin/dashboard-operator.js +80 -0
  34. package/dist/admin/distribution-dmc.d.ts +1804 -0
  35. package/dist/admin/distribution-dmc.d.ts.map +1 -0
  36. package/dist/admin/distribution-dmc.js +1181 -0
  37. package/dist/admin/dmc-nav.d.ts +55 -0
  38. package/dist/admin/dmc-nav.d.ts.map +1 -0
  39. package/dist/admin/dmc-nav.js +38 -0
  40. package/dist/admin/finance.d.ts +377 -0
  41. package/dist/admin/finance.d.ts.map +1 -0
  42. package/dist/admin/finance.js +374 -0
  43. package/dist/admin/operator-nav.d.ts +76 -0
  44. package/dist/admin/operator-nav.d.ts.map +1 -0
  45. package/dist/admin/operator-nav.js +52 -0
  46. package/dist/admin/organizations.d.ts +87 -0
  47. package/dist/admin/organizations.d.ts.map +1 -0
  48. package/dist/admin/organizations.js +84 -0
  49. package/dist/admin/pricing-operator.d.ts +233 -0
  50. package/dist/admin/pricing-operator.d.ts.map +1 -0
  51. package/dist/admin/pricing-operator.js +230 -0
  52. package/dist/admin/products-dmc.d.ts +239 -0
  53. package/dist/admin/products-dmc.d.ts.map +1 -0
  54. package/dist/admin/products-dmc.js +236 -0
  55. package/dist/admin/products-operator.d.ts +999 -0
  56. package/dist/admin/products-operator.d.ts.map +1 -0
  57. package/dist/admin/products-operator.js +996 -0
  58. package/dist/admin/resources.d.ts +653 -0
  59. package/dist/admin/resources.d.ts.map +1 -0
  60. package/dist/admin/resources.js +650 -0
  61. package/dist/admin/settings-operator.d.ts +251 -0
  62. package/dist/admin/settings-operator.d.ts.map +1 -0
  63. package/dist/admin/settings-operator.js +248 -0
  64. package/dist/admin/suppliers-operator.d.ts +325 -0
  65. package/dist/admin/suppliers-operator.d.ts.map +1 -0
  66. package/dist/admin/suppliers-operator.js +322 -0
  67. package/dist/admin/suppliers.d.ts +259 -0
  68. package/dist/admin/suppliers.d.ts.map +1 -0
  69. package/dist/admin/suppliers.js +256 -0
  70. package/dist/admin/team.d.ts +102 -0
  71. package/dist/admin/team.d.ts.map +1 -0
  72. package/dist/admin/team.js +68 -0
  73. package/dist/index.d.ts +28 -0
  74. package/dist/index.d.ts.map +1 -0
  75. package/dist/index.js +27 -0
  76. package/dist/package-formatters.d.ts +9 -0
  77. package/dist/package-formatters.d.ts.map +1 -0
  78. package/dist/package-formatters.js +56 -0
  79. package/dist/package-runtime.d.ts +39 -0
  80. package/dist/package-runtime.d.ts.map +1 -0
  81. package/dist/package-runtime.js +60 -0
  82. package/dist/runtime.d.ts +33 -0
  83. package/dist/runtime.d.ts.map +1 -0
  84. package/dist/runtime.js +120 -0
  85. package/package.json +48 -0
@@ -0,0 +1,689 @@
1
+ import type { LocaleMessageSchema } from "../runtime.js";
2
+ export declare const adminAvailabilityMessages: {
3
+ en: {
4
+ availability: {
5
+ title: string;
6
+ description: string;
7
+ searchPlaceholder: string;
8
+ allProducts: string;
9
+ clearFilters: string;
10
+ verbOpened: string;
11
+ verbClosed: string;
12
+ verbActivated: string;
13
+ verbDeactivated: string;
14
+ tabSlots: string;
15
+ tabRules: string;
16
+ tabStartTimes: string;
17
+ tabCloseouts: string;
18
+ tabPickupPoints: string;
19
+ statusActive: string;
20
+ statusInactive: string;
21
+ statusOpen: string;
22
+ statusClosed: string;
23
+ statusSoldOut: string;
24
+ statusCancelled: string;
25
+ productLabel: string;
26
+ timezoneLabel: string;
27
+ recurrenceLabel: string;
28
+ maxPaxLabel: string;
29
+ activeLabel: string;
30
+ viewLabel: string;
31
+ openLabel: string;
32
+ labelLabel: string;
33
+ startLabel: string;
34
+ durationLabel: string;
35
+ statusLabel: string;
36
+ dateLabel: string;
37
+ startsAtLabel: string;
38
+ remainingPaxLabel: string;
39
+ slotLabel: string;
40
+ reasonLabel: string;
41
+ nameLabel: string;
42
+ locationLabel: string;
43
+ productLevelLabel: string;
44
+ overview: {
45
+ openSlotsTitle: string;
46
+ openSlotsDescription: string;
47
+ constrainedSlotsTitle: string;
48
+ constrainedSlotsDescription: string;
49
+ activeRulesTitle: string;
50
+ activeRulesDescription: string;
51
+ pickupPointsTitle: string;
52
+ pickupPointsDescription: string;
53
+ capacityWatchlistTitle: string;
54
+ capacityWatchlistEmpty: string;
55
+ coverageGapsTitle: string;
56
+ coverageGapsEmpty: string;
57
+ coverageGapDescription: string;
58
+ };
59
+ nouns: {
60
+ slotSingular: string;
61
+ slotPlural: string;
62
+ ruleSingular: string;
63
+ rulePlural: string;
64
+ startTimeSingular: string;
65
+ startTimePlural: string;
66
+ closeoutSingular: string;
67
+ closeoutPlural: string;
68
+ pickupPointSingular: string;
69
+ pickupPointPlural: string;
70
+ };
71
+ toasts: {
72
+ bulkUpdated: string;
73
+ bulkUpdatedPartial: string;
74
+ bulkDeleted: string;
75
+ bulkDeletedPartial: string;
76
+ };
77
+ tabs: {
78
+ slots: {
79
+ title: string;
80
+ description: string;
81
+ actionLabel: string;
82
+ emptyMessage: string;
83
+ bulkOpenButton: string;
84
+ bulkOpenConfirm: string;
85
+ bulkOpenTitle: string;
86
+ bulkOpenDescription: string;
87
+ bulkCloseButton: string;
88
+ bulkCloseConfirm: string;
89
+ bulkCloseTitle: string;
90
+ bulkCloseDescription: string;
91
+ bulkDeleteButton: string;
92
+ bulkDeleteConfirm: string;
93
+ bulkDeleteTitle: string;
94
+ bulkDeleteDescription: string;
95
+ };
96
+ rules: {
97
+ title: string;
98
+ description: string;
99
+ actionLabel: string;
100
+ emptyMessage: string;
101
+ bulkActivateButton: string;
102
+ bulkActivateConfirm: string;
103
+ bulkActivateTitle: string;
104
+ bulkActivateDescription: string;
105
+ bulkDeactivateButton: string;
106
+ bulkDeactivateConfirm: string;
107
+ bulkDeactivateTitle: string;
108
+ bulkDeactivateDescription: string;
109
+ bulkDeleteButton: string;
110
+ bulkDeleteConfirm: string;
111
+ bulkDeleteTitle: string;
112
+ bulkDeleteDescription: string;
113
+ };
114
+ startTimes: {
115
+ title: string;
116
+ description: string;
117
+ actionLabel: string;
118
+ emptyMessage: string;
119
+ bulkActivateButton: string;
120
+ bulkActivateConfirm: string;
121
+ bulkActivateTitle: string;
122
+ bulkActivateDescription: string;
123
+ bulkDeactivateButton: string;
124
+ bulkDeactivateConfirm: string;
125
+ bulkDeactivateTitle: string;
126
+ bulkDeactivateDescription: string;
127
+ bulkDeleteButton: string;
128
+ bulkDeleteConfirm: string;
129
+ bulkDeleteTitle: string;
130
+ bulkDeleteDescription: string;
131
+ };
132
+ closeouts: {
133
+ title: string;
134
+ description: string;
135
+ actionLabel: string;
136
+ emptyMessage: string;
137
+ bulkDeleteButton: string;
138
+ bulkDeleteConfirm: string;
139
+ bulkDeleteTitle: string;
140
+ bulkDeleteDescription: string;
141
+ };
142
+ pickupPoints: {
143
+ title: string;
144
+ description: string;
145
+ actionLabel: string;
146
+ emptyMessage: string;
147
+ bulkActivateButton: string;
148
+ bulkActivateConfirm: string;
149
+ bulkActivateTitle: string;
150
+ bulkActivateDescription: string;
151
+ bulkDeactivateButton: string;
152
+ bulkDeactivateConfirm: string;
153
+ bulkDeactivateTitle: string;
154
+ bulkDeactivateDescription: string;
155
+ bulkDeleteButton: string;
156
+ bulkDeleteConfirm: string;
157
+ bulkDeleteTitle: string;
158
+ bulkDeleteDescription: string;
159
+ };
160
+ };
161
+ details: {
162
+ backToAvailability: string;
163
+ openProduct: string;
164
+ delete: string;
165
+ yes: string;
166
+ no: string;
167
+ noValue: string;
168
+ createdLabel: string;
169
+ updatedLabel: string;
170
+ notesTitle: string;
171
+ rule: {
172
+ notFound: string;
173
+ pageTitle: string;
174
+ deleteConfirm: string;
175
+ detailsTitle: string;
176
+ capacityPolicyTitle: string;
177
+ maxPickupCapacityLabel: string;
178
+ minTotalPaxLabel: string;
179
+ cutoffMinutesLabel: string;
180
+ earlyBookingLimitLabel: string;
181
+ generatedSlotsTitle: string;
182
+ generatedSlotsEmpty: string;
183
+ };
184
+ slot: {
185
+ notFound: string;
186
+ deleteConfirm: string;
187
+ detailsTitle: string;
188
+ ruleLabel: string;
189
+ startTimeIdLabel: string;
190
+ endsAtLabel: string;
191
+ unlimitedLabel: string;
192
+ pastCutoffLabel: string;
193
+ tooEarlyLabel: string;
194
+ capacityStateTitle: string;
195
+ initialPaxLabel: string;
196
+ initialPickupsLabel: string;
197
+ remainingPickupsLabel: string;
198
+ remainingResourcesLabel: string;
199
+ pickupCapacityTitle: string;
200
+ pickupCapacityEmpty: string;
201
+ noLocationText: string;
202
+ initialLabel: string;
203
+ remainingLabel: string;
204
+ resourceAssignmentsTitle: string;
205
+ resourceAssignmentsEmpty: string;
206
+ unassignedResource: string;
207
+ bookingLabel: string;
208
+ poolLabel: string;
209
+ releasedLabel: string;
210
+ relatedCloseoutsTitle: string;
211
+ relatedCloseoutsEmpty: string;
212
+ createdByLabel: string;
213
+ };
214
+ startTime: {
215
+ notFound: string;
216
+ fallbackTitle: string;
217
+ deleteConfirm: string;
218
+ detailsTitle: string;
219
+ sortOrderLabel: string;
220
+ generatedSlotsTitle: string;
221
+ generatedSlotsEmpty: string;
222
+ };
223
+ };
224
+ dialogs: {
225
+ slot: {
226
+ validationProductRequired: string;
227
+ validationDateRequired: string;
228
+ validationStartsAtRequired: string;
229
+ validationTimezoneRequired: string;
230
+ editTitle: string;
231
+ newTitle: string;
232
+ productLabel: string;
233
+ selectProductPlaceholder: string;
234
+ ruleLabel: string;
235
+ optionalRulePlaceholder: string;
236
+ noRule: string;
237
+ startTimeLabel: string;
238
+ optionalStartTimePlaceholder: string;
239
+ noStartTime: string;
240
+ dateLabel: string;
241
+ timezoneLabel: string;
242
+ timezonePlaceholder: string;
243
+ startsAtLabel: string;
244
+ endsAtLabel: string;
245
+ statusLabel: string;
246
+ unlimitedLabel: string;
247
+ yes: string;
248
+ no: string;
249
+ initialPaxLabel: string;
250
+ remainingPaxLabel: string;
251
+ remainingResourcesLabel: string;
252
+ initialPickupsLabel: string;
253
+ remainingPickupsLabel: string;
254
+ pastCutoffTitle: string;
255
+ pastCutoffDescription: string;
256
+ tooEarlyTitle: string;
257
+ tooEarlyDescription: string;
258
+ notesLabel: string;
259
+ notesPlaceholder: string;
260
+ cancel: string;
261
+ save: string;
262
+ create: string;
263
+ };
264
+ rule: {
265
+ validationProductRequired: string;
266
+ validationTimezoneRequired: string;
267
+ validationRecurrenceRequired: string;
268
+ editTitle: string;
269
+ newTitle: string;
270
+ productLabel: string;
271
+ selectProductPlaceholder: string;
272
+ timezoneLabel: string;
273
+ timezonePlaceholder: string;
274
+ maxCapacityLabel: string;
275
+ recurrenceRuleLabel: string;
276
+ recurrenceRulePlaceholder: string;
277
+ maxPickupCapacityLabel: string;
278
+ minimumTotalPaxLabel: string;
279
+ cutoffMinutesLabel: string;
280
+ earlyBookingLimitMinutesLabel: string;
281
+ activeTitle: string;
282
+ activeDescription: string;
283
+ cancel: string;
284
+ save: string;
285
+ create: string;
286
+ };
287
+ startTime: {
288
+ validationProductRequired: string;
289
+ validationStartTimeRequired: string;
290
+ editTitle: string;
291
+ newTitle: string;
292
+ productLabel: string;
293
+ selectProductPlaceholder: string;
294
+ labelLabel: string;
295
+ labelPlaceholder: string;
296
+ startTimeLabel: string;
297
+ durationMinutesLabel: string;
298
+ sortOrderLabel: string;
299
+ activeTitle: string;
300
+ activeDescription: string;
301
+ cancel: string;
302
+ save: string;
303
+ create: string;
304
+ };
305
+ closeout: {
306
+ validationProductRequired: string;
307
+ validationDateRequired: string;
308
+ editTitle: string;
309
+ newTitle: string;
310
+ productLabel: string;
311
+ selectProductPlaceholder: string;
312
+ slotLabel: string;
313
+ optionalSlotPlaceholder: string;
314
+ productLevelOption: string;
315
+ dateLabel: string;
316
+ datePlaceholder: string;
317
+ reasonLabel: string;
318
+ reasonPlaceholder: string;
319
+ cancel: string;
320
+ save: string;
321
+ create: string;
322
+ };
323
+ pickupPoint: {
324
+ validationProductRequired: string;
325
+ validationNameRequired: string;
326
+ editTitle: string;
327
+ newTitle: string;
328
+ productLabel: string;
329
+ selectProductPlaceholder: string;
330
+ nameLabel: string;
331
+ namePlaceholder: string;
332
+ locationTextLabel: string;
333
+ locationTextPlaceholder: string;
334
+ descriptionLabel: string;
335
+ descriptionPlaceholder: string;
336
+ activeTitle: string;
337
+ activeDescription: string;
338
+ cancel: string;
339
+ save: string;
340
+ create: string;
341
+ };
342
+ };
343
+ };
344
+ };
345
+ ro: {
346
+ availability: {
347
+ title: string;
348
+ description: string;
349
+ searchPlaceholder: string;
350
+ allProducts: string;
351
+ clearFilters: string;
352
+ verbOpened: string;
353
+ verbClosed: string;
354
+ verbActivated: string;
355
+ verbDeactivated: string;
356
+ tabSlots: string;
357
+ tabRules: string;
358
+ tabStartTimes: string;
359
+ tabCloseouts: string;
360
+ tabPickupPoints: string;
361
+ statusActive: string;
362
+ statusInactive: string;
363
+ statusOpen: string;
364
+ statusClosed: string;
365
+ statusSoldOut: string;
366
+ statusCancelled: string;
367
+ productLabel: string;
368
+ timezoneLabel: string;
369
+ recurrenceLabel: string;
370
+ maxPaxLabel: string;
371
+ activeLabel: string;
372
+ viewLabel: string;
373
+ openLabel: string;
374
+ labelLabel: string;
375
+ startLabel: string;
376
+ durationLabel: string;
377
+ statusLabel: string;
378
+ dateLabel: string;
379
+ startsAtLabel: string;
380
+ remainingPaxLabel: string;
381
+ slotLabel: string;
382
+ reasonLabel: string;
383
+ nameLabel: string;
384
+ locationLabel: string;
385
+ productLevelLabel: string;
386
+ overview: {
387
+ openSlotsTitle: string;
388
+ openSlotsDescription: string;
389
+ constrainedSlotsTitle: string;
390
+ constrainedSlotsDescription: string;
391
+ activeRulesTitle: string;
392
+ activeRulesDescription: string;
393
+ pickupPointsTitle: string;
394
+ pickupPointsDescription: string;
395
+ capacityWatchlistTitle: string;
396
+ capacityWatchlistEmpty: string;
397
+ coverageGapsTitle: string;
398
+ coverageGapsEmpty: string;
399
+ coverageGapDescription: string;
400
+ };
401
+ nouns: {
402
+ slotSingular: string;
403
+ slotPlural: string;
404
+ ruleSingular: string;
405
+ rulePlural: string;
406
+ startTimeSingular: string;
407
+ startTimePlural: string;
408
+ closeoutSingular: string;
409
+ closeoutPlural: string;
410
+ pickupPointSingular: string;
411
+ pickupPointPlural: string;
412
+ };
413
+ toasts: {
414
+ bulkUpdated: string;
415
+ bulkUpdatedPartial: string;
416
+ bulkDeleted: string;
417
+ bulkDeletedPartial: string;
418
+ };
419
+ tabs: {
420
+ slots: {
421
+ title: string;
422
+ description: string;
423
+ actionLabel: string;
424
+ emptyMessage: string;
425
+ bulkOpenButton: string;
426
+ bulkOpenConfirm: string;
427
+ bulkOpenTitle: string;
428
+ bulkOpenDescription: string;
429
+ bulkCloseButton: string;
430
+ bulkCloseConfirm: string;
431
+ bulkCloseTitle: string;
432
+ bulkCloseDescription: string;
433
+ bulkDeleteButton: string;
434
+ bulkDeleteConfirm: string;
435
+ bulkDeleteTitle: string;
436
+ bulkDeleteDescription: string;
437
+ };
438
+ rules: {
439
+ title: string;
440
+ description: string;
441
+ actionLabel: string;
442
+ emptyMessage: string;
443
+ bulkActivateButton: string;
444
+ bulkActivateConfirm: string;
445
+ bulkActivateTitle: string;
446
+ bulkActivateDescription: string;
447
+ bulkDeactivateButton: string;
448
+ bulkDeactivateConfirm: string;
449
+ bulkDeactivateTitle: string;
450
+ bulkDeactivateDescription: string;
451
+ bulkDeleteButton: string;
452
+ bulkDeleteConfirm: string;
453
+ bulkDeleteTitle: string;
454
+ bulkDeleteDescription: string;
455
+ };
456
+ startTimes: {
457
+ title: string;
458
+ description: string;
459
+ actionLabel: string;
460
+ emptyMessage: string;
461
+ bulkActivateButton: string;
462
+ bulkActivateConfirm: string;
463
+ bulkActivateTitle: string;
464
+ bulkActivateDescription: string;
465
+ bulkDeactivateButton: string;
466
+ bulkDeactivateConfirm: string;
467
+ bulkDeactivateTitle: string;
468
+ bulkDeactivateDescription: string;
469
+ bulkDeleteButton: string;
470
+ bulkDeleteConfirm: string;
471
+ bulkDeleteTitle: string;
472
+ bulkDeleteDescription: string;
473
+ };
474
+ closeouts: {
475
+ title: string;
476
+ description: string;
477
+ actionLabel: string;
478
+ emptyMessage: string;
479
+ bulkDeleteButton: string;
480
+ bulkDeleteConfirm: string;
481
+ bulkDeleteTitle: string;
482
+ bulkDeleteDescription: string;
483
+ };
484
+ pickupPoints: {
485
+ title: string;
486
+ description: string;
487
+ actionLabel: string;
488
+ emptyMessage: string;
489
+ bulkActivateButton: string;
490
+ bulkActivateConfirm: string;
491
+ bulkActivateTitle: string;
492
+ bulkActivateDescription: string;
493
+ bulkDeactivateButton: string;
494
+ bulkDeactivateConfirm: string;
495
+ bulkDeactivateTitle: string;
496
+ bulkDeactivateDescription: string;
497
+ bulkDeleteButton: string;
498
+ bulkDeleteConfirm: string;
499
+ bulkDeleteTitle: string;
500
+ bulkDeleteDescription: string;
501
+ };
502
+ };
503
+ details: {
504
+ backToAvailability: string;
505
+ openProduct: string;
506
+ delete: string;
507
+ yes: string;
508
+ no: string;
509
+ noValue: string;
510
+ createdLabel: string;
511
+ updatedLabel: string;
512
+ notesTitle: string;
513
+ rule: {
514
+ notFound: string;
515
+ pageTitle: string;
516
+ deleteConfirm: string;
517
+ detailsTitle: string;
518
+ capacityPolicyTitle: string;
519
+ maxPickupCapacityLabel: string;
520
+ minTotalPaxLabel: string;
521
+ cutoffMinutesLabel: string;
522
+ earlyBookingLimitLabel: string;
523
+ generatedSlotsTitle: string;
524
+ generatedSlotsEmpty: string;
525
+ };
526
+ slot: {
527
+ notFound: string;
528
+ deleteConfirm: string;
529
+ detailsTitle: string;
530
+ ruleLabel: string;
531
+ startTimeIdLabel: string;
532
+ endsAtLabel: string;
533
+ unlimitedLabel: string;
534
+ pastCutoffLabel: string;
535
+ tooEarlyLabel: string;
536
+ capacityStateTitle: string;
537
+ initialPaxLabel: string;
538
+ initialPickupsLabel: string;
539
+ remainingPickupsLabel: string;
540
+ remainingResourcesLabel: string;
541
+ pickupCapacityTitle: string;
542
+ pickupCapacityEmpty: string;
543
+ noLocationText: string;
544
+ initialLabel: string;
545
+ remainingLabel: string;
546
+ resourceAssignmentsTitle: string;
547
+ resourceAssignmentsEmpty: string;
548
+ unassignedResource: string;
549
+ bookingLabel: string;
550
+ poolLabel: string;
551
+ releasedLabel: string;
552
+ relatedCloseoutsTitle: string;
553
+ relatedCloseoutsEmpty: string;
554
+ createdByLabel: string;
555
+ };
556
+ startTime: {
557
+ notFound: string;
558
+ fallbackTitle: string;
559
+ deleteConfirm: string;
560
+ detailsTitle: string;
561
+ sortOrderLabel: string;
562
+ generatedSlotsTitle: string;
563
+ generatedSlotsEmpty: string;
564
+ };
565
+ };
566
+ dialogs: {
567
+ slot: {
568
+ validationProductRequired: string;
569
+ validationDateRequired: string;
570
+ validationStartsAtRequired: string;
571
+ validationTimezoneRequired: string;
572
+ editTitle: string;
573
+ newTitle: string;
574
+ productLabel: string;
575
+ selectProductPlaceholder: string;
576
+ ruleLabel: string;
577
+ optionalRulePlaceholder: string;
578
+ noRule: string;
579
+ startTimeLabel: string;
580
+ optionalStartTimePlaceholder: string;
581
+ noStartTime: string;
582
+ dateLabel: string;
583
+ timezoneLabel: string;
584
+ timezonePlaceholder: string;
585
+ startsAtLabel: string;
586
+ endsAtLabel: string;
587
+ statusLabel: string;
588
+ unlimitedLabel: string;
589
+ yes: string;
590
+ no: string;
591
+ initialPaxLabel: string;
592
+ remainingPaxLabel: string;
593
+ remainingResourcesLabel: string;
594
+ initialPickupsLabel: string;
595
+ remainingPickupsLabel: string;
596
+ pastCutoffTitle: string;
597
+ pastCutoffDescription: string;
598
+ tooEarlyTitle: string;
599
+ tooEarlyDescription: string;
600
+ notesLabel: string;
601
+ notesPlaceholder: string;
602
+ cancel: string;
603
+ save: string;
604
+ create: string;
605
+ };
606
+ rule: {
607
+ validationProductRequired: string;
608
+ validationTimezoneRequired: string;
609
+ validationRecurrenceRequired: string;
610
+ editTitle: string;
611
+ newTitle: string;
612
+ productLabel: string;
613
+ selectProductPlaceholder: string;
614
+ timezoneLabel: string;
615
+ timezonePlaceholder: string;
616
+ maxCapacityLabel: string;
617
+ recurrenceRuleLabel: string;
618
+ recurrenceRulePlaceholder: string;
619
+ maxPickupCapacityLabel: string;
620
+ minimumTotalPaxLabel: string;
621
+ cutoffMinutesLabel: string;
622
+ earlyBookingLimitMinutesLabel: string;
623
+ activeTitle: string;
624
+ activeDescription: string;
625
+ cancel: string;
626
+ save: string;
627
+ create: string;
628
+ };
629
+ startTime: {
630
+ validationProductRequired: string;
631
+ validationStartTimeRequired: string;
632
+ editTitle: string;
633
+ newTitle: string;
634
+ productLabel: string;
635
+ selectProductPlaceholder: string;
636
+ labelLabel: string;
637
+ labelPlaceholder: string;
638
+ startTimeLabel: string;
639
+ durationMinutesLabel: string;
640
+ sortOrderLabel: string;
641
+ activeTitle: string;
642
+ activeDescription: string;
643
+ cancel: string;
644
+ save: string;
645
+ create: string;
646
+ };
647
+ closeout: {
648
+ validationProductRequired: string;
649
+ validationDateRequired: string;
650
+ editTitle: string;
651
+ newTitle: string;
652
+ productLabel: string;
653
+ selectProductPlaceholder: string;
654
+ slotLabel: string;
655
+ optionalSlotPlaceholder: string;
656
+ productLevelOption: string;
657
+ dateLabel: string;
658
+ datePlaceholder: string;
659
+ reasonLabel: string;
660
+ reasonPlaceholder: string;
661
+ cancel: string;
662
+ save: string;
663
+ create: string;
664
+ };
665
+ pickupPoint: {
666
+ validationProductRequired: string;
667
+ validationNameRequired: string;
668
+ editTitle: string;
669
+ newTitle: string;
670
+ productLabel: string;
671
+ selectProductPlaceholder: string;
672
+ nameLabel: string;
673
+ namePlaceholder: string;
674
+ locationTextLabel: string;
675
+ locationTextPlaceholder: string;
676
+ descriptionLabel: string;
677
+ descriptionPlaceholder: string;
678
+ activeTitle: string;
679
+ activeDescription: string;
680
+ cancel: string;
681
+ save: string;
682
+ create: string;
683
+ };
684
+ };
685
+ };
686
+ };
687
+ };
688
+ export type AdminAvailabilityMessages = LocaleMessageSchema<(typeof adminAvailabilityMessages)["en"]>;
689
+ //# sourceMappingURL=availability.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"availability.d.ts","sourceRoot":"","sources":["../../src/admin/availability.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAysBrC,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG,mBAAmB,CACzD,CAAC,OAAO,yBAAyB,CAAC,CAAC,IAAI,CAAC,CACzC,CAAA"}