feat(i18n): Add common translations and mood-related strings in English and Chinese fix(i18n): Update metabolism titles for consistency in health translations chore: Update Podfile.lock to include SDWebImage 5.21.4 and other dependency versions refactor(moodCheckins): Improve mood configuration retrieval with optional translation support refactor(sleepHealthKit): Replace useI18n with direct i18n import for sleep quality descriptions
21 lines
485 B
TypeScript
21 lines
485 B
TypeScript
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, // 确保通用翻译被正确导出
|
|
};
|