(locale: Locale)
| 31 | type Source = { dict: Record<string, string> } |
| 32 | |
| 33 | function cookie(locale: Locale) { |
| 34 | return `oc_locale=${encodeURIComponent(locale)}; Path=/; Max-Age=31536000; SameSite=Lax` |
| 35 | } |
| 36 | |
| 37 | const LOCALES: readonly Locale[] = [ |
| 38 | "en", |