mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
ba836dd3e0
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
15 lines
417 B
TypeScript
15 lines
417 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"
|
|
|
|
export const TRANSLATIONS = {
|
|
"en-US": en,
|
|
"fr-FR": fr,
|
|
"ja-JP": ja,
|
|
"de-DE": de,
|
|
} as const
|
|
|
|
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale]
|
|
export type ValidLocale = keyof typeof TRANSLATIONS
|