export type Locale = 'en' | 'fr'; export const locales: Locale[] = ['en', 'fr']; export function otherLocale(locale: Locale): Locale { return locale === 'en' ? 'fr' : 'en'; } export function swapLocalePath(pathname: string, from: Locale, to: Locale): string { return pathname.replace(`/${from}/`, `/${to}/`); }