Implemented comprehensive frontend localization infrastructure supporting 5 languages (English, Spanish, French, Portuguese, Chinese) with measurement unit preferences (Metric/Imperial). This lays the foundation for international user support. **Core Infrastructure:** - Installed i18next, react-i18next, i18next-browser-languagedetector - Created I18nProvider component integrated into app layout - Configured i18next with language detection and localStorage persistence - Created 35 translation files (5 languages × 7 namespaces) **Translation Namespaces:** - common: App-wide UI elements, navigation, actions - tracking: Activity tracking (feeding, sleep, diaper, milestones) - ai: AI assistant chat interface - auth: Authentication flows (login, signup, password reset) - settings: Settings and preferences - onboarding: Onboarding flow - errors: Error messages and validation **Custom Hooks:** - useTranslation: Type-safe translation wrapper - useLocale: Language and measurement system management - useFormatting: Date, time, number, and unit formatting **Measurement Unit Support:** - Created unit conversion utilities (weight, height, temperature, volume) - Metric: kg, cm, °C, ml - Imperial: lb, in, °F, oz - Bidirectional conversion functions **UI Components:** - LanguageSelector: Dropdown to change app language - MeasurementUnitSelector: Toggle between Metric/Imperial - Integrated both into Settings page Preferences section **Next Steps (Remaining):** - Add measurement preferences to backend user schema - Create onboarding flow with language/measurement selection - Apply translations to existing components (dashboard, tracking forms) - Implement multi-language AI responses - Add professional translations (currently using basic translations) **File Highlights:** - lib/i18n/config.ts: i18next configuration - hooks/useFormatting.ts: Formatting utilities with locale support - lib/utils/unitConversion.ts: Unit conversion logic - components/settings/*Selector.tsx: Language and measurement selectors - locales/*/: Translation files for 5 languages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
129 lines
3.0 KiB
JSON
129 lines
3.0 KiB
JSON
{
|
|
"title": "Activity Tracking",
|
|
"feeding": {
|
|
"title": "Feeding",
|
|
"addFeeding": "Add Feeding",
|
|
"type": "Feeding Type",
|
|
"types": {
|
|
"breast": "Breast",
|
|
"bottle": "Bottle",
|
|
"solid": "Solid Food"
|
|
},
|
|
"side": "Side",
|
|
"sides": {
|
|
"left": "Left",
|
|
"right": "Right",
|
|
"both": "Both"
|
|
},
|
|
"amount": "Amount",
|
|
"duration": "Duration",
|
|
"startTime": "Start Time",
|
|
"endTime": "End Time",
|
|
"notes": "Notes",
|
|
"placeholders": {
|
|
"amount": "Enter amount",
|
|
"notes": "Add any notes about this feeding..."
|
|
},
|
|
"units": {
|
|
"ml": "ml",
|
|
"oz": "oz",
|
|
"minutes": "minutes"
|
|
}
|
|
},
|
|
"sleep": {
|
|
"title": "Sleep",
|
|
"addSleep": "Add Sleep",
|
|
"startTime": "Sleep Start",
|
|
"endTime": "Sleep End",
|
|
"duration": "Duration",
|
|
"quality": "Quality",
|
|
"qualities": {
|
|
"poor": "Poor",
|
|
"fair": "Fair",
|
|
"good": "Good",
|
|
"excellent": "Excellent"
|
|
},
|
|
"notes": "Notes",
|
|
"placeholders": {
|
|
"notes": "Add any notes about this sleep session..."
|
|
}
|
|
},
|
|
"diaper": {
|
|
"title": "Diaper",
|
|
"addDiaper": "Add Diaper Change",
|
|
"type": "Type",
|
|
"types": {
|
|
"wet": "Wet",
|
|
"dirty": "Dirty",
|
|
"both": "Both",
|
|
"dry": "Dry"
|
|
},
|
|
"time": "Time",
|
|
"notes": "Notes",
|
|
"placeholders": {
|
|
"notes": "Add any notes about this diaper change..."
|
|
}
|
|
},
|
|
"milestone": {
|
|
"title": "Milestone",
|
|
"addMilestone": "Add Milestone",
|
|
"category": "Category",
|
|
"categories": {
|
|
"physical": "Physical",
|
|
"cognitive": "Cognitive",
|
|
"social": "Social",
|
|
"language": "Language"
|
|
},
|
|
"description": "Description",
|
|
"date": "Date",
|
|
"notes": "Notes",
|
|
"placeholders": {
|
|
"description": "Describe the milestone...",
|
|
"notes": "Add any additional notes..."
|
|
}
|
|
},
|
|
"health": {
|
|
"title": "Health",
|
|
"addHealth": "Add Health Record",
|
|
"type": "Type",
|
|
"types": {
|
|
"temperature": "Temperature",
|
|
"medication": "Medication",
|
|
"symptom": "Symptom",
|
|
"doctor": "Doctor Visit"
|
|
},
|
|
"temperature": "Temperature",
|
|
"medication": "Medication",
|
|
"dosage": "Dosage",
|
|
"symptom": "Symptom",
|
|
"severity": "Severity",
|
|
"severities": {
|
|
"mild": "Mild",
|
|
"moderate": "Moderate",
|
|
"severe": "Severe"
|
|
},
|
|
"notes": "Notes",
|
|
"placeholders": {
|
|
"medication": "Medication name",
|
|
"dosage": "Dosage amount",
|
|
"symptom": "Describe symptom",
|
|
"notes": "Add any notes..."
|
|
},
|
|
"units": {
|
|
"celsius": "°C",
|
|
"fahrenheit": "°F"
|
|
}
|
|
},
|
|
"quickLog": "Quick Log",
|
|
"viewHistory": "View History",
|
|
"editEntry": "Edit Entry",
|
|
"deleteEntry": "Delete Entry",
|
|
"confirmDelete": "Are you sure you want to delete this entry?",
|
|
"filterByType": "Filter by Type",
|
|
"filterByChild": "Filter by Child",
|
|
"sortByNewest": "Newest First",
|
|
"sortByOldest": "Oldest First",
|
|
"noEntries": "No entries yet",
|
|
"addFirstEntry": "Add your first entry to start tracking"
|
|
}
|