--- import { l, astroI18n } from "astro-i18n"; // get all the locales available on the website and remove the one currently in use const availableLocales = astroI18n.langCodes.filter( (locale) => locale !== astroI18n.langCode ); // current path const currentRoute = Astro.url.pathname; ---