add jp translation

This commit is contained in:
2024-02-05 23:25:28 +09:00
parent b472280d60
commit 46c2e7b176
2 changed files with 67 additions and 0 deletions

View File

@@ -1,10 +1,12 @@
import { Translation } from "./locales/definition"
import en from "./locales/en-US"
import fr from "./locales/fr-FR"
import ja from "./locales/ja-JP"
export const TRANSLATIONS = {
"en-US": en,
"fr-FR": fr,
"ja-JP": ja,
} as const
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale]