@sbb-esta/lyne-elements-dev 5.0.0-next.1-dev.1777358786 → 5.0.0-next.1-dev.1777393579

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 (70) hide show
  1. package/core/i18n/i18n.js +103 -98
  2. package/core/styles/core.scss +15 -38
  3. package/core.css +57 -31
  4. package/core.js +22 -22
  5. package/custom-elements.json +6013 -2585
  6. package/development/core/i18n/i18n.d.ts +1 -0
  7. package/development/core/i18n/i18n.d.ts.map +1 -1
  8. package/development/core/i18n/i18n.js +8 -2
  9. package/development/core.js +2 -2
  10. package/development/train/train/train.component.d.ts +2 -5
  11. package/development/train/train/train.component.d.ts.map +1 -1
  12. package/development/train/train/train.component.js +1 -1
  13. package/development/train/train-blocked-passage/train-blocked-passage.component.d.ts +4 -3
  14. package/development/train/train-blocked-passage/train-blocked-passage.component.d.ts.map +1 -1
  15. package/development/train/train-blocked-passage/train-blocked-passage.component.js +1 -1
  16. package/development/train/train-formation/train-formation.component.d.ts +6 -2
  17. package/development/train/train-formation/train-formation.component.d.ts.map +1 -1
  18. package/development/train/train-formation/train-formation.component.js +1 -1
  19. package/development/train/train-formation-orientation-mixin.d.ts +12 -0
  20. package/development/train/train-formation-orientation-mixin.d.ts.map +1 -0
  21. package/development/train/train-formation-orientation-mixin.js +62 -0
  22. package/development/train/train-wagon/train-wagon.component.d.ts +5 -32
  23. package/development/train/train-wagon/train-wagon.component.d.ts.map +1 -1
  24. package/development/train/train-wagon/train-wagon.component.js +19 -1
  25. package/development/train/train-wagon-button/train-wagon-button.component.d.ts +18 -0
  26. package/development/train/train-wagon-button/train-wagon-button.component.d.ts.map +1 -0
  27. package/development/train/train-wagon-button/train-wagon-button.component.js +18 -0
  28. package/development/train/train-wagon-common.d.ts +15 -0
  29. package/development/train/train-wagon-common.d.ts.map +1 -0
  30. package/development/train/train-wagon-common.js +2 -0
  31. package/development/train/train-wagon-link/train-wagon-link.component.d.ts +18 -0
  32. package/development/train/train-wagon-link/train-wagon-link.component.d.ts.map +1 -0
  33. package/development/train/train-wagon-link/train-wagon-link.component.js +18 -0
  34. package/development/train-blocked-passage.component-BgBnEOfh.js +22 -0
  35. package/development/train-formation.component-CDKR5KCm.js +194 -0
  36. package/development/train-wagon-common-S3OJdguG.js +441 -0
  37. package/development/train.component-CP9QaQk8.js +239 -0
  38. package/development/train.d.ts.map +1 -1
  39. package/development/train.js +13 -7
  40. package/development/train.pure.d.ts +4 -0
  41. package/development/train.pure.d.ts.map +1 -1
  42. package/development/train.pure.js +9 -5
  43. package/index.d.ts +3 -1
  44. package/index.js +3 -1
  45. package/off-brand-theme.css +57 -31
  46. package/package.json +2 -2
  47. package/safety-theme.css +57 -31
  48. package/standard-theme.css +57 -31
  49. package/train/train/train.component.js +1 -1
  50. package/train/train-blocked-passage/train-blocked-passage.component.js +1 -1
  51. package/train/train-formation/train-formation.component.js +1 -1
  52. package/train/train-formation-orientation-mixin.js +45 -0
  53. package/train/train-wagon/train-wagon.component.js +13 -2
  54. package/train/train-wagon-button/train-wagon-button.component.js +10 -0
  55. package/train/train-wagon-common.js +2 -0
  56. package/train/train-wagon-link/train-wagon-link.component.js +10 -0
  57. package/train-blocked-passage.component-voZ8fxiB.js +14 -0
  58. package/train-formation.component-6XQVXPue.js +147 -0
  59. package/train-wagon-common-DTN_G78z.js +354 -0
  60. package/train.component-3vmLxVCZ.js +181 -0
  61. package/train.js +10 -6
  62. package/train.pure.js +9 -5
  63. package/development/train-blocked-passage.component-Bh2dR1gn.js +0 -30
  64. package/development/train-formation.component-Dm0t9N_h.js +0 -149
  65. package/development/train-wagon.component-B6V4dPKn.js +0 -334
  66. package/development/train.component-BvbNBkZF.js +0 -229
  67. package/train-blocked-passage.component-DIh8dbU9.js +0 -22
  68. package/train-formation.component-DS4EDwPY.js +0 -117
  69. package/train-wagon.component-LwKwwuta.js +0 -257
  70. package/train.component-DuFi_iBX.js +0 -174
package/core/i18n/i18n.js CHANGED
@@ -20,6 +20,11 @@ var e = {
20
20
  fr: "Sect.",
21
21
  it: "Set."
22
22
  }, i = {
23
+ de: "und",
24
+ en: "and",
25
+ fr: "et",
26
+ it: "e"
27
+ }, a = {
23
28
  first: {
24
29
  de: "Erste Klasse",
25
30
  en: "First Class",
@@ -32,57 +37,57 @@ var e = {
32
37
  fr: "Deuxième classe",
33
38
  it: "Seconda classe"
34
39
  }
35
- }, a = {
40
+ }, o = {
36
41
  de: "Zug",
37
42
  en: "Train",
38
43
  fr: "Train",
39
44
  it: "Treno"
40
- }, o = {
45
+ }, s = {
41
46
  de: "Züge",
42
47
  en: "Trains",
43
48
  fr: "Trains",
44
49
  it: "Treni"
45
- }, s = {
50
+ }, c = {
46
51
  de: "Wagen des Zuges",
47
52
  en: "Coaches of the train",
48
53
  fr: "Wagons du train",
49
54
  it: "Carrozze del treno"
50
- }, c = {
55
+ }, l = {
51
56
  de: "Wagen",
52
57
  en: "Train coach",
53
58
  fr: "Wagon",
54
59
  it: "Carrozza del treno"
55
- }, l = {
60
+ }, u = {
56
61
  de: "Nummer",
57
62
  en: "Number",
58
63
  fr: "Numéro",
59
64
  it: "Numero"
60
- }, u = {
65
+ }, d = {
61
66
  de: "Geschlossener Zugwaggon",
62
67
  en: "Closed train coach",
63
68
  fr: "Wagon du train fermé",
64
69
  it: "Carrozza del treno chiuso"
65
- }, d = {
70
+ }, f = {
66
71
  de: "Lokomotive",
67
72
  en: "Locomotive",
68
73
  fr: "Locomotive",
69
74
  it: "Locomotiva"
70
- }, f = {
75
+ }, p = {
71
76
  de: "Schlafwagen",
72
77
  en: "Sleeping car",
73
78
  fr: "Voiture-lits",
74
79
  it: "Carrozza letti"
75
- }, p = {
80
+ }, m = {
76
81
  de: "Liegewagen",
77
82
  en: "Couchette car",
78
83
  fr: "Voiture-couchettes",
79
84
  it: "Carrozza cuccette"
80
- }, m = {
85
+ }, h = {
81
86
  de: "Speisewagen",
82
87
  en: "Dining car",
83
88
  fr: "Voiture-restaurant",
84
89
  it: "Carrozza ristorante"
85
- }, h = {
90
+ }, g = {
86
91
  previous: {
87
92
  de: "Kein Durchgang zum vorherigen Wagen",
88
93
  en: "No passage to the previous train coach",
@@ -101,17 +106,17 @@ var e = {
101
106
  fr: "Pas de passage au wagon du train suivant et précédent",
102
107
  it: "Nessun passaggio alla carrozza del treno successivo e precedente"
103
108
  }
104
- }, g = {
109
+ }, _ = {
105
110
  de: "Zusätzliche Wageninformation",
106
111
  en: "Additional wagon information",
107
112
  fr: "Informations supplémentaires sur les wagons",
108
113
  it: "Informazioni aggiuntive sulla carrozza del treno"
109
- }, _ = {
114
+ }, v = {
110
115
  de: "Abfahrt",
111
116
  en: "Departure",
112
117
  fr: "Départ",
113
118
  it: "Partenza"
114
- }, v = {
119
+ }, y = {
115
120
  single: {
116
121
  long: {
117
122
  de: "Minute",
@@ -140,7 +145,7 @@ var e = {
140
145
  it: "mins"
141
146
  }
142
147
  }
143
- }, y = {
148
+ }, b = {
144
149
  single: {
145
150
  long: {
146
151
  de: "Stunde",
@@ -169,7 +174,7 @@ var e = {
169
174
  it: "hrs"
170
175
  }
171
176
  }
172
- }, b = {
177
+ }, x = {
173
178
  single: { long: {
174
179
  de: "Tag",
175
180
  en: "Day",
@@ -182,52 +187,52 @@ var e = {
182
187
  fr: "Jours",
183
188
  it: "Giorni"
184
189
  } }
185
- }, x = {
190
+ }, S = {
186
191
  de: "Gleisänderung im Verlauf dieser Verbindung",
187
192
  en: "Track change in the course of this connection",
188
193
  fr: "Changement de voie sur le parcours de cette connexion",
189
194
  it: "Cambiamento di binario nel corso di questa connessione"
190
- }, S = {
195
+ }, C = {
191
196
  de: "Reisedauer",
192
197
  en: "Travel time",
193
198
  fr: "Durée du voyage",
194
199
  it: "Durata del viaggio"
195
- }, C = {
200
+ }, w = {
196
201
  de: "Reisehinweise",
197
202
  en: "Travelhints",
198
203
  fr: "Indications sur le voyage",
199
204
  it: "Indicazioni di viaggio"
200
- }, w = {
205
+ }, T = {
201
206
  de: "Echtzeitinformationen",
202
207
  en: "Real time information",
203
208
  fr: "Informations en temps réel",
204
209
  it: "Informazioni in tempo reale"
205
- }, T = {
210
+ }, E = {
206
211
  de: "mal umsteigen",
207
212
  en: "change",
208
213
  fr: "changement de train",
209
214
  it: "cambio"
210
- }, E = {
215
+ }, D = {
211
216
  de: "mal umsteigen",
212
217
  en: "changes",
213
218
  fr: "changements de train",
214
219
  it: "cambi"
215
- }, D = {
220
+ }, O = {
216
221
  de: "neu",
217
222
  en: "new",
218
223
  fr: "nouveau",
219
224
  it: "nuovo"
220
- }, O = {
225
+ }, k = {
221
226
  de: "Auf",
222
227
  en: "on",
223
228
  fr: "sur",
224
229
  it: "su"
225
- }, k = {
230
+ }, A = {
226
231
  de: "Sparbillette",
227
232
  en: "Supersaver tickets",
228
233
  fr: "Billets dégriffés",
229
234
  it: "Biglietti risparmio"
230
- }, A = {
235
+ }, j = {
231
236
  none: {
232
237
  de: "Keine Belegungsprognose verfügbar",
233
238
  en: "No occupancy forecast available",
@@ -252,7 +257,7 @@ var e = {
252
257
  fr: "Taux d’occupation très élevé prévu",
253
258
  it: "È prevista un’occupazione molto elevata"
254
259
  }
255
- }, j = {
260
+ }, M = {
256
261
  funicular: {
257
262
  de: "Seilbahn/Zahnradbahn",
258
263
  en: "Funicular/Cog railway",
@@ -319,222 +324,222 @@ var e = {
319
324
  fr: "Train",
320
325
  it: "Treno"
321
326
  }
322
- }, M = {
327
+ }, N = {
323
328
  de: "(optional)",
324
329
  en: "(optional)",
325
330
  fr: "(facultatif)",
326
331
  it: "(facoltativo)"
327
- }, N = {
332
+ }, P = {
328
333
  de: "Linkziel öffnet in neuem Fenster.",
329
334
  en: "Link target opens in a new window.",
330
335
  fr: "Le lien s'ouvre dans une nouvelle fenêtre.",
331
336
  it: "Il link si apre in una nuova finestra."
332
- }, P = {
337
+ }, F = {
333
338
  de: "Minuten Fussweg nach Ankunft:",
334
339
  en: "minutes of walking time after arrival:",
335
340
  fr: "minutes de trajet à pied après l’arrivée:",
336
341
  it: "minuti a piedi all’arrivo:"
337
- }, F = {
342
+ }, I = {
338
343
  de: "Minuten Fussweg vor Abfahrt:",
339
344
  en: "minutes of walking time before departure:",
340
345
  fr: "minutes de trajet à pied avant le départ:",
341
346
  it: "minuti a piedi prima della partenza:"
342
- }, I = {
347
+ }, L = {
343
348
  de: "Meldung schliessen",
344
349
  en: "Close message",
345
350
  fr: "Fermer le message",
346
351
  it: "Chiudere il messaggio"
347
- }, L = {
352
+ }, R = {
348
353
  de: "Nachricht schliessen",
349
354
  en: "Close message",
350
355
  fr: "Fermer le message",
351
356
  it: "Chiudere il messaggio"
352
- }, R = {
357
+ }, z = {
353
358
  de: "Dialog",
354
359
  en: "Dialog",
355
360
  fr: "Dialogue",
356
361
  it: "Dialogo"
357
- }, z = {
362
+ }, B = {
358
363
  de: "Übergelagertes Fenster schliessen",
359
364
  en: "Close secondary window",
360
365
  fr: "Fermer la fenêtre superposée",
361
366
  it: "Chiudere la finestra sovrapposta"
362
- }, B = {
367
+ }, V = {
363
368
  de: "Navigation schliessen",
364
369
  en: "Close navigation",
365
370
  fr: "Fermer la navigation",
366
371
  it: "Chiudere la navigazione"
367
- }, V = {
372
+ }, H = {
368
373
  de: "Seitenleiste schliessen",
369
374
  en: "Close sidebar",
370
375
  fr: "Fermer la barre latérale",
371
376
  it: "Chiudere la barra laterale"
372
- }, H = {
377
+ }, U = {
373
378
  de: "Hinweis schliessen",
374
379
  en: "Close note",
375
380
  fr: "Fermer la note",
376
381
  it: "Chiudere la nota"
377
- }, U = {
382
+ }, W = {
378
383
  de: "Zurück",
379
384
  en: "Go back",
380
385
  fr: "Retourner",
381
386
  it: "Indietro"
382
- }, W = {
387
+ }, G = {
383
388
  de: "Heute",
384
389
  en: "Today",
385
390
  fr: "Aujourd’hui",
386
391
  it: "Oggi"
387
- }, G = {
392
+ }, K = {
388
393
  de: "Zum nächsten Monat wechseln",
389
394
  en: "Change to the next month",
390
395
  fr: "Passer au mois suivant",
391
396
  it: "Passare al mese successivo"
392
- }, K = {
397
+ }, q = {
393
398
  de: "Zum letzten Monat wechseln",
394
399
  en: "Change to the previous month",
395
400
  fr: "Passer au mois précédent",
396
401
  it: "Passare al mese precedente"
397
- }, q = {
402
+ }, J = {
398
403
  de: "Nächster Tag",
399
404
  en: "Next day",
400
405
  fr: "Jour suivant",
401
406
  it: "Giorno successivo"
402
- }, J = {
407
+ }, Y = {
403
408
  de: "Vorheriger Tag",
404
409
  en: "Previous day",
405
410
  fr: "Jour précédent",
406
411
  it: "Giorno precedente"
407
- }, Y = {
412
+ }, X = {
408
413
  de: "Jahr und Monat auswählen",
409
414
  en: "Choose year and month",
410
415
  fr: "Choisir l’année et le mois",
411
416
  it: "Seleziona anno e mese"
412
- }, X = {
417
+ }, Z = {
413
418
  de: "Datum auswählen",
414
419
  en: "Choose date",
415
420
  fr: "Choisir une date",
416
421
  it: "Seleziona una data"
417
- }, Z = (e) => ({
422
+ }, Q = (e) => ({
418
423
  de: `Wechsel zu den nächsten ${e} Jahren`,
419
424
  en: `Change to the next ${e} years`,
420
425
  fr: `Passer aux ${e} prochaines années`,
421
426
  it: `Passare ai successivi ${e} anni`
422
- }), Q = (e) => ({
427
+ }), $ = (e) => ({
423
428
  de: `Wechsel zu den vorherigen ${e} Jahren`,
424
429
  en: `Change to the previous ${e} years`,
425
430
  fr: `Passage aux ${e} précédentes années`,
426
431
  it: `Passare ai precedenti ${e} anni`
427
- }), $ = {
432
+ }), ee = {
428
433
  de: "Zum nächsten Jahr wechseln",
429
434
  en: "Change to the next year",
430
435
  fr: "Passer à l'année suivante",
431
436
  it: "Passare all'anno successivo"
432
- }, ee = {
437
+ }, te = {
433
438
  de: "Zum letzten Jahr wechseln",
434
439
  en: "Change to the previous year",
435
440
  fr: "Passer à l'année précédent",
436
441
  it: "Passare all'anno precedente"
437
- }, te = (e) => ({
442
+ }, ne = (e) => ({
438
443
  de: `Zum nächsten Tag wechseln, derzeit ausgewählt ${e}.`,
439
444
  en: `Change to the next day, currently selected ${e}.`,
440
445
  fr: `Passer au jour suivant, actuellement sélectionné ${e}.`,
441
446
  it: `Passare al giorno successivo, attualmente selezionato ${e}.`
442
- }), ne = (e) => ({
447
+ }), re = (e) => ({
443
448
  de: `Zum vorherigen Tag wechseln, derzeit ausgewählt ${e}.`,
444
449
  en: `Change to the previous day, currently selected ${e}.`,
445
450
  fr: `Passer au jour précédent, actuellement sélectionné ${e}.`,
446
451
  it: `Passare al giorno precedente, attualmente selezionato ${e}.`
447
- }), re = {
452
+ }), ie = {
448
453
  de: "Kalender anzeigen",
449
454
  en: "Show calendar",
450
455
  fr: "Afficher le calendrier",
451
456
  it: "Visualizza il calendario"
452
- }, ie = {
457
+ }, ae = {
453
458
  de: "TT.MM.JJJJ",
454
459
  en: "DD.MM.YYYY",
455
460
  fr: "JJ.MM.AAAA",
456
461
  it: "GG.MM.AAAA"
457
- }, ae = {
462
+ }, oe = {
458
463
  de: "Datum geändert auf",
459
464
  en: "Date changed to",
460
465
  fr: "Date modifiée au",
461
466
  it: "Data modificata in"
462
- }, oe = {
467
+ }, se = {
463
468
  de: "Verbindung von",
464
469
  en: "Connection from",
465
470
  fr: "Liaison de",
466
471
  it: "Collegamento da"
467
- }, se = {
472
+ }, ce = {
468
473
  de: "nach",
469
474
  en: "to",
470
475
  fr: "à",
471
476
  it: "a"
472
- }, ce = (e) => ({
477
+ }, le = (e) => ({
473
478
  de: `und zurück nach ${e}.`,
474
479
  en: `and back to ${e}.`,
475
480
  fr: `et retour à ${e}.`,
476
481
  it: `e ritorno a ${e}.`
477
- }), le = {
482
+ }), ue = {
478
483
  de: "erweitert",
479
484
  en: "expanded",
480
485
  fr: "étendu",
481
486
  it: "espanso"
482
- }, ue = {
487
+ }, de = {
483
488
  de: "reduziert",
484
489
  en: "collapsed",
485
490
  fr: "condensé",
486
491
  it: "compresso"
487
- }, de = {
492
+ }, fe = {
488
493
  de: "Karte zeigen",
489
494
  en: "Show map",
490
495
  fr: "Afficher la carte",
491
496
  it: "Mostra la mappa"
492
- }, fe = {
497
+ }, pe = {
493
498
  de: "Mehr Breadcrumbs anzeigen",
494
499
  en: "Show more breadcrumbs",
495
500
  fr: "Afficher plus de fils d’Ariane",
496
501
  it: "Mostra più breadcrumbs"
497
- }, pe = {
502
+ }, me = {
498
503
  de: "Feldinhalt löschen",
499
504
  en: "Clear input value",
500
505
  fr: "Effacer la valeur d’entrée",
501
506
  it: "Cancella il valore dell’input"
502
- }, me = {
507
+ }, he = {
503
508
  de: "Klicken Sie auf diese Karte für Details",
504
509
  en: "Click on this card for details",
505
510
  fr: "Cliquez sur cette carte pour plus de détails",
506
511
  it: "Clicca su questa scheda per i dettagli"
507
- }, he = {
512
+ }, ge = {
508
513
  de: "Klicken Sie auf diese Karte, um zurück zur Zusammenfassung zu gelangen",
509
514
  en: "Click on this card to go back to the summary",
510
515
  fr: "Cliquez sur cette carte pour revenir au résumé",
511
516
  it: "Clicca su questa scheda per tornare al sommario"
512
- }, ge = {
517
+ }, _e = {
513
518
  de: "Datei auswählen",
514
519
  en: "Choose a file",
515
520
  fr: "Choisissez un fichier",
516
521
  it: "Scegli un file"
517
- }, _e = {
522
+ }, ve = {
518
523
  de: "Dateien auswählen",
519
524
  en: "Choose files",
520
525
  fr: "Choisissez des fichiers",
521
526
  it: "Scegli file"
522
- }, ve = {
527
+ }, ye = {
523
528
  de: "Ziehen Sie Ihre Datei hier hin (Drag & Drop)",
524
529
  en: "Drag & Drop your file here",
525
530
  fr: "Faites glisser et déposez votre fichier ici",
526
531
  it: "Trascina e rilascia il file qui"
527
- }, ye = {
532
+ }, be = {
528
533
  de: "Ziehen Sie Ihre Dateien hier hin (Drag & Drop)",
529
534
  en: "Drag & Drop your files here",
530
535
  fr: "Faites glisser et déposez vos fichiers ici",
531
536
  it: "Trascina e rilascia i file qui"
532
- }, be = {
537
+ }, xe = {
533
538
  de: "Datei entfernen",
534
539
  en: "Remove file",
535
540
  fr: "Effacer le fichier",
536
541
  it: "Rimuovi il file"
537
- }, xe = (e) => e && e.length > 0 ? {
542
+ }, Se = (e) => e && e.length > 0 ? {
538
543
  de: `Aktuell ausgewählte Datei: ${e.join(", ")}.`,
539
544
  en: `Currently selected files: ${e.join(", ")}.`,
540
545
  fr: `Fichier actuellement sélectionné: ${e.join(", ")}.`,
@@ -544,136 +549,136 @@ var e = {
544
549
  en: "No files selected.",
545
550
  fr: "Nessun fichier sélectionné.",
546
551
  it: "Nessun file selezionato."
547
- }, Se = {
552
+ }, Ce = {
548
553
  de: "Nächste Seite",
549
554
  en: "Next page",
550
555
  fr: "Page suivante",
551
556
  it: "Pagina successiva"
552
- }, Ce = {
557
+ }, we = {
553
558
  de: "Vorherige Seite",
554
559
  en: "Previous page",
555
560
  fr: "Page précédente",
556
561
  it: "Pagina precedente"
557
- }, we = {
562
+ }, Te = {
558
563
  de: "Seite",
559
564
  en: "Page",
560
565
  fr: "Page",
561
566
  it: "Pagina"
562
- }, Te = {
567
+ }, Ee = {
563
568
  de: "Einträge pro Seite",
564
569
  en: "Items per page",
565
570
  fr: "Entrées par page",
566
571
  it: "Elementi per pagina"
567
- }, Ee = {
572
+ }, De = {
568
573
  de: "ausgewählt",
569
574
  en: "selected",
570
575
  fr: "sélectionnée",
571
576
  it: "selezionata"
572
- }, De = {
577
+ }, Oe = {
573
578
  de: "von",
574
579
  en: "of",
575
580
  fr: "sur",
576
581
  it: "di"
577
- }, Oe = {
582
+ }, ke = {
578
583
  de: "Muss gesetzt sein.",
579
584
  en: "Must be checked.",
580
585
  fr: "Doit être cochée.",
581
586
  it: "Deve essere impostato."
582
- }, ke = {
587
+ }, Ae = {
583
588
  de: "Auswahl erforderlich.",
584
589
  en: "Selection required.",
585
590
  fr: "Sélection requise.",
586
591
  it: "Selezione necessaria."
587
- }, Ae = {
592
+ }, je = {
588
593
  de: "Eingabe erforderlich.",
589
594
  en: "Input required.",
590
595
  fr: "Entrée obligatoire.",
591
596
  it: "Inserimento necessario."
592
- }, je = {
597
+ }, Me = {
593
598
  de: "Bitte gültiges Datum eingeben.",
594
599
  en: "Please provide a valid date.",
595
600
  fr: "Veuillez saisir une date valide.",
596
601
  it: "Inserire una data valida."
597
- }, Me = (e) => ({
602
+ }, Ne = (e) => ({
598
603
  de: `Datum darf nicht vor ${e} sein.`,
599
604
  en: `Date must not be before ${e}.`,
600
605
  fr: `La date ne doit pas être antérieure au ${e}.`,
601
606
  it: `La data non deve essere anteriore al ${e}.`
602
- }), Ne = (e) => ({
607
+ }), Pe = (e) => ({
603
608
  de: `Datum darf nicht nach ${e} sein.`,
604
609
  en: `Date must not be after ${e}.`,
605
610
  fr: `La date ne doit pas être postérieure au ${e}.`,
606
611
  it: `La data non deve essere successiva al ${e}.`
607
- }), Pe = (e) => ({
612
+ }), Fe = (e) => ({
608
613
  de: `Zeit geändert zu ${e}.`,
609
614
  en: `Time changed to ${e}.`,
610
615
  fr: `Heure modifiée: ${e}.`,
611
616
  it: `Orario modificata alle ${e}.`
612
- }), Fe = {
617
+ }), Ie = {
613
618
  de: "Bitte gültige Zeit eingeben.",
614
619
  en: "Please provide a valid time.",
615
620
  fr: "Veuillez saisir une heure valide.",
616
621
  it: "Inserisci un orario valido."
617
- }, Ie = {
622
+ }, Le = {
618
623
  de: "Zeit darf nicht nach 23:59 sein.",
619
624
  en: "Time must not be after 23:59.",
620
625
  fr: "L’heure ne doit pas être postérieure à 23h59.",
621
626
  it: "L’orario non può essere successivo alle 23.59."
622
- }, Le = {
627
+ }, Re = {
623
628
  de: "Die Zeiteingabe darf nicht mehr als fünf Zeichen haben.",
624
629
  en: "The time input must not exceed five characters.",
625
630
  fr: "La saisie de l’heure ne doit pas comporter plus de cinq caractères.",
626
631
  it: "L’indicazione temporale non può contenere più di cinque caratteri."
627
- }, Re = {
632
+ }, ze = {
628
633
  de: "Drücken Sie die Entfernen-Taste um den Chip zu löschen",
629
634
  en: "Press the Delete button to remove the chip",
630
635
  fr: "Appuyez sur la touche Del pour supprimer cette puce",
631
636
  it: "Premi il tasto Canc per rimuovere questa chip"
632
- }, ze = {
637
+ }, Be = {
633
638
  de: "Ausgewählte Elemente:",
634
639
  en: "Selected elements:",
635
640
  fr: "Éléments sélectionnés:",
636
641
  it: "Elementi selezionati:"
637
- }, Be = {
642
+ }, Ve = {
638
643
  de: "Woche",
639
644
  en: "Week",
640
645
  fr: "Semaine",
641
646
  it: "Settimana"
642
- }, Ve = {
647
+ }, He = {
643
648
  de: "Von und Nach tauschen",
644
649
  en: "Swap from and to",
645
650
  fr: "Échanger de et à",
646
651
  it: "Inverti Da e A"
647
- }, He = (e, t) => ({
652
+ }, Ue = (e, t) => ({
648
653
  de: `${e} von ${t}`,
649
654
  en: `${e} of ${t}`,
650
655
  fr: `${e} sur ${t}`,
651
656
  it: `${e} di ${t}`
652
- }), Ue = {
657
+ }), We = {
653
658
  de: "Karussell – Benutzen Sie die Pfeiltasten im Interaktionsmodus, um durch die Folien zu navigieren",
654
659
  en: "Carousel - Use the arrow keys in interaction mode to navigate through the slides",
655
660
  fr: "Carrousel – Utilisez les touches fléchées en mode interaction pour naviguer dans les diapositives",
656
661
  it: "Carosello – Utilizzare i tasti freccia in modalità interazione per navigare tra le slide"
657
- }, We = {
662
+ }, Ge = {
658
663
  de: "Nächste Folie",
659
664
  en: "Next slide",
660
665
  fr: "Diapositive suivante",
661
666
  it: "Slide successiva"
662
- }, Ge = {
667
+ }, Ke = {
663
668
  de: "Vorherige Folie",
664
669
  en: "Previous slide",
665
670
  fr: "Diapositive précédente",
666
671
  it: "Slide precedente"
667
- }, Ke = {
672
+ }, qe = {
668
673
  de: "Folie",
669
674
  en: "Slide",
670
675
  fr: "Diapositive",
671
676
  it: "Slide"
672
- }, qe = {
677
+ }, Je = {
673
678
  de: "Zeichen übrig",
674
679
  en: "characters remaining",
675
680
  fr: "caractères restants",
676
681
  it: "caratteri rimanenti"
677
682
  };
678
683
  //#endregion
679
- export { g as i18nAdditionalWagonInformationHeading, t as i18nArrival, h as i18nBlockedPassage, fe as i18nBreadcrumbEllipsisButtonLabel, X as i18nCalendarDateSelection, Be as i18nCalendarWeekNumber, Ue as i18nCarouselArrowsNavigationHint, He as i18nCarouselItemAriaLabel, Oe as i18nCheckboxRequired, Re as i18nChipDelete, ze as i18nChipGroupInputDescription, i as i18nClass, pe as i18nClearInput, I as i18nCloseAlert, z as i18nCloseDialog, B as i18nCloseNavigation, L as i18nCloseNotification, H as i18nClosePopover, V as i18nCloseSidebar, u as i18nClosedCompartmentLabel, ue as i18nCollapsed, oe as i18nConnectionFrom, ce as i18nConnectionRoundtrip, se as i18nConnectionTo, p as i18nCouchetteWagonLabel, ae as i18nDateChangedTo, je as i18nDateInvalid, Ne as i18nDateMax, Me as i18nDateMin, ie as i18nDatePickerPlaceholder, _ as i18nDeparture, R as i18nDialog, e as i18nDirection, b as i18nDurationDay, y as i18nDurationHour, v as i18nDurationMinute, le as i18nExpanded, ge as i18nFileSelectorButtonLabel, _e as i18nFileSelectorButtonLabelMultiple, xe as i18nFileSelectorCurrentlySelected, be as i18nFileSelectorDeleteFile, ve as i18nFileSelectorSubtitleLabel, ye as i18nFileSelectorSubtitleLabelMultiple, me as i18nFlipCard, O as i18nFromPlatform, U as i18nGoBack, Ae as i18nInputRequired, Te as i18nItemsPerPage, d as i18nLocomotiveLabel, de as i18nMapContainerButtonLabel, j as i18nMeansOfTransport, D as i18nNew, q as i18nNextDay, G as i18nNextMonth, Se as i18nNextPage, We as i18nNextSlide, $ as i18nNextYear, Z as i18nNextYearRange, A as i18nOccupancy, M as i18nOptional, we as i18nPage, De as i18nPaginatorOf, Ee as i18nPaginatorSelected, J as i18nPreviousDay, K as i18nPreviousMonth, Ce as i18nPreviousPage, Ge as i18nPreviousSlide, ee as i18nPreviousYear, Q as i18nPreviousYearRange, w as i18nRealTimeInfo, qe as i18nRemainingCharacters, m as i18nRestaurantWagonLabel, he as i18nReverseCard, n as i18nSector, r as i18nSectorShort, te as i18nSelectNextDay, ne as i18nSelectPreviousDay, ke as i18nSelectionRequired, re as i18nShowCalendar, f as i18nSleepingWagonLabel, Ke as i18nSlide, k as i18nSupersaver, N as i18nTargetOpensInNewWindow, Pe as i18nTimeInputChange, Fe as i18nTimeInvalid, Ie as i18nTimeMax, Le as i18nTimeMaxLength, Ve as i18nTimetableFormSwapButtonLabel, W as i18nToday, a as i18nTrain, o as i18nTrains, T as i18nTransferProcedure, E as i18nTransferProcedures, C as i18nTravelhints, S as i18nTripDuration, x as i18nTripQuayChange, c as i18nWagonLabel, l as i18nWagonLabelNumber, s as i18nWagonsLabel, P as i18nWalkingDistanceArrival, F as i18nWalkingDistanceDeparture, Y as i18nYearMonthSelection };
684
+ export { _ as i18nAdditionalWagonInformationHeading, i as i18nAnd, t as i18nArrival, g as i18nBlockedPassage, pe as i18nBreadcrumbEllipsisButtonLabel, Z as i18nCalendarDateSelection, Ve as i18nCalendarWeekNumber, We as i18nCarouselArrowsNavigationHint, Ue as i18nCarouselItemAriaLabel, ke as i18nCheckboxRequired, ze as i18nChipDelete, Be as i18nChipGroupInputDescription, a as i18nClass, me as i18nClearInput, L as i18nCloseAlert, B as i18nCloseDialog, V as i18nCloseNavigation, R as i18nCloseNotification, U as i18nClosePopover, H as i18nCloseSidebar, d as i18nClosedCompartmentLabel, de as i18nCollapsed, se as i18nConnectionFrom, le as i18nConnectionRoundtrip, ce as i18nConnectionTo, m as i18nCouchetteWagonLabel, oe as i18nDateChangedTo, Me as i18nDateInvalid, Pe as i18nDateMax, Ne as i18nDateMin, ae as i18nDatePickerPlaceholder, v as i18nDeparture, z as i18nDialog, e as i18nDirection, x as i18nDurationDay, b as i18nDurationHour, y as i18nDurationMinute, ue as i18nExpanded, _e as i18nFileSelectorButtonLabel, ve as i18nFileSelectorButtonLabelMultiple, Se as i18nFileSelectorCurrentlySelected, xe as i18nFileSelectorDeleteFile, ye as i18nFileSelectorSubtitleLabel, be as i18nFileSelectorSubtitleLabelMultiple, he as i18nFlipCard, k as i18nFromPlatform, W as i18nGoBack, je as i18nInputRequired, Ee as i18nItemsPerPage, f as i18nLocomotiveLabel, fe as i18nMapContainerButtonLabel, M as i18nMeansOfTransport, O as i18nNew, J as i18nNextDay, K as i18nNextMonth, Ce as i18nNextPage, Ge as i18nNextSlide, ee as i18nNextYear, Q as i18nNextYearRange, j as i18nOccupancy, N as i18nOptional, Te as i18nPage, Oe as i18nPaginatorOf, De as i18nPaginatorSelected, Y as i18nPreviousDay, q as i18nPreviousMonth, we as i18nPreviousPage, Ke as i18nPreviousSlide, te as i18nPreviousYear, $ as i18nPreviousYearRange, T as i18nRealTimeInfo, Je as i18nRemainingCharacters, h as i18nRestaurantWagonLabel, ge as i18nReverseCard, n as i18nSector, r as i18nSectorShort, ne as i18nSelectNextDay, re as i18nSelectPreviousDay, Ae as i18nSelectionRequired, ie as i18nShowCalendar, p as i18nSleepingWagonLabel, qe as i18nSlide, A as i18nSupersaver, P as i18nTargetOpensInNewWindow, Fe as i18nTimeInputChange, Ie as i18nTimeInvalid, Le as i18nTimeMax, Re as i18nTimeMaxLength, He as i18nTimetableFormSwapButtonLabel, G as i18nToday, o as i18nTrain, s as i18nTrains, E as i18nTransferProcedure, D as i18nTransferProcedures, w as i18nTravelhints, C as i18nTripDuration, S as i18nTripQuayChange, l as i18nWagonLabel, u as i18nWagonLabelNumber, c as i18nWagonsLabel, F as i18nWalkingDistanceArrival, I as i18nWalkingDistanceDeparture, X as i18nYearMonthSelection };