import * as Challenge from './challenge'; import * as Common from './common'; import * as Diet from './diet'; import * as Health from './health'; import * as Medication from './medication'; import * as Mood from './mood'; import * as Personal from './personal'; import * as Weight from './weight'; export default { ...Personal, ...Health, ...Diet, ...Medication, ...Weight, ...Challenge, ...Mood, ...Common, ...Common.common, // 确保通用翻译被正确导出 };