From 49b06dc8c92a52c951f8f22485a2e5fc134c682a Mon Sep 17 00:00:00 2001 From: fcarraUniSa Date: Thu, 11 Dec 2025 14:10:44 +0100 Subject: [PATCH] Update App.tsx --- App.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/App.tsx b/App.tsx index 995a649..0a7a96e 100644 --- a/App.tsx +++ b/App.tsx @@ -38,7 +38,7 @@ const App: React.FC = () => { const clonedTemplate: EmailTemplate = { ...t, id: crypto.randomUUID(), // Generate new ID so it's treated as a new insert - name: `${t.name} (Copy)`, + name: `${t.name} (Copia)`, updatedAt: new Date().toISOString() }; @@ -47,7 +47,7 @@ const App: React.FC = () => { }; const handleDelete = async (id: string) => { - if (window.confirm("Are you sure you want to delete this template?")) { + if (window.confirm("Sei sicuro di voler eliminare questo template?")) { await deleteTemplate(id); await refreshTemplates(); } @@ -64,7 +64,7 @@ const App: React.FC = () => { <> {isLoading ? (
- Loading templates... + Caricamento template...
) : ( { className="bg-slate-800 text-white px-4 py-3 rounded-full shadow-lg hover:bg-slate-900 flex items-center gap-2 text-sm font-medium transition-transform hover:scale-105" > - DB Schema + Schema DB @@ -101,10 +101,10 @@ const App: React.FC = () => {

- Database Setup for n8n + Configurazione Database per n8n

- To make this app work with your internal software, create this table in your MySQL or PostgreSQL database. + Per far funzionare questa app con il tuo software interno, crea questa tabella nel tuo database MySQL o PostgreSQL.

{SQL_SCHEMA}
@@ -113,17 +113,17 @@ const App: React.FC = () => {