Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion content/booking/cfl_phone/index.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description: "Buchungsinformationen für die CFL Hotline."
params:
additional_info_link: "https://blogcfl.lu/de/cfl-gruppe/352-2489-2489-haben-sie-fragen-wenden-sie-sich-an-uns-unter-dieser-nummer"
type: "phone"
fee: 5€
---

Die CFL bietet ein Buchungshotline über die FIP 50 Fahrkarten erworben werden können. Die Hotline ist auf Luxemburgisch, Französisch, Deutsch und Englisch verfügbar.
Expand All @@ -14,7 +15,7 @@ Die CFL bietet ein Buchungshotline über die FIP 50 Fahrkarten erworben werden k

Zur Authentifizierung der FIP-Berechtigung muss ein Foto der Innenseite des FIP-Ausweises aller Reisenden per E-Mail an [[email protected]](mailto:[email protected]) während des Buchungsprozesses gesendet werden. Die Bezahlung erfolgt anschließend per Kreditkarte über einen 15-minütigen Zahlungslink, der per E-Mail versendet wird.

**Die CFL erhebt eine Buchungsgebühr von 5€ pro Buchung.**
**Die CFL erhebt eine Buchungsgebühr von 5 € pro Buchung.**

{{% highlight tip %}}
Um zusätzliche Kosten bei Anrufen ins Ausland zu vermeiden, kann die App [Satellite](https://www.satellite.me/) verwendet werden. Darüber sind 100 kostenlose Minuten pro Monat ins Ausland verfügbar. Die Registrierung kann jedoch einige Tage in Anspruch nehmen.
Expand Down
1 change: 1 addition & 0 deletions content/booking/cfl_phone/index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description: "Booking information for the CFL hotline."
params:
additional_info_link: "https://blogcfl.lu/en/cfl-group/352-2489-2489-do-you-have-questions-please-contact-us-at-this-number"
type: "phone"
fee: €5
---
CFL offers a booking hotline where FIP 50 tickets can be purchased. The hotline is available in Luxembourgish, French, German, and English.

Expand Down
1 change: 1 addition & 0 deletions content/booking/uk_mail/index.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description: "Buchungsinformationen für die Buchung per Mail bei International
params:
fip_global_fare: true
type: "email"
fee: 10£
---

**FIP Globalpreis**
Expand Down
1 change: 1 addition & 0 deletions content/booking/uk_mail/index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description: "Booking information for email bookings with International Rail Ltd
params:
fip_global_fare: true
type: "email"
fee: £10
---

**FIP Global Fare**
Expand Down
1 change: 1 addition & 0 deletions i18n/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ booking:
classes:
first: 1. Klasse
second: 2. Klasse
fee: Buchungsgebühr
fip-50: FIP 50 Fahrkarten
fip-global-fare: FIP Globalpreis
reservation: Reservierung
Expand Down
1 change: 1 addition & 0 deletions i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ booking:
classes:
first: 1st Class
second: 2nd Class
fee: Booking Fee
fip-50: FIP 50 Tickets
fip-global-fare: FIP Global Fare
reservation: Reservation
Expand Down
16 changes: 10 additions & 6 deletions layouts/partials/booking.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,18 @@
{{- if ne .fip_50 "nil" -}}<div>{{- T "booking.fip-50" }} {{ if .fip_50 -}}✅{{- else -}}⛔{{- end -}}</div>{{- end -}}
{{- if ne .fip_global_fare "nil" -}}<div>{{- T "booking.fip-global-fare" }} {{ if .fip_global_fare -}}✅{{- else -}}⛔{{- end -}}</div>{{- end -}}
</div>
<div class="o-booking__classes">
{{- if and (ne .reservations "nil") .classes -}}
<div class="o-booking__classes">
<span class="o-booking__classes-title">{{ T "booking.reservation-costs" }}</span>
{{- range $k, $v := .classes -}}
<div><strong>{{- T (print "booking.classes." $k) -}}:</strong> {{ $v -}}</div>
{{- end -}}
</div>
<span class="o-booking__classes-title">{{ T "booking.reservation-costs" }}</span>
{{- range $k, $v := .classes -}}
<div><strong>{{- T (print "booking.classes." $k) -}}:</strong> {{ $v -}}</div>
{{- end -}}
{{- end -}}
{{- if ne .fee "nil" -}}
<span class="o-booking__classes-title">{{ T "booking.fee" }}</span>
<div>{{ .fee }}</div>
{{- end -}}
</div>
</div>
<div class="o-booking__header-actions" />
</div>
Expand Down
1 change: 1 addition & 0 deletions layouts/shortcodes/booking.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"fip_50" ((.Get "fip_50" ) | default $page.Params.fip_50 | default "nil")
"fip_global_fare" ((.Get "fip_global_fare" ) | default $page.Params.fip_global_fare | default "nil")
"reservations" ((.Get "reservations" ) | default $page.Params.reservations | default "nil")
"fee" ((.Get "fee" ) | default $page.Params.fee | default "nil")
"classes" $classes
-}}

Expand Down
Loading