metacubexd/src/i18n/dict.ts

9 lines
133 B
TypeScript
Raw Normal View History

import { LANG } from '~/constants'
2023-09-02 13:50:24 +08:00
import en from './en'
import zh from './zh'
export default {
[LANG.EN]: en,
[LANG.ZH]: zh,
}