mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-10 18:54:21 +00:00
parent
dff4b06313
commit
36e4cc41a9
37 changed files with 326 additions and 211 deletions
quartz/i18n
11
quartz/i18n/index.ts
Normal file
11
quartz/i18n/index.ts
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue