24 lines
670 B
JavaScript
24 lines
670 B
JavaScript
/** @type {import('@/types/routes').LangRoute} */
|
|
export const hotelReservation = {
|
|
en: "/en/hotelreservation",
|
|
sv: "/sv/hotellbokning",
|
|
no: "/no/hotell-reservasjon",
|
|
fi: "/fi/hotellivaraus",
|
|
da: "/da/hotel-reservation",
|
|
de: "/de/hotelreservierung",
|
|
}
|
|
|
|
export const selectHotel = {
|
|
en: `${hotelReservation.en}/select-hotel`,
|
|
sv: `${hotelReservation.sv}/välj-hotell`,
|
|
no: `${hotelReservation.no}/velg-hotell`,
|
|
fi: `${hotelReservation.fi}/valitse-hotelli`,
|
|
da: `${hotelReservation.da}/vælg-hotel`,
|
|
de: `${hotelReservation.de}/wähle-hotel`,
|
|
}
|
|
|
|
export const bookingFlow = [
|
|
...Object.values(hotelReservation),
|
|
...Object.values(selectHotel),
|
|
]
|