@voyantjs/flights-ui 0.35.0 → 0.37.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.
- package/dist/components/airport-combobox.d.ts.map +1 -1
- package/dist/components/airport-combobox.js +4 -2
- package/dist/components/flight-baggage-step.d.ts.map +1 -1
- package/dist/components/flight-baggage-step.js +29 -18
- package/dist/components/flight-billing-step.d.ts.map +1 -1
- package/dist/components/flight-billing-step.js +30 -24
- package/dist/components/flight-booking-journey.d.ts.map +1 -1
- package/dist/components/flight-booking-journey.js +15 -26
- package/dist/components/flight-booking-ledger.d.ts.map +1 -1
- package/dist/components/flight-booking-ledger.js +22 -12
- package/dist/components/flight-booking-page.js +12 -12
- package/dist/components/flight-booking-shell.d.ts.map +1 -1
- package/dist/components/flight-booking-shell.js +54 -29
- package/dist/components/flight-contact-form.d.ts.map +1 -1
- package/dist/components/flight-contact-form.js +7 -3
- package/dist/components/flight-fare-upsell-step.d.ts.map +1 -1
- package/dist/components/flight-fare-upsell-step.js +58 -30
- package/dist/components/flight-filters-bar.d.ts.map +1 -1
- package/dist/components/flight-filters-bar.js +21 -13
- package/dist/components/flight-itinerary.d.ts.map +1 -1
- package/dist/components/flight-itinerary.js +26 -6
- package/dist/components/flight-offer-detail.d.ts.map +1 -1
- package/dist/components/flight-offer-detail.js +23 -35
- package/dist/components/flight-offer-row.d.ts.map +1 -1
- package/dist/components/flight-offer-row.js +19 -15
- package/dist/components/flight-order-confirmation.d.ts.map +1 -1
- package/dist/components/flight-order-confirmation.js +20 -24
- package/dist/components/flight-passenger-form.d.ts.map +1 -1
- package/dist/components/flight-passenger-form.js +18 -14
- package/dist/components/flight-payment-selector.d.ts.map +1 -1
- package/dist/components/flight-payment-selector.js +4 -8
- package/dist/components/flight-payment-step.d.ts.map +1 -1
- package/dist/components/flight-payment-step.js +14 -15
- package/dist/components/flight-search-form.d.ts.map +1 -1
- package/dist/components/flight-search-form.js +4 -2
- package/dist/components/flight-seat-map.d.ts.map +1 -1
- package/dist/components/flight-seat-map.js +24 -19
- package/dist/components/flight-seats-step.js +26 -24
- package/dist/components/flight-services-step.d.ts.map +1 -1
- package/dist/components/flight-services-step.js +29 -16
- package/dist/components/pax-cabin-popover.d.ts.map +1 -1
- package/dist/components/pax-cabin-popover.js +8 -11
- package/dist/components/popular-routes.d.ts +0 -5
- package/dist/components/popular-routes.d.ts.map +1 -1
- package/dist/components/popular-routes.js +25 -43
- package/dist/i18n/en.d.ts +404 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +460 -0
- package/dist/i18n/messages.d.ts +331 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/provider.d.ts +808 -0
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/ro.d.ts +404 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/i18n/ro.js +460 -0
- package/package.json +15 -15
package/dist/i18n/provider.d.ts
CHANGED
|
@@ -3,6 +3,62 @@ import type { ReactNode } from "react";
|
|
|
3
3
|
import type { FlightsUiMessages } from "./messages.js";
|
|
4
4
|
export declare const flightsUiMessageDefinitions: {
|
|
5
5
|
en: {
|
|
6
|
+
common: {
|
|
7
|
+
noValue: string;
|
|
8
|
+
total: string;
|
|
9
|
+
included: string;
|
|
10
|
+
free: string;
|
|
11
|
+
selected: string;
|
|
12
|
+
recommended: string;
|
|
13
|
+
passengerSingular: string;
|
|
14
|
+
passengerPlural: string;
|
|
15
|
+
pax: string;
|
|
16
|
+
adultPerPassenger: string;
|
|
17
|
+
passengerTypeLabels: {
|
|
18
|
+
adult: string;
|
|
19
|
+
child: string;
|
|
20
|
+
infant: string;
|
|
21
|
+
senior: string;
|
|
22
|
+
youth: string;
|
|
23
|
+
};
|
|
24
|
+
cabinLabels: {
|
|
25
|
+
economy: string;
|
|
26
|
+
premium_economy: string;
|
|
27
|
+
business: string;
|
|
28
|
+
first: string;
|
|
29
|
+
};
|
|
30
|
+
genderLabels: {
|
|
31
|
+
M: string;
|
|
32
|
+
F: string;
|
|
33
|
+
X: string;
|
|
34
|
+
};
|
|
35
|
+
documentTypeLabels: {
|
|
36
|
+
passport: string;
|
|
37
|
+
national_id: string;
|
|
38
|
+
visa: string;
|
|
39
|
+
};
|
|
40
|
+
orderStatusLabels: {
|
|
41
|
+
pending: string;
|
|
42
|
+
confirmed: string;
|
|
43
|
+
ticketed: string;
|
|
44
|
+
cancelled: string;
|
|
45
|
+
failed: string;
|
|
46
|
+
};
|
|
47
|
+
legLabels: {
|
|
48
|
+
itinerary: string;
|
|
49
|
+
outbound: string;
|
|
50
|
+
return: string;
|
|
51
|
+
leg: string;
|
|
52
|
+
};
|
|
53
|
+
stops: {
|
|
54
|
+
nonstop: string;
|
|
55
|
+
oneStop: string;
|
|
56
|
+
manyStops: string;
|
|
57
|
+
via: string;
|
|
58
|
+
upToOne: string;
|
|
59
|
+
upToMany: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
6
62
|
flightsPage: {
|
|
7
63
|
title: string;
|
|
8
64
|
description: string;
|
|
@@ -41,6 +97,15 @@ export declare const flightsUiMessageDefinitions: {
|
|
|
41
97
|
offerNotInSessionDescription: string;
|
|
42
98
|
backToFlightSearch: string;
|
|
43
99
|
backToResults: string;
|
|
100
|
+
offerUnavailable: string;
|
|
101
|
+
segmentNotFound: string;
|
|
102
|
+
paymentBrandLabels: {
|
|
103
|
+
visa: string;
|
|
104
|
+
mastercard: string;
|
|
105
|
+
amex: string;
|
|
106
|
+
revolut: string;
|
|
107
|
+
bank_transfer: string;
|
|
108
|
+
};
|
|
44
109
|
};
|
|
45
110
|
passengerContactPicker: {
|
|
46
111
|
trigger: string;
|
|
@@ -61,8 +126,403 @@ export declare const flightsUiMessageDefinitions: {
|
|
|
61
126
|
orgsEmpty: string;
|
|
62
127
|
emptyName: string;
|
|
63
128
|
};
|
|
129
|
+
airportCombobox: {
|
|
130
|
+
placeholder: string;
|
|
131
|
+
searchPlaceholder: string;
|
|
132
|
+
searching: string;
|
|
133
|
+
empty: string;
|
|
134
|
+
};
|
|
135
|
+
flightBaggageStep: {
|
|
136
|
+
unavailable: string;
|
|
137
|
+
title: string;
|
|
138
|
+
description: string;
|
|
139
|
+
sameForBothDirections: string;
|
|
140
|
+
bags: string;
|
|
141
|
+
noCheckedBag: string;
|
|
142
|
+
};
|
|
143
|
+
flightBillingStep: {
|
|
144
|
+
title: string;
|
|
145
|
+
description: string;
|
|
146
|
+
tabs: {
|
|
147
|
+
personal: string;
|
|
148
|
+
company: string;
|
|
149
|
+
};
|
|
150
|
+
fields: {
|
|
151
|
+
firstName: string;
|
|
152
|
+
lastName: string;
|
|
153
|
+
companyName: string;
|
|
154
|
+
vatNumber: string;
|
|
155
|
+
email: string;
|
|
156
|
+
phone: string;
|
|
157
|
+
workPhone: string;
|
|
158
|
+
streetAddress: string;
|
|
159
|
+
addressLine2: string;
|
|
160
|
+
city: string;
|
|
161
|
+
postalCode: string;
|
|
162
|
+
country: string;
|
|
163
|
+
};
|
|
164
|
+
placeholders: {
|
|
165
|
+
vatNumber: string;
|
|
166
|
+
streetAddress: string;
|
|
167
|
+
addressLine2: string;
|
|
168
|
+
searchPassengers: string;
|
|
169
|
+
};
|
|
170
|
+
saveDefault: string;
|
|
171
|
+
pickFromPassengers: string;
|
|
172
|
+
noMatchingPassengers: string;
|
|
173
|
+
validation: {
|
|
174
|
+
emailRequired: string;
|
|
175
|
+
emailInvalid: string;
|
|
176
|
+
streetAddressRequired: string;
|
|
177
|
+
cityRequired: string;
|
|
178
|
+
countryRequired: string;
|
|
179
|
+
firstNameRequired: string;
|
|
180
|
+
lastNameRequired: string;
|
|
181
|
+
companyNameRequired: string;
|
|
182
|
+
vatNumberRequired: string;
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
flightBookingJourney: {
|
|
186
|
+
steps: {
|
|
187
|
+
review: string;
|
|
188
|
+
passengers: string;
|
|
189
|
+
contact: string;
|
|
190
|
+
confirm: string;
|
|
191
|
+
};
|
|
192
|
+
reviewTitle: string;
|
|
193
|
+
backToResults: string;
|
|
194
|
+
back: string;
|
|
195
|
+
booking: string;
|
|
196
|
+
confirmBooking: string;
|
|
197
|
+
continue: string;
|
|
198
|
+
rows: {
|
|
199
|
+
total: string;
|
|
200
|
+
passengers: string;
|
|
201
|
+
contact: string;
|
|
202
|
+
payment: string;
|
|
203
|
+
offerExpires: string;
|
|
204
|
+
};
|
|
205
|
+
confirmDescription: string;
|
|
206
|
+
};
|
|
207
|
+
flightBookingLedger: {
|
|
208
|
+
flight: string;
|
|
209
|
+
outbound: string;
|
|
210
|
+
return: string;
|
|
211
|
+
passengers: string;
|
|
212
|
+
working: string;
|
|
213
|
+
billing: string;
|
|
214
|
+
payment: string;
|
|
215
|
+
};
|
|
216
|
+
flightBookingShell: {
|
|
217
|
+
steps: {
|
|
218
|
+
review: string;
|
|
219
|
+
fares: string;
|
|
220
|
+
passengers: string;
|
|
221
|
+
bags: string;
|
|
222
|
+
seats: string;
|
|
223
|
+
services: string;
|
|
224
|
+
billing: string;
|
|
225
|
+
payment: string;
|
|
226
|
+
confirm: string;
|
|
227
|
+
};
|
|
228
|
+
seatMapsUnavailable: string;
|
|
229
|
+
backToResults: string;
|
|
230
|
+
back: string;
|
|
231
|
+
booking: string;
|
|
232
|
+
confirmBooking: string;
|
|
233
|
+
continue: string;
|
|
234
|
+
reviewTrip: string;
|
|
235
|
+
reviewFlight: string;
|
|
236
|
+
confirmTitle: string;
|
|
237
|
+
rows: {
|
|
238
|
+
passengers: string;
|
|
239
|
+
documents: string;
|
|
240
|
+
contact: string;
|
|
241
|
+
billedTo: string;
|
|
242
|
+
payment: string;
|
|
243
|
+
};
|
|
244
|
+
documentsAllAdded: string;
|
|
245
|
+
documentsSomeAdded: string;
|
|
246
|
+
documentsAddAtCheckIn: string;
|
|
247
|
+
confirmDescription: string;
|
|
248
|
+
lineItems: {
|
|
249
|
+
fare: string;
|
|
250
|
+
seatsPicked: string;
|
|
251
|
+
specialAssistance: string;
|
|
252
|
+
};
|
|
253
|
+
segmentNotFound: string;
|
|
254
|
+
};
|
|
255
|
+
flightContactForm: {
|
|
256
|
+
title: string;
|
|
257
|
+
description: string;
|
|
258
|
+
email: string;
|
|
259
|
+
phone: string;
|
|
260
|
+
emailPlaceholder: string;
|
|
261
|
+
phonePlaceholder: string;
|
|
262
|
+
validation: {
|
|
263
|
+
emailRequired: string;
|
|
264
|
+
emailInvalid: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
flightFareUpsellStep: {
|
|
268
|
+
unavailable: string;
|
|
269
|
+
title: string;
|
|
270
|
+
description: string;
|
|
271
|
+
sameForAllPassengers: string;
|
|
272
|
+
resetToBasic: string;
|
|
273
|
+
appliesToAllPassengers: string;
|
|
274
|
+
cabinBag: string;
|
|
275
|
+
noCabinBag: string;
|
|
276
|
+
checkedBag: string;
|
|
277
|
+
noCheckedBag: string;
|
|
278
|
+
freeSeatSelection: string;
|
|
279
|
+
standardSeatSelection: string;
|
|
280
|
+
noSeatSelection: string;
|
|
281
|
+
priorityBoarding: string;
|
|
282
|
+
loungeAccess: string;
|
|
283
|
+
freeChanges: string;
|
|
284
|
+
changesForFee: string;
|
|
285
|
+
refundable: string;
|
|
286
|
+
nonRefundable: string;
|
|
287
|
+
};
|
|
288
|
+
flightSearchForm: {
|
|
289
|
+
roundTrip: string;
|
|
290
|
+
oneWay: string;
|
|
291
|
+
fromPlaceholder: string;
|
|
292
|
+
toPlaceholder: string;
|
|
293
|
+
departPlaceholder: string;
|
|
294
|
+
returnPlaceholder: string;
|
|
295
|
+
swapAriaLabel: string;
|
|
296
|
+
search: string;
|
|
297
|
+
searching: string;
|
|
298
|
+
};
|
|
299
|
+
flightFiltersBar: {
|
|
300
|
+
clearAll: string;
|
|
301
|
+
airlines: string;
|
|
302
|
+
filterAirlinesPlaceholder: string;
|
|
303
|
+
noAirlines: string;
|
|
304
|
+
clearFilter: string;
|
|
305
|
+
stops: string;
|
|
306
|
+
price: string;
|
|
307
|
+
maximumPrice: string;
|
|
308
|
+
noCap: string;
|
|
309
|
+
clear: string;
|
|
310
|
+
};
|
|
311
|
+
flightItinerary: {
|
|
312
|
+
totalDuration: string;
|
|
313
|
+
layover: string;
|
|
314
|
+
layoverIn: string;
|
|
315
|
+
operatedBy: string;
|
|
316
|
+
terminal: string;
|
|
317
|
+
aircraft: string;
|
|
318
|
+
};
|
|
319
|
+
flightOfferDetail: {
|
|
320
|
+
fareBreakdown: string;
|
|
321
|
+
validatingCarrier: string;
|
|
322
|
+
expires: string;
|
|
323
|
+
lastTicketing: string;
|
|
324
|
+
instantTicketing: string;
|
|
325
|
+
base: string;
|
|
326
|
+
tax: string;
|
|
327
|
+
};
|
|
328
|
+
flightOfferRow: {
|
|
329
|
+
select: string;
|
|
330
|
+
codeshare: string;
|
|
331
|
+
interline: string;
|
|
332
|
+
};
|
|
333
|
+
flightOrderConfirmation: {
|
|
334
|
+
bookingConfirmed: string;
|
|
335
|
+
ticketDeadline: string;
|
|
336
|
+
passengers: string;
|
|
337
|
+
contact: string;
|
|
338
|
+
itinerary: string;
|
|
339
|
+
dob: string;
|
|
340
|
+
cancelBooking: string;
|
|
341
|
+
cancelling: string;
|
|
342
|
+
};
|
|
343
|
+
flightPassengerForm: {
|
|
344
|
+
documentsRequiredNotice: string;
|
|
345
|
+
fields: {
|
|
346
|
+
firstName: string;
|
|
347
|
+
middleName: string;
|
|
348
|
+
lastName: string;
|
|
349
|
+
dateOfBirth: string;
|
|
350
|
+
gender: string;
|
|
351
|
+
travelDocument: string;
|
|
352
|
+
documentType: string;
|
|
353
|
+
documentNumber: string;
|
|
354
|
+
countryOfIssue: string;
|
|
355
|
+
countryOfNationality: string;
|
|
356
|
+
expiryDate: string;
|
|
357
|
+
};
|
|
358
|
+
placeholders: {
|
|
359
|
+
asOnPassport: string;
|
|
360
|
+
optional: string;
|
|
361
|
+
selectDate: string;
|
|
362
|
+
select: string;
|
|
363
|
+
asPrintedOnDocument: string;
|
|
364
|
+
};
|
|
365
|
+
addNow: string;
|
|
366
|
+
skipDocuments: string;
|
|
367
|
+
validation: {
|
|
368
|
+
firstNameRequired: string;
|
|
369
|
+
lastNameRequired: string;
|
|
370
|
+
dateOfBirthRequired: string;
|
|
371
|
+
documentNumberRequired: string;
|
|
372
|
+
documentCountryRequired: string;
|
|
373
|
+
documentExpiryRequired: string;
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
flightPaymentSelector: {
|
|
377
|
+
title: string;
|
|
378
|
+
description: string;
|
|
379
|
+
intents: {
|
|
380
|
+
hold: {
|
|
381
|
+
title: string;
|
|
382
|
+
description: string;
|
|
383
|
+
};
|
|
384
|
+
card: {
|
|
385
|
+
title: string;
|
|
386
|
+
description: string;
|
|
387
|
+
};
|
|
388
|
+
ticket_on_credit: {
|
|
389
|
+
title: string;
|
|
390
|
+
description: string;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
flightPaymentStep: {
|
|
395
|
+
agencyCreditLabel: string;
|
|
396
|
+
agencyCreditDescription: string;
|
|
397
|
+
};
|
|
398
|
+
flightSeatMap: {
|
|
399
|
+
cabin: string;
|
|
400
|
+
pickingSeatFor: string;
|
|
401
|
+
window: string;
|
|
402
|
+
aisle: string;
|
|
403
|
+
noCharge: string;
|
|
404
|
+
pickedBy: string;
|
|
405
|
+
categories: {
|
|
406
|
+
exit_row: string;
|
|
407
|
+
extra_legroom: string;
|
|
408
|
+
preferred: string;
|
|
409
|
+
premium: string;
|
|
410
|
+
bulkhead: string;
|
|
411
|
+
standard: string;
|
|
412
|
+
};
|
|
413
|
+
legend: {
|
|
414
|
+
available: string;
|
|
415
|
+
preferred: string;
|
|
416
|
+
exitRow: string;
|
|
417
|
+
picked: string;
|
|
418
|
+
taken: string;
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
flightSeatsStep: {
|
|
422
|
+
title: string;
|
|
423
|
+
description: string;
|
|
424
|
+
modes: {
|
|
425
|
+
skip: {
|
|
426
|
+
title: string;
|
|
427
|
+
body: string;
|
|
428
|
+
};
|
|
429
|
+
auto: {
|
|
430
|
+
title: string;
|
|
431
|
+
body: string;
|
|
432
|
+
};
|
|
433
|
+
now: {
|
|
434
|
+
title: string;
|
|
435
|
+
body: string;
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
seatMapUnavailable: string;
|
|
439
|
+
};
|
|
440
|
+
flightServicesStep: {
|
|
441
|
+
title: string;
|
|
442
|
+
description: string;
|
|
443
|
+
servicesUnavailable: string;
|
|
444
|
+
specialAssistance: string;
|
|
445
|
+
noAssistanceNeeded: string;
|
|
446
|
+
extras: string;
|
|
447
|
+
};
|
|
448
|
+
paxCabinPopover: {
|
|
449
|
+
adults: string;
|
|
450
|
+
adultsSublabel: string;
|
|
451
|
+
children: string;
|
|
452
|
+
childrenSublabel: string;
|
|
453
|
+
infants: string;
|
|
454
|
+
infantsSublabel: string;
|
|
455
|
+
cabin: string;
|
|
456
|
+
decrease: string;
|
|
457
|
+
increase: string;
|
|
458
|
+
};
|
|
459
|
+
popularRoutes: {
|
|
460
|
+
title: string;
|
|
461
|
+
defaults: {
|
|
462
|
+
originLabel: string;
|
|
463
|
+
destinationLabel: string;
|
|
464
|
+
tag: string;
|
|
465
|
+
hint: string;
|
|
466
|
+
}[];
|
|
467
|
+
};
|
|
64
468
|
};
|
|
65
469
|
ro: {
|
|
470
|
+
common: {
|
|
471
|
+
noValue: string;
|
|
472
|
+
total: string;
|
|
473
|
+
included: string;
|
|
474
|
+
free: string;
|
|
475
|
+
selected: string;
|
|
476
|
+
recommended: string;
|
|
477
|
+
passengerSingular: string;
|
|
478
|
+
passengerPlural: string;
|
|
479
|
+
pax: string;
|
|
480
|
+
adultPerPassenger: string;
|
|
481
|
+
passengerTypeLabels: {
|
|
482
|
+
adult: string;
|
|
483
|
+
child: string;
|
|
484
|
+
infant: string;
|
|
485
|
+
senior: string;
|
|
486
|
+
youth: string;
|
|
487
|
+
};
|
|
488
|
+
cabinLabels: {
|
|
489
|
+
economy: string;
|
|
490
|
+
premium_economy: string;
|
|
491
|
+
business: string;
|
|
492
|
+
first: string;
|
|
493
|
+
};
|
|
494
|
+
genderLabels: {
|
|
495
|
+
M: string;
|
|
496
|
+
F: string;
|
|
497
|
+
X: string;
|
|
498
|
+
};
|
|
499
|
+
documentTypeLabels: {
|
|
500
|
+
passport: string;
|
|
501
|
+
national_id: string;
|
|
502
|
+
visa: string;
|
|
503
|
+
};
|
|
504
|
+
orderStatusLabels: {
|
|
505
|
+
pending: string;
|
|
506
|
+
confirmed: string;
|
|
507
|
+
ticketed: string;
|
|
508
|
+
cancelled: string;
|
|
509
|
+
failed: string;
|
|
510
|
+
};
|
|
511
|
+
legLabels: {
|
|
512
|
+
itinerary: string;
|
|
513
|
+
outbound: string;
|
|
514
|
+
return: string;
|
|
515
|
+
leg: string;
|
|
516
|
+
};
|
|
517
|
+
stops: {
|
|
518
|
+
nonstop: string;
|
|
519
|
+
oneStop: string;
|
|
520
|
+
manyStops: string;
|
|
521
|
+
via: string;
|
|
522
|
+
upToOne: string;
|
|
523
|
+
upToMany: string;
|
|
524
|
+
};
|
|
525
|
+
};
|
|
66
526
|
flightsPage: {
|
|
67
527
|
title: string;
|
|
68
528
|
description: string;
|
|
@@ -101,6 +561,15 @@ export declare const flightsUiMessageDefinitions: {
|
|
|
101
561
|
offerNotInSessionDescription: string;
|
|
102
562
|
backToFlightSearch: string;
|
|
103
563
|
backToResults: string;
|
|
564
|
+
offerUnavailable: string;
|
|
565
|
+
segmentNotFound: string;
|
|
566
|
+
paymentBrandLabels: {
|
|
567
|
+
visa: string;
|
|
568
|
+
mastercard: string;
|
|
569
|
+
amex: string;
|
|
570
|
+
revolut: string;
|
|
571
|
+
bank_transfer: string;
|
|
572
|
+
};
|
|
104
573
|
};
|
|
105
574
|
passengerContactPicker: {
|
|
106
575
|
trigger: string;
|
|
@@ -121,6 +590,345 @@ export declare const flightsUiMessageDefinitions: {
|
|
|
121
590
|
orgsEmpty: string;
|
|
122
591
|
emptyName: string;
|
|
123
592
|
};
|
|
593
|
+
airportCombobox: {
|
|
594
|
+
placeholder: string;
|
|
595
|
+
searchPlaceholder: string;
|
|
596
|
+
searching: string;
|
|
597
|
+
empty: string;
|
|
598
|
+
};
|
|
599
|
+
flightBaggageStep: {
|
|
600
|
+
unavailable: string;
|
|
601
|
+
title: string;
|
|
602
|
+
description: string;
|
|
603
|
+
sameForBothDirections: string;
|
|
604
|
+
bags: string;
|
|
605
|
+
noCheckedBag: string;
|
|
606
|
+
};
|
|
607
|
+
flightBillingStep: {
|
|
608
|
+
title: string;
|
|
609
|
+
description: string;
|
|
610
|
+
tabs: {
|
|
611
|
+
personal: string;
|
|
612
|
+
company: string;
|
|
613
|
+
};
|
|
614
|
+
fields: {
|
|
615
|
+
firstName: string;
|
|
616
|
+
lastName: string;
|
|
617
|
+
companyName: string;
|
|
618
|
+
vatNumber: string;
|
|
619
|
+
email: string;
|
|
620
|
+
phone: string;
|
|
621
|
+
workPhone: string;
|
|
622
|
+
streetAddress: string;
|
|
623
|
+
addressLine2: string;
|
|
624
|
+
city: string;
|
|
625
|
+
postalCode: string;
|
|
626
|
+
country: string;
|
|
627
|
+
};
|
|
628
|
+
placeholders: {
|
|
629
|
+
vatNumber: string;
|
|
630
|
+
streetAddress: string;
|
|
631
|
+
addressLine2: string;
|
|
632
|
+
searchPassengers: string;
|
|
633
|
+
};
|
|
634
|
+
saveDefault: string;
|
|
635
|
+
pickFromPassengers: string;
|
|
636
|
+
noMatchingPassengers: string;
|
|
637
|
+
validation: {
|
|
638
|
+
emailRequired: string;
|
|
639
|
+
emailInvalid: string;
|
|
640
|
+
streetAddressRequired: string;
|
|
641
|
+
cityRequired: string;
|
|
642
|
+
countryRequired: string;
|
|
643
|
+
firstNameRequired: string;
|
|
644
|
+
lastNameRequired: string;
|
|
645
|
+
companyNameRequired: string;
|
|
646
|
+
vatNumberRequired: string;
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
flightBookingJourney: {
|
|
650
|
+
steps: {
|
|
651
|
+
review: string;
|
|
652
|
+
passengers: string;
|
|
653
|
+
contact: string;
|
|
654
|
+
confirm: string;
|
|
655
|
+
};
|
|
656
|
+
reviewTitle: string;
|
|
657
|
+
backToResults: string;
|
|
658
|
+
back: string;
|
|
659
|
+
booking: string;
|
|
660
|
+
confirmBooking: string;
|
|
661
|
+
continue: string;
|
|
662
|
+
rows: {
|
|
663
|
+
total: string;
|
|
664
|
+
passengers: string;
|
|
665
|
+
contact: string;
|
|
666
|
+
payment: string;
|
|
667
|
+
offerExpires: string;
|
|
668
|
+
};
|
|
669
|
+
confirmDescription: string;
|
|
670
|
+
};
|
|
671
|
+
flightBookingLedger: {
|
|
672
|
+
flight: string;
|
|
673
|
+
outbound: string;
|
|
674
|
+
return: string;
|
|
675
|
+
passengers: string;
|
|
676
|
+
working: string;
|
|
677
|
+
billing: string;
|
|
678
|
+
payment: string;
|
|
679
|
+
};
|
|
680
|
+
flightBookingShell: {
|
|
681
|
+
steps: {
|
|
682
|
+
review: string;
|
|
683
|
+
fares: string;
|
|
684
|
+
passengers: string;
|
|
685
|
+
bags: string;
|
|
686
|
+
seats: string;
|
|
687
|
+
services: string;
|
|
688
|
+
billing: string;
|
|
689
|
+
payment: string;
|
|
690
|
+
confirm: string;
|
|
691
|
+
};
|
|
692
|
+
seatMapsUnavailable: string;
|
|
693
|
+
backToResults: string;
|
|
694
|
+
back: string;
|
|
695
|
+
booking: string;
|
|
696
|
+
confirmBooking: string;
|
|
697
|
+
continue: string;
|
|
698
|
+
reviewTrip: string;
|
|
699
|
+
reviewFlight: string;
|
|
700
|
+
confirmTitle: string;
|
|
701
|
+
rows: {
|
|
702
|
+
passengers: string;
|
|
703
|
+
documents: string;
|
|
704
|
+
contact: string;
|
|
705
|
+
billedTo: string;
|
|
706
|
+
payment: string;
|
|
707
|
+
};
|
|
708
|
+
documentsAllAdded: string;
|
|
709
|
+
documentsSomeAdded: string;
|
|
710
|
+
documentsAddAtCheckIn: string;
|
|
711
|
+
confirmDescription: string;
|
|
712
|
+
lineItems: {
|
|
713
|
+
fare: string;
|
|
714
|
+
seatsPicked: string;
|
|
715
|
+
specialAssistance: string;
|
|
716
|
+
};
|
|
717
|
+
segmentNotFound: string;
|
|
718
|
+
};
|
|
719
|
+
flightContactForm: {
|
|
720
|
+
title: string;
|
|
721
|
+
description: string;
|
|
722
|
+
email: string;
|
|
723
|
+
phone: string;
|
|
724
|
+
emailPlaceholder: string;
|
|
725
|
+
phonePlaceholder: string;
|
|
726
|
+
validation: {
|
|
727
|
+
emailRequired: string;
|
|
728
|
+
emailInvalid: string;
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
flightFareUpsellStep: {
|
|
732
|
+
unavailable: string;
|
|
733
|
+
title: string;
|
|
734
|
+
description: string;
|
|
735
|
+
sameForAllPassengers: string;
|
|
736
|
+
resetToBasic: string;
|
|
737
|
+
appliesToAllPassengers: string;
|
|
738
|
+
cabinBag: string;
|
|
739
|
+
noCabinBag: string;
|
|
740
|
+
checkedBag: string;
|
|
741
|
+
noCheckedBag: string;
|
|
742
|
+
freeSeatSelection: string;
|
|
743
|
+
standardSeatSelection: string;
|
|
744
|
+
noSeatSelection: string;
|
|
745
|
+
priorityBoarding: string;
|
|
746
|
+
loungeAccess: string;
|
|
747
|
+
freeChanges: string;
|
|
748
|
+
changesForFee: string;
|
|
749
|
+
refundable: string;
|
|
750
|
+
nonRefundable: string;
|
|
751
|
+
};
|
|
752
|
+
flightSearchForm: {
|
|
753
|
+
roundTrip: string;
|
|
754
|
+
oneWay: string;
|
|
755
|
+
fromPlaceholder: string;
|
|
756
|
+
toPlaceholder: string;
|
|
757
|
+
departPlaceholder: string;
|
|
758
|
+
returnPlaceholder: string;
|
|
759
|
+
swapAriaLabel: string;
|
|
760
|
+
search: string;
|
|
761
|
+
searching: string;
|
|
762
|
+
};
|
|
763
|
+
flightFiltersBar: {
|
|
764
|
+
clearAll: string;
|
|
765
|
+
airlines: string;
|
|
766
|
+
filterAirlinesPlaceholder: string;
|
|
767
|
+
noAirlines: string;
|
|
768
|
+
clearFilter: string;
|
|
769
|
+
stops: string;
|
|
770
|
+
price: string;
|
|
771
|
+
maximumPrice: string;
|
|
772
|
+
noCap: string;
|
|
773
|
+
clear: string;
|
|
774
|
+
};
|
|
775
|
+
flightItinerary: {
|
|
776
|
+
totalDuration: string;
|
|
777
|
+
layover: string;
|
|
778
|
+
layoverIn: string;
|
|
779
|
+
operatedBy: string;
|
|
780
|
+
terminal: string;
|
|
781
|
+
aircraft: string;
|
|
782
|
+
};
|
|
783
|
+
flightOfferDetail: {
|
|
784
|
+
fareBreakdown: string;
|
|
785
|
+
validatingCarrier: string;
|
|
786
|
+
expires: string;
|
|
787
|
+
lastTicketing: string;
|
|
788
|
+
instantTicketing: string;
|
|
789
|
+
base: string;
|
|
790
|
+
tax: string;
|
|
791
|
+
};
|
|
792
|
+
flightOfferRow: {
|
|
793
|
+
select: string;
|
|
794
|
+
codeshare: string;
|
|
795
|
+
interline: string;
|
|
796
|
+
};
|
|
797
|
+
flightOrderConfirmation: {
|
|
798
|
+
bookingConfirmed: string;
|
|
799
|
+
ticketDeadline: string;
|
|
800
|
+
passengers: string;
|
|
801
|
+
contact: string;
|
|
802
|
+
itinerary: string;
|
|
803
|
+
dob: string;
|
|
804
|
+
cancelBooking: string;
|
|
805
|
+
cancelling: string;
|
|
806
|
+
};
|
|
807
|
+
flightPassengerForm: {
|
|
808
|
+
documentsRequiredNotice: string;
|
|
809
|
+
fields: {
|
|
810
|
+
firstName: string;
|
|
811
|
+
middleName: string;
|
|
812
|
+
lastName: string;
|
|
813
|
+
dateOfBirth: string;
|
|
814
|
+
gender: string;
|
|
815
|
+
travelDocument: string;
|
|
816
|
+
documentType: string;
|
|
817
|
+
documentNumber: string;
|
|
818
|
+
countryOfIssue: string;
|
|
819
|
+
countryOfNationality: string;
|
|
820
|
+
expiryDate: string;
|
|
821
|
+
};
|
|
822
|
+
placeholders: {
|
|
823
|
+
asOnPassport: string;
|
|
824
|
+
optional: string;
|
|
825
|
+
selectDate: string;
|
|
826
|
+
select: string;
|
|
827
|
+
asPrintedOnDocument: string;
|
|
828
|
+
};
|
|
829
|
+
addNow: string;
|
|
830
|
+
skipDocuments: string;
|
|
831
|
+
validation: {
|
|
832
|
+
firstNameRequired: string;
|
|
833
|
+
lastNameRequired: string;
|
|
834
|
+
dateOfBirthRequired: string;
|
|
835
|
+
documentNumberRequired: string;
|
|
836
|
+
documentCountryRequired: string;
|
|
837
|
+
documentExpiryRequired: string;
|
|
838
|
+
};
|
|
839
|
+
};
|
|
840
|
+
flightPaymentSelector: {
|
|
841
|
+
title: string;
|
|
842
|
+
description: string;
|
|
843
|
+
intents: {
|
|
844
|
+
hold: {
|
|
845
|
+
title: string;
|
|
846
|
+
description: string;
|
|
847
|
+
};
|
|
848
|
+
card: {
|
|
849
|
+
title: string;
|
|
850
|
+
description: string;
|
|
851
|
+
};
|
|
852
|
+
ticket_on_credit: {
|
|
853
|
+
title: string;
|
|
854
|
+
description: string;
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
};
|
|
858
|
+
flightPaymentStep: {
|
|
859
|
+
agencyCreditLabel: string;
|
|
860
|
+
agencyCreditDescription: string;
|
|
861
|
+
};
|
|
862
|
+
flightSeatMap: {
|
|
863
|
+
cabin: string;
|
|
864
|
+
pickingSeatFor: string;
|
|
865
|
+
window: string;
|
|
866
|
+
aisle: string;
|
|
867
|
+
noCharge: string;
|
|
868
|
+
pickedBy: string;
|
|
869
|
+
categories: {
|
|
870
|
+
exit_row: string;
|
|
871
|
+
extra_legroom: string;
|
|
872
|
+
preferred: string;
|
|
873
|
+
premium: string;
|
|
874
|
+
bulkhead: string;
|
|
875
|
+
standard: string;
|
|
876
|
+
};
|
|
877
|
+
legend: {
|
|
878
|
+
available: string;
|
|
879
|
+
preferred: string;
|
|
880
|
+
exitRow: string;
|
|
881
|
+
picked: string;
|
|
882
|
+
taken: string;
|
|
883
|
+
};
|
|
884
|
+
};
|
|
885
|
+
flightSeatsStep: {
|
|
886
|
+
title: string;
|
|
887
|
+
description: string;
|
|
888
|
+
modes: {
|
|
889
|
+
skip: {
|
|
890
|
+
title: string;
|
|
891
|
+
body: string;
|
|
892
|
+
};
|
|
893
|
+
auto: {
|
|
894
|
+
title: string;
|
|
895
|
+
body: string;
|
|
896
|
+
};
|
|
897
|
+
now: {
|
|
898
|
+
title: string;
|
|
899
|
+
body: string;
|
|
900
|
+
};
|
|
901
|
+
};
|
|
902
|
+
seatMapUnavailable: string;
|
|
903
|
+
};
|
|
904
|
+
flightServicesStep: {
|
|
905
|
+
title: string;
|
|
906
|
+
description: string;
|
|
907
|
+
servicesUnavailable: string;
|
|
908
|
+
specialAssistance: string;
|
|
909
|
+
noAssistanceNeeded: string;
|
|
910
|
+
extras: string;
|
|
911
|
+
};
|
|
912
|
+
paxCabinPopover: {
|
|
913
|
+
adults: string;
|
|
914
|
+
adultsSublabel: string;
|
|
915
|
+
children: string;
|
|
916
|
+
childrenSublabel: string;
|
|
917
|
+
infants: string;
|
|
918
|
+
infantsSublabel: string;
|
|
919
|
+
cabin: string;
|
|
920
|
+
decrease: string;
|
|
921
|
+
increase: string;
|
|
922
|
+
};
|
|
923
|
+
popularRoutes: {
|
|
924
|
+
title: string;
|
|
925
|
+
defaults: {
|
|
926
|
+
originLabel: string;
|
|
927
|
+
destinationLabel: string;
|
|
928
|
+
tag: string;
|
|
929
|
+
hint: string;
|
|
930
|
+
}[];
|
|
931
|
+
};
|
|
124
932
|
};
|
|
125
933
|
};
|
|
126
934
|
export type FlightsUiMessageOverrides = LocaleMessageOverrides<FlightsUiMessages>;
|