Allows you to get the equivalent path of the current route in any locale.
1---2import { switchLocalePath } from "i18n:astro"3 4const enPath = switchLocalePath("en") // /about5const frPath = switchLocalePath("fr") // /fr/a-propos6---