metacubexd/src/i18n/dict.ts

12 lines
221 B
TypeScript
Raw Normal View History

2023-09-22 17:14:35 +08:00
import { Flatten } from '@solid-primitives/i18n'
import { LANG } from '~/constants'
2023-09-02 13:50:24 +08:00
import en from './en'
import zh from './zh'
2023-09-22 17:14:35 +08:00
export type Dict = Flatten<typeof en>
2023-09-02 13:50:24 +08:00
export default {
[LANG.EN]: en,
[LANG.ZH]: zh,
}