@voyantjs/i18n 0.19.0 → 0.20.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.
@@ -1,101 +1,27 @@
1
1
  import type { LocaleMessageSchema } from "../runtime.js";
2
+ /**
3
+ * Page-level booking strings owned by the admin shell — list page, detail
4
+ * page chrome (tabs, summary, actions). Component-level strings (item list,
5
+ * dialogs, traveler list, etc.) live in `@voyantjs/bookings-ui`'s own i18n
6
+ * bundle and are wired via `<BookingsUiMessagesProvider>` in each template's
7
+ * workspace layout.
8
+ */
2
9
  export declare const adminBookingsMessages: {
3
10
  en: {
4
11
  bookings: {
5
12
  list: {
6
13
  pageTitle: string;
7
14
  pageDescription: string;
8
- searchPlaceholder: string;
9
- newBooking: string;
10
15
  tableBookingNumber: string;
11
16
  tableStatus: string;
12
17
  tableSellAmount: string;
13
18
  tablePax: string;
14
19
  tableStartDate: string;
15
- loadFailed: string;
16
- empty: string;
17
- noValue: string;
18
- statusDraft: string;
19
- statusConfirmed: string;
20
- statusInProgress: string;
21
- statusCompleted: string;
22
- statusCancelled: string;
23
- paginationShowing: string;
24
- paginationPage: string;
25
- paginationPrevious: string;
26
- paginationNext: string;
27
- };
28
- dialog: {
29
- editTitle: string;
30
- newTitle: string;
31
- bookingNumberLabel: string;
32
- bookingNumberPlaceholder: string;
33
- statusLabel: string;
34
- sellCurrencyLabel: string;
35
- travelDatesLabel: string;
36
- travelDatesPlaceholder: string;
37
- sellAmountLabel: string;
38
- costAmountLabel: string;
39
- paxLabel: string;
40
- paxPlaceholder: string;
41
- internalNotesLabel: string;
42
- internalNotesPlaceholder: string;
43
20
  statusDraft: string;
44
21
  statusConfirmed: string;
45
22
  statusInProgress: string;
46
23
  statusCompleted: string;
47
24
  statusCancelled: string;
48
- validationBookingNumberRequired: string;
49
- validationIsoCurrency: string;
50
- cancel: string;
51
- saveChanges: string;
52
- create: string;
53
- };
54
- create: {
55
- title: string;
56
- productLabel: string;
57
- productSearchPlaceholder: string;
58
- productSelectPlaceholder: string;
59
- optionLabel: string;
60
- optionNone: string;
61
- departureLabel: string;
62
- departureSelectPlaceholder: string;
63
- departureNone: string;
64
- departureEmpty: string;
65
- departureClosed: string;
66
- personLabel: string;
67
- createNewPerson: string;
68
- selectExistingPerson: string;
69
- personSearchPlaceholder: string;
70
- personSelectPlaceholder: string;
71
- firstNameLabel: string;
72
- firstNamePlaceholder: string;
73
- lastNameLabel: string;
74
- lastNamePlaceholder: string;
75
- emailLabel: string;
76
- emailPlaceholder: string;
77
- phoneLabel: string;
78
- phonePlaceholder: string;
79
- organizationLabel: string;
80
- organizationSearchPlaceholder: string;
81
- organizationNone: string;
82
- sharedRoomLabel: string;
83
- sharedRoomCreate: string;
84
- sharedRoomJoin: string;
85
- sharedRoomSelectPlaceholder: string;
86
- sharedRoomNoGroups: string;
87
- sharedRoomCreateHint: string;
88
- notesLabel: string;
89
- notesPlaceholder: string;
90
- confirmAfterCreateLabel: string;
91
- confirmAfterCreateHint: string;
92
- errorSelectProduct: string;
93
- errorSelectPerson: string;
94
- errorNameRequired: string;
95
- errorSelectSharedRoom: string;
96
- errorCreateFailed: string;
97
- cancel: string;
98
- create: string;
99
25
  };
100
26
  detail: {
101
27
  notFound: string;
@@ -123,97 +49,6 @@ export declare const adminBookingsMessages: {
123
49
  internalNotesLabel: string;
124
50
  tbd: string;
125
51
  noValue: string;
126
- items: {
127
- title: string;
128
- addAction: string;
129
- empty: string;
130
- tableTitle: string;
131
- tableType: string;
132
- tableStatus: string;
133
- tableQuantity: string;
134
- tableTotal: string;
135
- tableServiceDate: string;
136
- editAction: string;
137
- deleteAction: string;
138
- deleteConfirm: string;
139
- typeUnit: string;
140
- typeExtra: string;
141
- typeService: string;
142
- typeFee: string;
143
- typeTax: string;
144
- typeDiscount: string;
145
- typeAdjustment: string;
146
- typeAccommodation: string;
147
- typeTransport: string;
148
- typeOther: string;
149
- statusDraft: string;
150
- statusOnHold: string;
151
- statusConfirmed: string;
152
- statusCancelled: string;
153
- statusExpired: string;
154
- statusFulfilled: string;
155
- };
156
- travelers: {
157
- title: string;
158
- addAction: string;
159
- empty: string;
160
- tableName: string;
161
- tableEmail: string;
162
- tablePhone: string;
163
- deleteConfirm: string;
164
- };
165
- notes: {
166
- title: string;
167
- addAction: string;
168
- empty: string;
169
- deleteConfirm: string;
170
- deleteAriaLabel: string;
171
- };
172
- itemDialog: {
173
- editTitle: string;
174
- newTitle: string;
175
- titleLabel: string;
176
- titlePlaceholder: string;
177
- typeLabel: string;
178
- statusLabel: string;
179
- quantityLabel: string;
180
- sellCurrencyLabel: string;
181
- unitSellLabel: string;
182
- totalSellLabel: string;
183
- costCurrencyLabel: string;
184
- unitCostLabel: string;
185
- totalCostLabel: string;
186
- serviceDateLabel: string;
187
- serviceDatePlaceholder: string;
188
- descriptionLabel: string;
189
- descriptionPlaceholder: string;
190
- notesLabel: string;
191
- notesPlaceholder: string;
192
- validationTitleRequired: string;
193
- cancel: string;
194
- saveChanges: string;
195
- create: string;
196
- };
197
- travelerDialog: {
198
- editTitle: string;
199
- newTitle: string;
200
- firstNameLabel: string;
201
- firstNamePlaceholder: string;
202
- lastNameLabel: string;
203
- lastNamePlaceholder: string;
204
- emailLabel: string;
205
- emailPlaceholder: string;
206
- phoneLabel: string;
207
- phonePlaceholder: string;
208
- specialRequestsLabel: string;
209
- specialRequestsPlaceholder: string;
210
- validationFirstNameRequired: string;
211
- validationLastNameRequired: string;
212
- validationEmailInvalid: string;
213
- cancel: string;
214
- saveChanges: string;
215
- create: string;
216
- };
217
52
  noteDialog: {
218
53
  title: string;
219
54
  noteLabel: string;
@@ -221,313 +56,6 @@ export declare const adminBookingsMessages: {
221
56
  cancel: string;
222
57
  create: string;
223
58
  };
224
- statusChangeDialog: {
225
- title: string;
226
- newStatusLabel: string;
227
- noteLabel: string;
228
- notePlaceholder: string;
229
- statusDraft: string;
230
- statusOnHold: string;
231
- statusConfirmed: string;
232
- statusInProgress: string;
233
- statusCompleted: string;
234
- statusCancelled: string;
235
- statusExpired: string;
236
- cancel: string;
237
- submit: string;
238
- };
239
- documentDialog: {
240
- title: string;
241
- typeLabel: string;
242
- travelerLabel: string;
243
- bookingWide: string;
244
- fileLabel: string;
245
- fileHelperText: string;
246
- expiresAtLabel: string;
247
- expiresAtPlaceholder: string;
248
- notesLabel: string;
249
- notesPlaceholder: string;
250
- validationFileNameRequired: string;
251
- validationFileUrlInvalid: string;
252
- cancel: string;
253
- create: string;
254
- typeVisa: string;
255
- typeInsurance: string;
256
- typeHealth: string;
257
- typePassportCopy: string;
258
- typeOther: string;
259
- uploadIdle: string;
260
- uploadAcceptedPrefix: string;
261
- uploadUploading: string;
262
- uploadRemoveAriaLabel: string;
263
- uploadFailed: string;
264
- uploadFileTooLarge: string;
265
- };
266
- guaranteeDialog: {
267
- editTitle: string;
268
- newTitle: string;
269
- typeLabel: string;
270
- statusLabel: string;
271
- currencyLabel: string;
272
- amountLabel: string;
273
- providerLabel: string;
274
- providerPlaceholder: string;
275
- referenceLabel: string;
276
- referencePlaceholder: string;
277
- expiresAtLabel: string;
278
- expiresAtPlaceholder: string;
279
- notesLabel: string;
280
- notesPlaceholder: string;
281
- cancel: string;
282
- saveChanges: string;
283
- create: string;
284
- typeDeposit: string;
285
- typeCreditCard: string;
286
- typePreauth: string;
287
- typeCardOnFile: string;
288
- typeBankTransfer: string;
289
- typeVoucher: string;
290
- typeAgencyLetter: string;
291
- typeOther: string;
292
- statusPending: string;
293
- statusActive: string;
294
- statusReleased: string;
295
- statusFailed: string;
296
- statusCancelled: string;
297
- statusExpired: string;
298
- };
299
- paymentScheduleDialog: {
300
- editTitle: string;
301
- newTitle: string;
302
- typeLabel: string;
303
- statusLabel: string;
304
- dueDateLabel: string;
305
- dueDatePlaceholder: string;
306
- currencyLabel: string;
307
- amountLabel: string;
308
- notesLabel: string;
309
- notesPlaceholder: string;
310
- validationDueDateRequired: string;
311
- validationAmountRequired: string;
312
- cancel: string;
313
- saveChanges: string;
314
- create: string;
315
- typeDeposit: string;
316
- typeInstallment: string;
317
- typeBalance: string;
318
- typeHold: string;
319
- typeOther: string;
320
- statusPending: string;
321
- statusDue: string;
322
- statusPaid: string;
323
- statusWaived: string;
324
- statusCancelled: string;
325
- statusExpired: string;
326
- };
327
- supplierDialog: {
328
- editTitle: string;
329
- newTitle: string;
330
- serviceNameLabel: string;
331
- serviceNamePlaceholder: string;
332
- statusLabel: string;
333
- costCurrencyLabel: string;
334
- costAmountLabel: string;
335
- supplierReferenceLabel: string;
336
- supplierReferencePlaceholder: string;
337
- notesLabel: string;
338
- notesPlaceholder: string;
339
- validationServiceNameRequired: string;
340
- validationCostCurrency: string;
341
- cancel: string;
342
- saveChanges: string;
343
- create: string;
344
- statusPending: string;
345
- statusConfirmed: string;
346
- statusRejected: string;
347
- statusCancelled: string;
348
- };
349
- cancellationDialog: {
350
- title: string;
351
- bookingLabel: string;
352
- startDateLabel: string;
353
- startDateTbd: string;
354
- totalLabel: string;
355
- daysBeforeDepartureLabel: string;
356
- resolvingPolicy: string;
357
- noPolicy: string;
358
- applicablePolicyLabel: string;
359
- calculatingRefund: string;
360
- refundLabel: string;
361
- penaltyLabel: string;
362
- ruleLabel: string;
363
- noAmount: string;
364
- reasonLabel: string;
365
- reasonPlaceholder: string;
366
- errorFallback: string;
367
- close: string;
368
- confirm: string;
369
- refundTypeCash: string;
370
- refundTypeCredit: string;
371
- refundTypeCashOrCredit: string;
372
- refundTypeNone: string;
373
- ruleDaysTemplate: string;
374
- };
375
- groupLinkDialog: {
376
- title: string;
377
- joinExisting: string;
378
- createNew: string;
379
- existingGroupsLabel: string;
380
- selectPlaceholder: string;
381
- noExistingGroups: string;
382
- filteredHint: string;
383
- groupLabelLabel: string;
384
- groupLabelPlaceholder: string;
385
- primaryHint: string;
386
- validationSelectGroup: string;
387
- createDefaultLabelPrefix: string;
388
- linkFailed: string;
389
- cancel: string;
390
- createAndLink: string;
391
- linkToGroup: string;
392
- };
393
- groupSection: {
394
- title: string;
395
- removeAction: string;
396
- linkAction: string;
397
- empty: string;
398
- groupLabel: string;
399
- kindSharedRoom: string;
400
- siblingsLabel: string;
401
- siblingsEmpty: string;
402
- primaryBadge: string;
403
- removeConfirm: string;
404
- };
405
- itemParticipants: {
406
- title: string;
407
- empty: string;
408
- primaryBadge: string;
409
- removeConfirm: string;
410
- selectTravelerPlaceholder: string;
411
- selectPassengerPlaceholder: string;
412
- roleTraveler: string;
413
- roleOccupant: string;
414
- rolePrimaryContact: string;
415
- roleServiceAssignee: string;
416
- roleBeneficiary: string;
417
- roleOther: string;
418
- assignAction: string;
419
- };
420
- payments: {
421
- title: string;
422
- empty: string;
423
- tableInvoice: string;
424
- tableMethod: string;
425
- tableStatus: string;
426
- tableAmount: string;
427
- tableDate: string;
428
- tableReference: string;
429
- methodBankTransfer: string;
430
- methodCreditCard: string;
431
- methodCash: string;
432
- methodCheque: string;
433
- methodOther: string;
434
- statusPending: string;
435
- statusCompleted: string;
436
- statusFailed: string;
437
- statusRefunded: string;
438
- };
439
- paymentSchedules: {
440
- title: string;
441
- addAction: string;
442
- empty: string;
443
- tableType: string;
444
- tableStatus: string;
445
- tableDueDate: string;
446
- tableAmount: string;
447
- tableNotes: string;
448
- deleteConfirm: string;
449
- typeDeposit: string;
450
- typeInterim: string;
451
- typeFinal: string;
452
- typeCustom: string;
453
- statusPending: string;
454
- statusDue: string;
455
- statusPaid: string;
456
- statusWaived: string;
457
- statusCancelled: string;
458
- statusExpired: string;
459
- };
460
- guarantees: {
461
- title: string;
462
- addAction: string;
463
- empty: string;
464
- tableType: string;
465
- tableStatus: string;
466
- tableAmount: string;
467
- tableProvider: string;
468
- tableReference: string;
469
- tableExpires: string;
470
- deleteConfirm: string;
471
- typeCardHold: string;
472
- typeDeposit: string;
473
- typeVoucher: string;
474
- typeInsurance: string;
475
- typeOther: string;
476
- statusPending: string;
477
- statusActive: string;
478
- statusReleased: string;
479
- statusFailed: string;
480
- statusCancelled: string;
481
- statusExpired: string;
482
- };
483
- suppliers: {
484
- title: string;
485
- addAction: string;
486
- empty: string;
487
- tableService: string;
488
- tableStatus: string;
489
- tableCost: string;
490
- tableReference: string;
491
- tableConfirmed: string;
492
- statusPending: string;
493
- statusConfirmed: string;
494
- statusRejected: string;
495
- statusCancelled: string;
496
- };
497
- documents: {
498
- title: string;
499
- addAction: string;
500
- empty: string;
501
- tableType: string;
502
- tableFile: string;
503
- tableTraveler: string;
504
- tablePassenger: string;
505
- tableExpires: string;
506
- tableNotes: string;
507
- deleteConfirm: string;
508
- viewFile: string;
509
- typeVisa: string;
510
- typeInsurance: string;
511
- typeHealth: string;
512
- typePassportCopy: string;
513
- typeOther: string;
514
- };
515
- activity: {
516
- title: string;
517
- filterAll: string;
518
- filterActivity: string;
519
- filterDocument: string;
520
- filterPayment: string;
521
- empty: string;
522
- sourceActivity: string;
523
- sourceDocument: string;
524
- sourcePayment: string;
525
- uploadedSuffix: string;
526
- paymentTitle: string;
527
- paymentDescription: string;
528
- viewFile: string;
529
- byActorPrefix: string;
530
- };
531
59
  };
532
60
  };
533
61
  };
@@ -536,97 +64,16 @@ export declare const adminBookingsMessages: {
536
64
  list: {
537
65
  pageTitle: string;
538
66
  pageDescription: string;
539
- searchPlaceholder: string;
540
- newBooking: string;
541
67
  tableBookingNumber: string;
542
68
  tableStatus: string;
543
69
  tableSellAmount: string;
544
70
  tablePax: string;
545
71
  tableStartDate: string;
546
- loadFailed: string;
547
- empty: string;
548
- noValue: string;
549
- statusDraft: string;
550
- statusConfirmed: string;
551
- statusInProgress: string;
552
- statusCompleted: string;
553
- statusCancelled: string;
554
- paginationShowing: string;
555
- paginationPage: string;
556
- paginationPrevious: string;
557
- paginationNext: string;
558
- };
559
- dialog: {
560
- editTitle: string;
561
- newTitle: string;
562
- bookingNumberLabel: string;
563
- bookingNumberPlaceholder: string;
564
- statusLabel: string;
565
- sellCurrencyLabel: string;
566
- travelDatesLabel: string;
567
- travelDatesPlaceholder: string;
568
- sellAmountLabel: string;
569
- costAmountLabel: string;
570
- paxLabel: string;
571
- paxPlaceholder: string;
572
- internalNotesLabel: string;
573
- internalNotesPlaceholder: string;
574
72
  statusDraft: string;
575
73
  statusConfirmed: string;
576
74
  statusInProgress: string;
577
75
  statusCompleted: string;
578
76
  statusCancelled: string;
579
- validationBookingNumberRequired: string;
580
- validationIsoCurrency: string;
581
- cancel: string;
582
- saveChanges: string;
583
- create: string;
584
- };
585
- create: {
586
- title: string;
587
- productLabel: string;
588
- productSearchPlaceholder: string;
589
- productSelectPlaceholder: string;
590
- optionLabel: string;
591
- optionNone: string;
592
- departureLabel: string;
593
- departureSelectPlaceholder: string;
594
- departureNone: string;
595
- departureEmpty: string;
596
- departureClosed: string;
597
- personLabel: string;
598
- createNewPerson: string;
599
- selectExistingPerson: string;
600
- personSearchPlaceholder: string;
601
- personSelectPlaceholder: string;
602
- firstNameLabel: string;
603
- firstNamePlaceholder: string;
604
- lastNameLabel: string;
605
- lastNamePlaceholder: string;
606
- emailLabel: string;
607
- emailPlaceholder: string;
608
- phoneLabel: string;
609
- phonePlaceholder: string;
610
- organizationLabel: string;
611
- organizationSearchPlaceholder: string;
612
- organizationNone: string;
613
- sharedRoomLabel: string;
614
- sharedRoomCreate: string;
615
- sharedRoomJoin: string;
616
- sharedRoomSelectPlaceholder: string;
617
- sharedRoomNoGroups: string;
618
- sharedRoomCreateHint: string;
619
- notesLabel: string;
620
- notesPlaceholder: string;
621
- confirmAfterCreateLabel: string;
622
- confirmAfterCreateHint: string;
623
- errorSelectProduct: string;
624
- errorSelectPerson: string;
625
- errorNameRequired: string;
626
- errorSelectSharedRoom: string;
627
- errorCreateFailed: string;
628
- cancel: string;
629
- create: string;
630
77
  };
631
78
  detail: {
632
79
  notFound: string;
@@ -654,97 +101,6 @@ export declare const adminBookingsMessages: {
654
101
  internalNotesLabel: string;
655
102
  tbd: string;
656
103
  noValue: string;
657
- items: {
658
- title: string;
659
- addAction: string;
660
- empty: string;
661
- tableTitle: string;
662
- tableType: string;
663
- tableStatus: string;
664
- tableQuantity: string;
665
- tableTotal: string;
666
- tableServiceDate: string;
667
- editAction: string;
668
- deleteAction: string;
669
- deleteConfirm: string;
670
- typeUnit: string;
671
- typeExtra: string;
672
- typeService: string;
673
- typeFee: string;
674
- typeTax: string;
675
- typeDiscount: string;
676
- typeAdjustment: string;
677
- typeAccommodation: string;
678
- typeTransport: string;
679
- typeOther: string;
680
- statusDraft: string;
681
- statusOnHold: string;
682
- statusConfirmed: string;
683
- statusCancelled: string;
684
- statusExpired: string;
685
- statusFulfilled: string;
686
- };
687
- travelers: {
688
- title: string;
689
- addAction: string;
690
- empty: string;
691
- tableName: string;
692
- tableEmail: string;
693
- tablePhone: string;
694
- deleteConfirm: string;
695
- };
696
- notes: {
697
- title: string;
698
- addAction: string;
699
- empty: string;
700
- deleteConfirm: string;
701
- deleteAriaLabel: string;
702
- };
703
- itemDialog: {
704
- editTitle: string;
705
- newTitle: string;
706
- titleLabel: string;
707
- titlePlaceholder: string;
708
- typeLabel: string;
709
- statusLabel: string;
710
- quantityLabel: string;
711
- sellCurrencyLabel: string;
712
- unitSellLabel: string;
713
- totalSellLabel: string;
714
- costCurrencyLabel: string;
715
- unitCostLabel: string;
716
- totalCostLabel: string;
717
- serviceDateLabel: string;
718
- serviceDatePlaceholder: string;
719
- descriptionLabel: string;
720
- descriptionPlaceholder: string;
721
- notesLabel: string;
722
- notesPlaceholder: string;
723
- validationTitleRequired: string;
724
- cancel: string;
725
- saveChanges: string;
726
- create: string;
727
- };
728
- travelerDialog: {
729
- editTitle: string;
730
- newTitle: string;
731
- firstNameLabel: string;
732
- firstNamePlaceholder: string;
733
- lastNameLabel: string;
734
- lastNamePlaceholder: string;
735
- emailLabel: string;
736
- emailPlaceholder: string;
737
- phoneLabel: string;
738
- phonePlaceholder: string;
739
- specialRequestsLabel: string;
740
- specialRequestsPlaceholder: string;
741
- validationFirstNameRequired: string;
742
- validationLastNameRequired: string;
743
- validationEmailInvalid: string;
744
- cancel: string;
745
- saveChanges: string;
746
- create: string;
747
- };
748
104
  noteDialog: {
749
105
  title: string;
750
106
  noteLabel: string;
@@ -752,313 +108,6 @@ export declare const adminBookingsMessages: {
752
108
  cancel: string;
753
109
  create: string;
754
110
  };
755
- statusChangeDialog: {
756
- title: string;
757
- newStatusLabel: string;
758
- noteLabel: string;
759
- notePlaceholder: string;
760
- statusDraft: string;
761
- statusOnHold: string;
762
- statusConfirmed: string;
763
- statusInProgress: string;
764
- statusCompleted: string;
765
- statusCancelled: string;
766
- statusExpired: string;
767
- cancel: string;
768
- submit: string;
769
- };
770
- documentDialog: {
771
- title: string;
772
- typeLabel: string;
773
- travelerLabel: string;
774
- bookingWide: string;
775
- fileLabel: string;
776
- fileHelperText: string;
777
- expiresAtLabel: string;
778
- expiresAtPlaceholder: string;
779
- notesLabel: string;
780
- notesPlaceholder: string;
781
- validationFileNameRequired: string;
782
- validationFileUrlInvalid: string;
783
- cancel: string;
784
- create: string;
785
- typeVisa: string;
786
- typeInsurance: string;
787
- typeHealth: string;
788
- typePassportCopy: string;
789
- typeOther: string;
790
- uploadIdle: string;
791
- uploadAcceptedPrefix: string;
792
- uploadUploading: string;
793
- uploadRemoveAriaLabel: string;
794
- uploadFailed: string;
795
- uploadFileTooLarge: string;
796
- };
797
- guaranteeDialog: {
798
- editTitle: string;
799
- newTitle: string;
800
- typeLabel: string;
801
- statusLabel: string;
802
- currencyLabel: string;
803
- amountLabel: string;
804
- providerLabel: string;
805
- providerPlaceholder: string;
806
- referenceLabel: string;
807
- referencePlaceholder: string;
808
- expiresAtLabel: string;
809
- expiresAtPlaceholder: string;
810
- notesLabel: string;
811
- notesPlaceholder: string;
812
- cancel: string;
813
- saveChanges: string;
814
- create: string;
815
- typeDeposit: string;
816
- typeCreditCard: string;
817
- typePreauth: string;
818
- typeCardOnFile: string;
819
- typeBankTransfer: string;
820
- typeVoucher: string;
821
- typeAgencyLetter: string;
822
- typeOther: string;
823
- statusPending: string;
824
- statusActive: string;
825
- statusReleased: string;
826
- statusFailed: string;
827
- statusCancelled: string;
828
- statusExpired: string;
829
- };
830
- paymentScheduleDialog: {
831
- editTitle: string;
832
- newTitle: string;
833
- typeLabel: string;
834
- statusLabel: string;
835
- dueDateLabel: string;
836
- dueDatePlaceholder: string;
837
- currencyLabel: string;
838
- amountLabel: string;
839
- notesLabel: string;
840
- notesPlaceholder: string;
841
- validationDueDateRequired: string;
842
- validationAmountRequired: string;
843
- cancel: string;
844
- saveChanges: string;
845
- create: string;
846
- typeDeposit: string;
847
- typeInstallment: string;
848
- typeBalance: string;
849
- typeHold: string;
850
- typeOther: string;
851
- statusPending: string;
852
- statusDue: string;
853
- statusPaid: string;
854
- statusWaived: string;
855
- statusCancelled: string;
856
- statusExpired: string;
857
- };
858
- supplierDialog: {
859
- editTitle: string;
860
- newTitle: string;
861
- serviceNameLabel: string;
862
- serviceNamePlaceholder: string;
863
- statusLabel: string;
864
- costCurrencyLabel: string;
865
- costAmountLabel: string;
866
- supplierReferenceLabel: string;
867
- supplierReferencePlaceholder: string;
868
- notesLabel: string;
869
- notesPlaceholder: string;
870
- validationServiceNameRequired: string;
871
- validationCostCurrency: string;
872
- cancel: string;
873
- saveChanges: string;
874
- create: string;
875
- statusPending: string;
876
- statusConfirmed: string;
877
- statusRejected: string;
878
- statusCancelled: string;
879
- };
880
- cancellationDialog: {
881
- title: string;
882
- bookingLabel: string;
883
- startDateLabel: string;
884
- startDateTbd: string;
885
- totalLabel: string;
886
- daysBeforeDepartureLabel: string;
887
- resolvingPolicy: string;
888
- noPolicy: string;
889
- applicablePolicyLabel: string;
890
- calculatingRefund: string;
891
- refundLabel: string;
892
- penaltyLabel: string;
893
- ruleLabel: string;
894
- noAmount: string;
895
- reasonLabel: string;
896
- reasonPlaceholder: string;
897
- errorFallback: string;
898
- close: string;
899
- confirm: string;
900
- refundTypeCash: string;
901
- refundTypeCredit: string;
902
- refundTypeCashOrCredit: string;
903
- refundTypeNone: string;
904
- ruleDaysTemplate: string;
905
- };
906
- groupLinkDialog: {
907
- title: string;
908
- joinExisting: string;
909
- createNew: string;
910
- existingGroupsLabel: string;
911
- selectPlaceholder: string;
912
- noExistingGroups: string;
913
- filteredHint: string;
914
- groupLabelLabel: string;
915
- groupLabelPlaceholder: string;
916
- primaryHint: string;
917
- validationSelectGroup: string;
918
- createDefaultLabelPrefix: string;
919
- linkFailed: string;
920
- cancel: string;
921
- createAndLink: string;
922
- linkToGroup: string;
923
- };
924
- groupSection: {
925
- title: string;
926
- removeAction: string;
927
- linkAction: string;
928
- empty: string;
929
- groupLabel: string;
930
- kindSharedRoom: string;
931
- siblingsLabel: string;
932
- siblingsEmpty: string;
933
- primaryBadge: string;
934
- removeConfirm: string;
935
- };
936
- itemParticipants: {
937
- title: string;
938
- empty: string;
939
- primaryBadge: string;
940
- removeConfirm: string;
941
- selectTravelerPlaceholder: string;
942
- selectPassengerPlaceholder: string;
943
- roleTraveler: string;
944
- roleOccupant: string;
945
- rolePrimaryContact: string;
946
- roleServiceAssignee: string;
947
- roleBeneficiary: string;
948
- roleOther: string;
949
- assignAction: string;
950
- };
951
- payments: {
952
- title: string;
953
- empty: string;
954
- tableInvoice: string;
955
- tableMethod: string;
956
- tableStatus: string;
957
- tableAmount: string;
958
- tableDate: string;
959
- tableReference: string;
960
- methodBankTransfer: string;
961
- methodCreditCard: string;
962
- methodCash: string;
963
- methodCheque: string;
964
- methodOther: string;
965
- statusPending: string;
966
- statusCompleted: string;
967
- statusFailed: string;
968
- statusRefunded: string;
969
- };
970
- paymentSchedules: {
971
- title: string;
972
- addAction: string;
973
- empty: string;
974
- tableType: string;
975
- tableStatus: string;
976
- tableDueDate: string;
977
- tableAmount: string;
978
- tableNotes: string;
979
- deleteConfirm: string;
980
- typeDeposit: string;
981
- typeInterim: string;
982
- typeFinal: string;
983
- typeCustom: string;
984
- statusPending: string;
985
- statusDue: string;
986
- statusPaid: string;
987
- statusWaived: string;
988
- statusCancelled: string;
989
- statusExpired: string;
990
- };
991
- guarantees: {
992
- title: string;
993
- addAction: string;
994
- empty: string;
995
- tableType: string;
996
- tableStatus: string;
997
- tableAmount: string;
998
- tableProvider: string;
999
- tableReference: string;
1000
- tableExpires: string;
1001
- deleteConfirm: string;
1002
- typeCardHold: string;
1003
- typeDeposit: string;
1004
- typeVoucher: string;
1005
- typeInsurance: string;
1006
- typeOther: string;
1007
- statusPending: string;
1008
- statusActive: string;
1009
- statusReleased: string;
1010
- statusFailed: string;
1011
- statusCancelled: string;
1012
- statusExpired: string;
1013
- };
1014
- suppliers: {
1015
- title: string;
1016
- addAction: string;
1017
- empty: string;
1018
- tableService: string;
1019
- tableStatus: string;
1020
- tableCost: string;
1021
- tableReference: string;
1022
- tableConfirmed: string;
1023
- statusPending: string;
1024
- statusConfirmed: string;
1025
- statusRejected: string;
1026
- statusCancelled: string;
1027
- };
1028
- documents: {
1029
- title: string;
1030
- addAction: string;
1031
- empty: string;
1032
- tableType: string;
1033
- tableFile: string;
1034
- tableTraveler: string;
1035
- tablePassenger: string;
1036
- tableExpires: string;
1037
- tableNotes: string;
1038
- deleteConfirm: string;
1039
- viewFile: string;
1040
- typeVisa: string;
1041
- typeInsurance: string;
1042
- typeHealth: string;
1043
- typePassportCopy: string;
1044
- typeOther: string;
1045
- };
1046
- activity: {
1047
- title: string;
1048
- filterAll: string;
1049
- filterActivity: string;
1050
- filterDocument: string;
1051
- filterPayment: string;
1052
- empty: string;
1053
- sourceActivity: string;
1054
- sourceDocument: string;
1055
- sourcePayment: string;
1056
- uploadedSuffix: string;
1057
- paymentTitle: string;
1058
- paymentDescription: string;
1059
- viewFile: string;
1060
- byActorPrefix: string;
1061
- };
1062
111
  };
1063
112
  };
1064
113
  };