13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
import { en } from './en'
|
|
import { ja } from './ja'
|
|
import type { Locale, Translations } from './types'
|
|
import { zh } from './zh'
|
|
import { zhHant } from './zh-hant'
|
|
|
|
export const TRANSLATIONS: Record<Locale, Translations> = {
|
|
en,
|
|
zh,
|
|
'zh-hant': zhHant,
|
|
ja
|
|
}
|