From 272e363f4d21fc60436b08de648fe134483c5c18 Mon Sep 17 00:00:00 2001 From: Simone Cavalli Date: Sun, 14 Jun 2026 12:38:12 +0200 Subject: [PATCH] fix(14-03): translate FollowUpWidget to Italian (CRM-10) - Replace 6 hardcoded English strings with Italian equivalents - Remove pluralization ternary (Italian "lead" is invariant) --- src/components/admin/dashboard/FollowUpWidget.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/admin/dashboard/FollowUpWidget.tsx b/src/components/admin/dashboard/FollowUpWidget.tsx index 8f5c978..24722f5 100644 --- a/src/components/admin/dashboard/FollowUpWidget.tsx +++ b/src/components/admin/dashboard/FollowUpWidget.tsx @@ -12,34 +12,33 @@ export async function FollowUpWidget() { - Require Follow-up + Richiedi Follow-up {leadsNeedingFollowUp.length > 0 ? ( <>

- {leadsNeedingFollowUp.length} lead{leadsNeedingFollowUp.length !== 1 ? "s" : ""}{" "} - to contact + {leadsNeedingFollowUp.length} lead da contattare

{leadsNeedingFollowUp.length > 3 && ( )} ) : ( -

All leads are up to date!

+

Tutti i lead sono aggiornati!

)}