const CARE_VERBS: Record = { watering: "Water", fertilizing: "Fertilize", repotting: "Repot", pruning: "Prune", }; export function buildCareTitle(careType: string, plantName: string): string { const verb = CARE_VERBS[careType]; return verb ? `${verb} ${plantName}` : `${careType} — ${plantName}`; } export function buildCareReminderBody(careType: string, plantName: string): string { const verb = CARE_VERBS[careType]?.toLowerCase() ?? careType; return `Time to ${verb} ${plantName}`; }