/** @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", } // TODO: Translate paths export const selectHotel = { en: `${hotelReservation.en}/select-hotel`, sv: `${hotelReservation.sv}/select-hotel`, no: `${hotelReservation.no}/select-hotel`, fi: `${hotelReservation.fi}/select-hotel`, da: `${hotelReservation.da}/select-hotel`, de: `${hotelReservation.de}/select-hotel`, } // TODO: Translate paths export const selectHotelMap = { en: `${selectHotel.en}/map`, sv: `${selectHotel.sv}/map`, no: `${selectHotel.no}/map`, fi: `${selectHotel.fi}/map`, da: `${selectHotel.da}/map`, de: `${selectHotel.de}/map`, } /** @type {import('@/types/routes').LangRoute} */ export const payment = { en: `${hotelReservation.en}/payment`, sv: `${hotelReservation.sv}/betalning`, no: `${hotelReservation.no}/betaling`, fi: `${hotelReservation.fi}/maksu`, da: `${hotelReservation.da}/payment`, de: `${hotelReservation.de}/bezahlung`, } /** @type {import('@/types/routes').LangRoute} */ export const bookingConfirmation = { en: `${hotelReservation.en}/booking-confirmation`, sv: `${hotelReservation.sv}/bokningsbekraftelse`, no: `${hotelReservation.no}/booking-confirmation`, fi: `${hotelReservation.fi}/varausvahvistus`, da: `${hotelReservation.da}/booking-confirmation`, de: `${hotelReservation.de}/buchungsbesttigung`, } export const bookingFlow = [...Object.values(hotelReservation)]