document.addEventListener("DOMContentLoaded", function () {
// Pobierz bieżącą domenę i ścieżkę
var domain = window.location.hostname.replace("www.", ""); // Usuń "www."
var path = window.location.pathname; // Pobierz ścieżkę URL
// Definicja mapy tekstów dla domen i języków
var textMap = {
"hg-lamps.fr": {
desktopP: "Jusqu'à -70% OFF",
mobileP: "Black Weeks COMMENCE ! Réductions jusqu'à -70%",
linkBW24: "/blog_eclairage/promotions-actuelles/",
},
"hg-lamps.de": {
desktopP: "Bis zu -70% OFF",
mobileP: "Black Weeks STARTET! Rabatte bis zu -70%",
linkBW24: "/blog/sonderangebote/",
},
"hg-lamps.cz": {
desktopP: "Až -70% OFF",
mobileP: "Black Weeks ZAČÍNÁ! Slevy až -70%",
linkBW24: "/blog/aktualni-akce/",
},
"hg-lamps.lt": {
desktopP: "Iki -70% OFF",
mobileP: "Black Weeks PRASIDEDA! Nuolaidos iki -70%",
linkBW24: "/blog/dabartines-akcijos-ir-nuolaidos/",
},
"hg-lamps.hu": {
desktopP: "Akár -70% OFF",
mobileP: "Black Weeks INDUL! Akár -70% kedvezmény",
linkBW24: "/blog/jelenlegi-promociok/",
},
"hg-lamps.nl": {
desktopP: "Tot -70% OFF",
mobileP: "Black Weeks START! Korting tot -70%",
linkBW24: "/blog/promoties-en-aanbiedingen/",
},
"hg-lamps.ro": {
desktopP: "Până la -70% OFF",
mobileP: "Black Weeks ÎNCEPE! Reduceri de până la -70%",
linkBW24: "/blog/promo-ii-i-reduceri-curente/",
},
"lampak24.hu": {
desktopP: "Akár -70% OFF",
mobileP: "Elindítjuk a BLACK WEEKS-et! Akár -70% kedvezmény!",
linkBW24: "/blog/aktualis-akciok-es-kedvezmenyek/",
},
"e-klosz.pl": {
desktopP: "Do -70% OFF",
mobileP: "Black Weeks START! Rabaty do -70%",
linkBW24: "/blog/aktualne-promocje/",
},
"oswietlenie24h.pl": {
desktopP: "Nawet -70% OFF",
mobileP: "Rozpoczynamy BLACK WEEKS! Rabaty do -70%!",
linkBW24: "/blog/biezace-promocje-i-rabaty/",
},
"hg-lamps.be": {
nl: {
desktopP: "Tot -70% OFF",
mobileP: "Black Weeks START! Korting tot -70%",
linkBW24: "/nl/blog/promoties-en-aanbiedingen/",
},
fr: {
desktopP: "Jusqu'à -70% OFF",
mobileP: "Black Weeks COMMENCE ! Réductions jusqu'à -70%",
linkBW24: "/fr/blog_eclairage/promotions-actuelles/",
},
},
};
// Pobierz elementy DOM
var desktopPElement = document.querySelector(".promo-text-desktop-bw2024 p");
var mobilePElement = document.querySelector(".promo-text-mobile-bw2024 p");
var linkABW24 = document.querySelector(".bw2024-a");
// Sprawdź, czy elementy istnieją
if (!desktopPElement || !mobilePElement || !linkABW24) return;
// Ustaw teksty i link na podstawie domeny i ścieżki
if (domain === "hg-lamps.be") {
if (path.includes("/nl/")) {
var nlText = textMap["hg-lamps.be"].nl;
desktopPElement.textContent = nlText.desktopP;
mobilePElement.textContent = nlText.mobileP;
linkABW24.href = nlText.linkBW24;
} else if (path.includes("/fr/")) {
var frText = textMap["hg-lamps.be"].fr;
desktopPElement.textContent = frText.desktopP;
mobilePElement.textContent = frText.mobileP;
linkABW24.href = frText.linkBW24;
}
} else if (textMap[domain]) {
var textData = textMap[domain];
desktopPElement.textContent = textData.desktopP;
mobilePElement.textContent = textData.mobileP;
linkABW24.href = textData.linkBW24;
}
});