feat(WEB-102): language-switcher per page basis

This commit is contained in:
Simon Emanuelsson
2024-02-20 15:58:53 +01:00
parent 9e56ff158d
commit 7417abc814
28 changed files with 355 additions and 1377 deletions
-80
View File
@@ -1,80 +0,0 @@
export const currentAboutLinks = [
{
href: "https://www.scandichotels.com/customer-service/frequently-asked-questions/using-the-website",
title: "English",
},
{
href: "https://www.scandichotels.se/kundservice/fragor-och-svar/om-scandics-webbplats",
title: "Svenska",
},
{
href: "https://www.scandichotels.no/kundeservice/sporsmal-og-svar/bruk-av-nettsiden",
title: "Norsk",
},
{
href: "https://www.scandichotels.dk/kundeservice/sporgsmal-og-svar/om-scandics-website",
title: "Dansk",
},
{
href: "https://www.scandichotels.fi/asiakaspalvelu/usein-kysytyt-kysymykset/tietoja-internetsivuista",
title: "Suomi",
},
{
href: "https://www.scandichotels.de/kundenbetreuung/haufig-gestellte-fragen/nutzung-der-internetseite",
title: "Deutsch",
},
]
export const currentSponsoringLinks = [
{
href: "https://www.scandichotels.com/sponsoring",
title: "English",
},
{
href: "https://www.scandichotels.se/vi-sponsrar",
title: "Svenska",
},
{
href: "https://www.scandichotels.no/vi-sponser",
title: "Norsk",
},
{
href: "https://www.scandichotels.dk/sponsorering",
title: "Dansk",
},
{
href: "https://www.scandichotels.fi/sponsorointi",
title: "Suomi",
},
{
href: "https://www.scandichotels.de/sponsoring",
title: "Deutsch",
},
]
export const currentWifiLinks = [
{
href: "https://www.scandichotels.com/explore-scandic/wifi",
title: "English",
},
{
href: "https://www.scandichotels.se/utforska-scandic/wi-fi",
title: "Svenska",
},
{
href: "https://www.scandichotels.no/utforsk-scandic/wifi",
title: "Norsk",
},
{
href: "https://www.scandichotels.dk/oplev-scandic/wifi",
title: "Dansk",
},
{
href: "https://www.scandichotels.fi/koe-scandic/maksuton-internetyhteys",
title: "Suomi",
},
{
href: "https://www.scandichotels.de/scandic-entdecken/wlan",
title: "Deutsch",
},
]
+8
View File
@@ -0,0 +1,8 @@
export const languages = {
da: "Dansk",
de: "Deutsch",
en: "English",
fi: "Suomi",
no: "Norsk",
sv: "Svenska",
}