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() {
>
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",
})}