diff --git a/apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/index.tsx index 4ea36f82b..7daf5390d 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/index.tsx +++ b/apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/index.tsx @@ -73,7 +73,7 @@ export default function MapCard({ hotelName, pois }: MapCardProps) { diff --git a/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx b/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx index 2c6f5ec5f..58d26ee97 100644 --- a/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx +++ b/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx @@ -37,7 +37,7 @@ export default function ChildInfoSelector({ defaultMessage: "Age", }) const bedLabel = intl.formatMessage({ - defaultMessage: "Bed", + defaultMessage: "Bed preference", }) const errorMessage = intl.formatMessage({ defaultMessage: "Child age is required", diff --git a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx index 504cfbfdf..48e6751cf 100644 --- a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx +++ b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx @@ -3,7 +3,6 @@ import { useIntl } from "react-intl" import { myStay } from "@/constants/routes/myStay" -import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import Title from "@/components/TempDesignSystem/Text/Title" import useLang from "@/hooks/useLang" @@ -29,19 +28,10 @@ export default function Header({ const intl = useIntl() const lang = useLang() - const text = intl.formatMessage( - { - defaultMessage: - "Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please contact us.", - }, - { - emailLink: (str) => ( - - {str} - - ), - } - ) + const text = intl.formatMessage({ + defaultMessage: + "Thank you for your booking! We look forward to welcoming you and hope you have a pleasant stay.", + }) const event: EventAttributes = { busyStatus: "FREE", diff --git a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx index fee5633c7..33d20db5e 100644 --- a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx +++ b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx @@ -175,7 +175,7 @@ export default function Room({
  • {intl.formatMessage({ - defaultMessage: "Rebooking", + defaultMessage: "Change or cancel", })} diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Confirm/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Confirm/index.tsx index cc8b4cf6e..6cff51a81 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/Confirm/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Confirm/index.tsx @@ -59,7 +59,7 @@ export default function ConfirmBooking({ > {intl.formatMessage({ - defaultMessage: "How does it work", + defaultMessage: "How it works", })} diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Details/Multiroom/JoinScandicFriendsCard/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/Multiroom/JoinScandicFriendsCard/index.tsx index ed020cbfb..3983e6b1f 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/Details/Multiroom/JoinScandicFriendsCard/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/Multiroom/JoinScandicFriendsCard/index.tsx @@ -84,8 +84,7 @@ export default function JoinScandicFriendsCard({ {intl.formatMessage({ - defaultMessage: - "I promise to join Scandic Friends before checking in", + defaultMessage: "Join Scandic Friends", })} diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/TermsAndConditions/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/TermsAndConditions/index.tsx index c056249be..014ea5e33 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/TermsAndConditions/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/TermsAndConditions/index.tsx @@ -22,7 +22,7 @@ export default function TermsAndConditions() { {intl.formatMessage( { defaultMessage: - "By paying with any of the payment methods available, I accept the terms for this booking and the general Terms & Conditions, and understand that Scandic will process my personal data for this booking in accordance with Scandic's Privacy policy. I also accept that Scandic require a valid credit card during my visit in case anything is left unpaid.", + "I accept the terms for this booking and the general Terms & Conditions, and understand that Scandic will process my personal data for this booking in accordance with Scandic's Privacy policy. I also accept that Scandic requires a valid payment card during my visit in case anything is left unpaid.", }, { termsAndConditionsLink: (str) => ( diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Room/Multiroom.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Room/Multiroom.tsx index 559ef27e1..0ae1ad7e0 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/Room/Multiroom.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Room/Multiroom.tsx @@ -57,8 +57,8 @@ export default function Multiroom() { {room.bedTypes ? (
    @@ -69,7 +69,7 @@ export default function Multiroom() { {showBreakfastStep ? (
    diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Room/One.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Room/One.tsx index da09a992f..2c1a0665a 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/Room/One.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Room/One.tsx @@ -63,8 +63,8 @@ export default function RoomOne({ user }: { user: SafeUser }) { {room.bedTypes ? (
    @@ -75,7 +75,7 @@ export default function RoomOne({ user }: { user: SafeUser }) { {showBreakfastStep ? (
    diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx index e7efde2db..22056bf57 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx @@ -53,7 +53,7 @@ export default function SelectedRoom() { >

    {intl.formatMessage({ - defaultMessage: "Your room", + defaultMessage: "Room", })}

    diff --git a/apps/scandic-web/components/HotelReservation/FindMyBooking/AdditionalInfoForm.tsx b/apps/scandic-web/components/HotelReservation/FindMyBooking/AdditionalInfoForm.tsx index 271417eda..07ee51d7f 100644 --- a/apps/scandic-web/components/HotelReservation/FindMyBooking/AdditionalInfoForm.tsx +++ b/apps/scandic-web/components/HotelReservation/FindMyBooking/AdditionalInfoForm.tsx @@ -50,7 +50,7 @@ export default function AdditionalInfoForm({
    {intl.formatMessage({ - defaultMessage: "One last step", + defaultMessage: "Find your booking", })} diff --git a/apps/scandic-web/components/HotelReservation/FindMyBooking/index.tsx b/apps/scandic-web/components/HotelReservation/FindMyBooking/index.tsx index 11b99e8a6..b50859a48 100644 --- a/apps/scandic-web/components/HotelReservation/FindMyBooking/index.tsx +++ b/apps/scandic-web/components/HotelReservation/FindMyBooking/index.tsx @@ -75,7 +75,7 @@ export default function FindMyBooking() { {intl.formatMessage({ defaultMessage: - "View and manage your stay made on Scandic's website", + "View and manage your booking made via our website or app.", })}
    diff --git a/apps/scandic-web/components/HotelReservation/MyStay/GuestDetails/Details.tsx b/apps/scandic-web/components/HotelReservation/MyStay/GuestDetails/Details.tsx index ef6eebe81..51da312d3 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/GuestDetails/Details.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/GuestDetails/Details.tsx @@ -148,7 +148,7 @@ export default function Details({ booking, user }: DetailsProps) {

    {intl.formatMessage({ - defaultMessage: "Total points", + defaultMessage: "My total points", })}

    diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Receipt/Footer/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Receipt/Footer/index.tsx index ab8a840b4..9c81428a9 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Receipt/Footer/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Receipt/Footer/index.tsx @@ -26,7 +26,7 @@ export default async function Footer({ booking, room }: FooterProps) {
    {intl.formatMessage({ - defaultMessage: "Reference number", + defaultMessage: "Booking number", })}
    diff --git a/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotCancelled/ManageStay/Actions/ChangeDates/Steps/Confirmation/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotCancelled/ManageStay/Actions/ChangeDates/Steps/Confirmation/index.tsx index 8d6a65b2a..9c75710fc 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotCancelled/ManageStay/Actions/ChangeDates/Steps/Confirmation/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotCancelled/ManageStay/Actions/ChangeDates/Steps/Confirmation/index.tsx @@ -117,7 +117,7 @@ export default function Confirmation({ defaultMessage: "Confirm date change", }) const totalDueMsg = intl.formatMessage({ - defaultMessage: "Total due", + defaultMessage: "Pay at the hotel", }) const adultsText = intl.formatMessage( { diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Rooms/MultiRoom/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Rooms/MultiRoom/index.tsx index 365bbcc46..75cabc5f3 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Rooms/MultiRoom/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Rooms/MultiRoom/index.tsx @@ -149,7 +149,7 @@ export default function MultiRoom({ booking, roomNr, user }: MultiRoomProps) { ) : ( {intl.formatMessage({ - defaultMessage: "Reference", + defaultMessage: "Booking number", })} {/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */} {":"} diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Rooms/SingleRoom/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Rooms/SingleRoom/index.tsx index 5c8e26495..ac3bdf876 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Rooms/SingleRoom/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Rooms/SingleRoom/index.tsx @@ -175,7 +175,7 @@ export default function SingleRoom({ bedType, image, user }: RoomProps) { {intl.formatMessage({ - defaultMessage: "Reference", + defaultMessage: "Booking number", })} {/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */} {":"} diff --git a/apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx index 4011f8166..fe2e1cc58 100644 --- a/apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx @@ -24,7 +24,7 @@ export default function BookingCodeFilter() { const bookingCodeFilterItems = [ { label: intl.formatMessage({ - defaultMessage: "Discounted rooms", + defaultMessage: "Booking code rates", }), value: BookingCodeFilterEnum.Discounted, }, diff --git a/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/BookingCodeFilter/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/BookingCodeFilter/index.tsx index 10dd7886c..e3b127bac 100644 --- a/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/BookingCodeFilter/index.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/BookingCodeFilter/index.tsx @@ -32,7 +32,7 @@ export default function BookingCodeFilter() { const bookingCodeFilterItems = [ { label: intl.formatMessage({ - defaultMessage: "Discounted rooms", + defaultMessage: "Booking code rates", }), value: BookingCodeFilterEnum.Discounted, }, @@ -44,7 +44,7 @@ export default function BookingCodeFilter() { }, { label: intl.formatMessage({ - defaultMessage: "All rooms", + defaultMessage: "All rates", }), value: BookingCodeFilterEnum.All, }, diff --git a/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/RoomPackageFilter/Modal.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/RoomPackageFilter/Modal.tsx index f848154ea..e048de418 100644 --- a/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/RoomPackageFilter/Modal.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomsHeader/RoomPackageFilter/Modal.tsx @@ -22,7 +22,7 @@ export default function RoomPackageFilterModal() { return ( - {intl.formatMessage({ defaultMessage: "Room preferences" })} + {intl.formatMessage({ defaultMessage: "Special needs" })}

    - {intl.formatMessage({ defaultMessage: "Room preferences" })} + {intl.formatMessage({ defaultMessage: "Special needs" })}