cyberware/quartz/i18n/index.ts
Miguel Pimentel ca284778b2
add Spanish translations (#822)
* add Spanish translations

* format with prettier

* clears npm ci, formatted w/ prettier
2024-02-07 09:57:14 -08:00

21 lines
572 B
TypeScript

import { Translation } from "./locales/definition"
import en from "./locales/en-US"
import fr from "./locales/fr-FR"
import ja from "./locales/ja-JP"
import de from "./locales/de-DE"
import nl from "./locales/nl-NL"
import ro from "./locales/ro-RO"
import es from "./locales/es-ES"
export const TRANSLATIONS = {
"en-US": en,
"fr-FR": fr,
"ja-JP": ja,
"de-DE": de,
"nl-NL": nl,
"ro-RO": ro,
"es-ES": es,
} as const
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale ?? "en-US"]
export type ValidLocale = keyof typeof TRANSLATIONS