Aaron Pham
2024-02-05 e58c217de11680cb09fa29ccd5f1493bcb77a60a
1
2
3
4
5
6
7
8
9
10
11
import { Translation } from "./locales/definition"
import en from "./locales/en-US"
import fr from "./locales/fr-FR"
 
export const TRANSLATIONS = {
  "en-US": en,
  "fr-FR": fr,
} as const
 
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale]
export type ValidLocale = keyof typeof TRANSLATIONS