chore: Fix partner-sas 404 page * Fix 404 page * Fix 404 links * Fix links Approved-by: Matilda Landström
132 lines
3.5 KiB
TypeScript
132 lines
3.5 KiB
TypeScript
import type { Lang } from "@scandic-hotels/common/constants/language"
|
|
|
|
type Texts = {
|
|
title: string
|
|
goToStartPage: {
|
|
question: string
|
|
link: string
|
|
linkText: string
|
|
}
|
|
goToDestinations: {
|
|
question: string
|
|
link: string
|
|
linkText: string
|
|
}
|
|
goToOffers: {
|
|
question: string
|
|
link: string
|
|
linkText: string
|
|
}
|
|
}
|
|
|
|
export const texts: Record<Lang, Texts> = {
|
|
en: {
|
|
title: "Sorry, page not found.",
|
|
goToStartPage: {
|
|
question: "Would you like to go back to the ",
|
|
link: "https://www.scandichotels.com/en",
|
|
linkText: "startpage",
|
|
},
|
|
goToDestinations: {
|
|
question: "Or take a trip to our ",
|
|
link: "https://www.scandichotels.com/hotels",
|
|
linkText: "destinations",
|
|
},
|
|
goToOffers: {
|
|
question: " or latest ",
|
|
link: "https://www.scandichotels.com/weekend-packages-and-offers",
|
|
linkText: "offers",
|
|
},
|
|
},
|
|
sv: {
|
|
title: "Oj då, vi kunde inte hitta sidan du söker.",
|
|
goToStartPage: {
|
|
question: "Vill du gå tillbaka till ",
|
|
link: "https://www.scandichotels.com/sv",
|
|
linkText: "startsidan",
|
|
},
|
|
goToDestinations: {
|
|
question: "Eller resa till våra ",
|
|
link: "https://www.scandichotels.com/sv/destinationer",
|
|
linkText: "destinationer",
|
|
},
|
|
goToOffers: {
|
|
question: " eller se våra senaste ",
|
|
link: "https://www.scandichotels.com/sv/erbjudanden",
|
|
linkText: "erbjudanden",
|
|
},
|
|
},
|
|
de: {
|
|
title: "Tut uns leid, Seite nicht gefunden.",
|
|
goToStartPage: {
|
|
question: "Möchten Sie zurück zur ",
|
|
link: "https://www.scandichotels.com/de/",
|
|
linkText: "Startseite",
|
|
},
|
|
goToDestinations: {
|
|
question: "Oder machen Sie einen Ausflug zu unseren ",
|
|
link: "https://www.scandichotels.com/de/reiseziele",
|
|
linkText: "Reisezielen",
|
|
},
|
|
goToOffers: {
|
|
question: " und aktuellen ",
|
|
link: "https://www.scandichotels.com/de/angebote",
|
|
linkText: "Angeboten",
|
|
},
|
|
},
|
|
fi: {
|
|
title: "Valitettavasti sivua ei löydy.",
|
|
goToStartPage: {
|
|
question: "Haluaisitko mennä takaisin ",
|
|
link: "https://www.scandichotels.com/fi/",
|
|
linkText: "etusivulle",
|
|
},
|
|
goToDestinations: {
|
|
question: "Voit myös tutustu ",
|
|
link: "https://www.scandichotels.com/fi/kohteet",
|
|
linkText: "kohteisiimme",
|
|
},
|
|
goToOffers: {
|
|
question: " tai ajankohtaisiin ",
|
|
link: "https://www.scandichotels.com/fi/tarjoukset",
|
|
linkText: "tarjouksiimme",
|
|
},
|
|
},
|
|
no: {
|
|
title: "Oi da, vi fant ikke siden du lette etter...",
|
|
goToStartPage: {
|
|
question: "Vil du gå tilbake til ",
|
|
link: "https://www.scandichotels.com/no/",
|
|
linkText: "startsiden",
|
|
},
|
|
goToDestinations: {
|
|
question: "Eller ta en tur til våre ",
|
|
link: "https://www.scandichotels.com/no/destinasjoner",
|
|
linkText: "destinasjoner",
|
|
},
|
|
goToOffers: {
|
|
question: " eller siste ",
|
|
link: "https://www.scandichotels.com/no/hotelltilbud",
|
|
linkText: "tilbud",
|
|
},
|
|
},
|
|
da: {
|
|
title: "Hov - siden kan ikke findes!",
|
|
goToStartPage: {
|
|
question: "Vil du gå tilbage til ",
|
|
link: "https://www.scandichotels.com/dk/",
|
|
linkText: "startsiden",
|
|
},
|
|
goToDestinations: {
|
|
question: "Eller tag en tur til vores ",
|
|
link: "https://www.scandichotels.com/dk/destinationer",
|
|
linkText: "destinationer",
|
|
},
|
|
goToOffers: {
|
|
question: " eller seneste ",
|
|
link: "https://www.scandichotels.com/dk/tilbud",
|
|
linkText: "tilbud",
|
|
},
|
|
},
|
|
}
|