Localități din , r-ul Orhei
// // Check if the user has already been redirected in this session
// let alreadyRedirected = sessionStorage.getItem('alreadyRedirected');
// if (!alreadyRedirected) {
// let savedLocation = localStorage.getItem('savedLocation');
// if (savedLocation) {
// let currentLocation = window.location.pathname;
// if (currentLocation !== '/ro/Prognoza_Meteo/' + savedLocation &&
// currentLocation !== '/ro/Prognoza_Meteo_10zile/' + savedLocation) {
// window.location.href = '/ro/Prognoza_Meteo/' + savedLocation;
// }
// }
// }
// sessionStorage.setItem('alreadyRedirected', 'true');
// let url = window.location.href;
// let locationPart;
// if (url.includes("Prognoza_Meteo")) {
// locationPart = url.split("Prognoza_Meteo/")[1];
// if (locationPart) {
// localStorage.setItem('savedLocation', locationPart);
// }
// }
// if (url.includes("Prognoza_Meteo_10zile")) {
// locationPart = url.split("Prognoza_Meteo_10zile/")[1];
// if (locationPart) {
// localStorage.setItem('savedLocation', locationPart);
// }
// }