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 = () => {