metacubexd/src/i18n/dict.ts
2023-09-22 17:14:35 +08:00

12 lines
221 B
TypeScript

import { Flatten } from '@solid-primitives/i18n'
import { LANG } from '~/constants'
import en from './en'
import zh from './zh'
export type Dict = Flatten<typeof en>
export default {
[LANG.EN]: en,
[LANG.ZH]: zh,
}