@nextsparkjs/theme-default 0.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/about/business.md +49 -0
- package/about/features.json +302 -0
- package/about/team.md +79 -0
- package/api/ai/chat/stream/route.ts +212 -0
- package/api/ai/orchestrator/route.ts +226 -0
- package/api/ai/single-agent/route.ts +291 -0
- package/api/ai/usage/route.ts +122 -0
- package/blocks/benefits/component.tsx +100 -0
- package/blocks/benefits/config.ts +11 -0
- package/blocks/benefits/examples.ts +85 -0
- package/blocks/benefits/fields.ts +156 -0
- package/blocks/benefits/schema.ts +33 -0
- package/blocks/cta-section/component.tsx +100 -0
- package/blocks/cta-section/config.ts +11 -0
- package/blocks/cta-section/examples.ts +41 -0
- package/blocks/cta-section/fields.ts +89 -0
- package/blocks/cta-section/index.ts +6 -0
- package/blocks/cta-section/schema.ts +32 -0
- package/blocks/cta-section/thumbnail.png +1 -0
- package/blocks/faq-accordion/component.tsx +156 -0
- package/blocks/faq-accordion/config.ts +11 -0
- package/blocks/faq-accordion/examples.ts +77 -0
- package/blocks/faq-accordion/fields.ts +119 -0
- package/blocks/faq-accordion/index.ts +6 -0
- package/blocks/faq-accordion/schema.ts +45 -0
- package/blocks/features-grid/component.tsx +112 -0
- package/blocks/features-grid/config.ts +11 -0
- package/blocks/features-grid/examples.ts +63 -0
- package/blocks/features-grid/fields.ts +97 -0
- package/blocks/features-grid/index.ts +6 -0
- package/blocks/features-grid/schema.ts +40 -0
- package/blocks/features-grid/thumbnail.png +1 -0
- package/blocks/hero/component.tsx +100 -0
- package/blocks/hero/config.ts +11 -0
- package/blocks/hero/examples.ts +35 -0
- package/blocks/hero/fields.ts +60 -0
- package/blocks/hero/index.ts +6 -0
- package/blocks/hero/schema.ts +32 -0
- package/blocks/hero/thumbnail.png +1 -0
- package/blocks/hero/thumbnail.png.txt +6 -0
- package/blocks/hero-with-form/component.tsx +232 -0
- package/blocks/hero-with-form/config.ts +11 -0
- package/blocks/hero-with-form/examples.ts +16 -0
- package/blocks/hero-with-form/fields.ts +207 -0
- package/blocks/hero-with-form/index.ts +6 -0
- package/blocks/hero-with-form/schema.ts +54 -0
- package/blocks/jumbotron/component.tsx +136 -0
- package/blocks/jumbotron/config.ts +11 -0
- package/blocks/jumbotron/examples.ts +36 -0
- package/blocks/jumbotron/fields.ts +202 -0
- package/blocks/jumbotron/index.ts +6 -0
- package/blocks/jumbotron/schema.ts +55 -0
- package/blocks/logo-cloud/component.tsx +154 -0
- package/blocks/logo-cloud/config.ts +11 -0
- package/blocks/logo-cloud/examples.ts +34 -0
- package/blocks/logo-cloud/fields.ts +133 -0
- package/blocks/logo-cloud/index.ts +6 -0
- package/blocks/logo-cloud/schema.ts +46 -0
- package/blocks/post-content/component.tsx +197 -0
- package/blocks/post-content/config.ts +11 -0
- package/blocks/post-content/examples.ts +33 -0
- package/blocks/post-content/fields.ts +165 -0
- package/blocks/post-content/index.ts +4 -0
- package/blocks/post-content/schema.ts +46 -0
- package/blocks/pricing-table/component.tsx +154 -0
- package/blocks/pricing-table/config.ts +11 -0
- package/blocks/pricing-table/examples.ts +96 -0
- package/blocks/pricing-table/fields.ts +161 -0
- package/blocks/pricing-table/index.ts +4 -0
- package/blocks/pricing-table/schema.ts +50 -0
- package/blocks/split-content/component.tsx +135 -0
- package/blocks/split-content/config.ts +11 -0
- package/blocks/split-content/examples.ts +38 -0
- package/blocks/split-content/fields.ts +198 -0
- package/blocks/split-content/index.ts +6 -0
- package/blocks/split-content/schema.ts +67 -0
- package/blocks/stats-counter/component.tsx +124 -0
- package/blocks/stats-counter/config.ts +11 -0
- package/blocks/stats-counter/examples.ts +61 -0
- package/blocks/stats-counter/fields.ts +134 -0
- package/blocks/stats-counter/index.ts +6 -0
- package/blocks/stats-counter/schema.ts +47 -0
- package/blocks/testimonials/component.tsx +114 -0
- package/blocks/testimonials/config.ts +11 -0
- package/blocks/testimonials/examples.ts +65 -0
- package/blocks/testimonials/fields.ts +105 -0
- package/blocks/testimonials/index.ts +6 -0
- package/blocks/testimonials/schema.ts +41 -0
- package/blocks/testimonials/thumbnail.png +1 -0
- package/blocks/text-content/component.tsx +97 -0
- package/blocks/text-content/config.ts +11 -0
- package/blocks/text-content/examples.ts +30 -0
- package/blocks/text-content/fields.ts +88 -0
- package/blocks/text-content/index.ts +6 -0
- package/blocks/text-content/schema.ts +30 -0
- package/blocks/text-content/thumbnail.png +1 -0
- package/blocks/timeline/component.tsx +267 -0
- package/blocks/timeline/config.ts +11 -0
- package/blocks/timeline/examples.ts +68 -0
- package/blocks/timeline/fields.ts +147 -0
- package/blocks/timeline/index.ts +6 -0
- package/blocks/timeline/schema.ts +49 -0
- package/blocks/video-hero/component.tsx +270 -0
- package/blocks/video-hero/config.ts +11 -0
- package/blocks/video-hero/examples.ts +24 -0
- package/blocks/video-hero/fields.ts +98 -0
- package/blocks/video-hero/index.ts +6 -0
- package/blocks/video-hero/schema.ts +39 -0
- package/components/ai-chat/ChatPanel.tsx +575 -0
- package/components/ai-chat/ConversationItem.tsx +266 -0
- package/components/ai-chat/ConversationSidebar.tsx +99 -0
- package/components/ai-chat/MarkdownRenderer.tsx +15 -0
- package/components/ai-chat/Message.tsx +42 -0
- package/components/ai-chat/MessageInput.tsx +49 -0
- package/components/ai-chat/MessageList.tsx +46 -0
- package/components/ai-chat/TypingIndicator.tsx +11 -0
- package/config/app.config.ts +367 -0
- package/config/billing.config.ts +349 -0
- package/config/dashboard.config.ts +506 -0
- package/config/dev.config.ts +104 -0
- package/config/features.config.ts +203 -0
- package/config/flows.config.ts +129 -0
- package/config/permissions.config.ts +245 -0
- package/config/theme.config.ts +74 -0
- package/docs/01-overview/01-introduction.md +335 -0
- package/docs/01-overview/02-customization.md +671 -0
- package/docs/02-features/01-components.md +155 -0
- package/docs/02-features/02-styling.md +139 -0
- package/docs/02-features/03-tasks-entity.md +407 -0
- package/docs/03-ai/01-overview.md +211 -0
- package/docs/03-ai/02-customization.md +436 -0
- package/entities/customers/customers.config.ts +75 -0
- package/entities/customers/customers.fields.ts +165 -0
- package/entities/customers/customers.service.ts +516 -0
- package/entities/customers/customers.types.ts +83 -0
- package/entities/customers/messages/en.json +66 -0
- package/entities/customers/messages/es.json +66 -0
- package/entities/customers/migrations/001_customers_table.sql +102 -0
- package/entities/customers/migrations/002_customers_metas.sql +92 -0
- package/entities/pages/messages/en.json +41 -0
- package/entities/pages/messages/es.json +41 -0
- package/entities/pages/migrations/001_pages_table.sql +112 -0
- package/entities/pages/migrations/002_pages_metas.sql +56 -0
- package/entities/pages/migrations/003_add_status.sql +50 -0
- package/entities/pages/pages-management.service.ts +610 -0
- package/entities/pages/pages.config.ts +94 -0
- package/entities/pages/pages.fields.ts +101 -0
- package/entities/pages/pages.service.ts +290 -0
- package/entities/pages/pages.types.ts +124 -0
- package/entities/posts/components/post-header.tsx +97 -0
- package/entities/posts/messages/en.json +55 -0
- package/entities/posts/messages/es.json +55 -0
- package/entities/posts/migrations/001_posts_table.sql +115 -0
- package/entities/posts/migrations/003_add_status.sql +44 -0
- package/entities/posts/migrations/004_entity_taxonomy_relations.sql +129 -0
- package/entities/posts/migrations/006_posts_metas.sql +56 -0
- package/entities/posts/posts.config.ts +101 -0
- package/entities/posts/posts.fields.ts +116 -0
- package/entities/posts/posts.service.ts +376 -0
- package/entities/posts/posts.types.ts +74 -0
- package/entities/tasks/messages/en.json +204 -0
- package/entities/tasks/messages/es.json +204 -0
- package/entities/tasks/migrations/001_tasks_table.sql +105 -0
- package/entities/tasks/migrations/002_task_metas.sql +85 -0
- package/entities/tasks/migrations/sample_data.json +77 -0
- package/entities/tasks/tasks.config.ts +79 -0
- package/entities/tasks/tasks.fields.ts +196 -0
- package/entities/tasks/tasks.service.ts +541 -0
- package/entities/tasks/tasks.types.ts +56 -0
- package/lib/hooks/useAiChat.ts +114 -0
- package/lib/hooks/useConversations.ts +376 -0
- package/lib/hooks/useOrchestratorChat.ts +122 -0
- package/lib/hooks/usePersistentChat.ts +315 -0
- package/lib/hooks/useStreamingChat.ts +127 -0
- package/lib/hooks/useTokenUsage.ts +63 -0
- package/lib/langchain/agents/customer-assistant.md +69 -0
- package/lib/langchain/agents/index.ts +61 -0
- package/lib/langchain/agents/orchestrator.md +59 -0
- package/lib/langchain/agents/page-assistant.md +85 -0
- package/lib/langchain/agents/single-agent.md +46 -0
- package/lib/langchain/agents/task-assistant.md +55 -0
- package/lib/langchain/config.ts +45 -0
- package/lib/langchain/handlers/customer-handler.ts +338 -0
- package/lib/langchain/handlers/page-handler.ts +232 -0
- package/lib/langchain/handlers/task-handler.ts +323 -0
- package/lib/langchain/langchain.config.ts +223 -0
- package/lib/langchain/observability.config.ts +30 -0
- package/lib/langchain/orchestrator.ts +562 -0
- package/lib/langchain/tools/customers.ts +176 -0
- package/lib/langchain/tools/index.ts +10 -0
- package/lib/langchain/tools/orchestrator.ts +92 -0
- package/lib/langchain/tools/pages.ts +289 -0
- package/lib/langchain/tools/tasks.ts +167 -0
- package/lib/scheduled-actions/billing.ts +149 -0
- package/lib/scheduled-actions/index.ts +170 -0
- package/lib/scheduled-actions/webhook.ts +231 -0
- package/lib/selectors.ts +197 -0
- package/messages/de/admin.json +219 -0
- package/messages/de/aiUsage.json +36 -0
- package/messages/de/buttons.json +19 -0
- package/messages/de/categories.json +35 -0
- package/messages/de/common.json +16 -0
- package/messages/de/dev.json +101 -0
- package/messages/de/docs.json +27 -0
- package/messages/de/entities.json +7 -0
- package/messages/de/features.json +119 -0
- package/messages/de/footer.json +22 -0
- package/messages/de/home.json +57 -0
- package/messages/de/index.ts +39 -0
- package/messages/de/mobileNav.json +13 -0
- package/messages/de/navigation.json +8 -0
- package/messages/de/observability.json +74 -0
- package/messages/de/posts.json +54 -0
- package/messages/de/pricing.json +102 -0
- package/messages/de/support.json +9 -0
- package/messages/de/teams.json +8 -0
- package/messages/en/admin.json +219 -0
- package/messages/en/aiUsage.json +36 -0
- package/messages/en/buttons.json +19 -0
- package/messages/en/categories.json +35 -0
- package/messages/en/common.json +16 -0
- package/messages/en/dev.json +106 -0
- package/messages/en/docs.json +27 -0
- package/messages/en/entities.json +7 -0
- package/messages/en/features.json +119 -0
- package/messages/en/footer.json +22 -0
- package/messages/en/home.json +57 -0
- package/messages/en/index.ts +39 -0
- package/messages/en/mobileNav.json +13 -0
- package/messages/en/navigation.json +8 -0
- package/messages/en/observability.json +74 -0
- package/messages/en/posts.json +54 -0
- package/messages/en/pricing.json +102 -0
- package/messages/en/support.json +9 -0
- package/messages/en/teams.json +8 -0
- package/messages/es/admin.json +219 -0
- package/messages/es/aiUsage.json +36 -0
- package/messages/es/buttons.json +19 -0
- package/messages/es/categories.json +35 -0
- package/messages/es/common.json +16 -0
- package/messages/es/dev.json +101 -0
- package/messages/es/docs.json +27 -0
- package/messages/es/entities.json +7 -0
- package/messages/es/features.json +119 -0
- package/messages/es/footer.json +22 -0
- package/messages/es/home.json +57 -0
- package/messages/es/index.ts +39 -0
- package/messages/es/mobileNav.json +13 -0
- package/messages/es/navigation.json +8 -0
- package/messages/es/observability.json +74 -0
- package/messages/es/posts.json +54 -0
- package/messages/es/pricing.json +102 -0
- package/messages/es/support.json +9 -0
- package/messages/es/teams.json +8 -0
- package/messages/fr/admin.json +219 -0
- package/messages/fr/aiUsage.json +36 -0
- package/messages/fr/buttons.json +19 -0
- package/messages/fr/categories.json +35 -0
- package/messages/fr/common.json +16 -0
- package/messages/fr/dev.json +101 -0
- package/messages/fr/docs.json +27 -0
- package/messages/fr/entities.json +7 -0
- package/messages/fr/features.json +119 -0
- package/messages/fr/footer.json +22 -0
- package/messages/fr/home.json +57 -0
- package/messages/fr/index.ts +39 -0
- package/messages/fr/mobileNav.json +13 -0
- package/messages/fr/navigation.json +8 -0
- package/messages/fr/observability.json +74 -0
- package/messages/fr/posts.json +54 -0
- package/messages/fr/pricing.json +102 -0
- package/messages/fr/support.json +9 -0
- package/messages/fr/teams.json +8 -0
- package/messages/it/admin.json +219 -0
- package/messages/it/aiUsage.json +36 -0
- package/messages/it/buttons.json +19 -0
- package/messages/it/categories.json +35 -0
- package/messages/it/common.json +16 -0
- package/messages/it/dev.json +101 -0
- package/messages/it/docs.json +27 -0
- package/messages/it/entities.json +7 -0
- package/messages/it/features.json +119 -0
- package/messages/it/footer.json +22 -0
- package/messages/it/home.json +57 -0
- package/messages/it/index.ts +39 -0
- package/messages/it/mobileNav.json +13 -0
- package/messages/it/navigation.json +8 -0
- package/messages/it/observability.json +74 -0
- package/messages/it/posts.json +54 -0
- package/messages/it/pricing.json +102 -0
- package/messages/it/support.json +9 -0
- package/messages/it/teams.json +8 -0
- package/messages/pt/admin.json +219 -0
- package/messages/pt/aiUsage.json +36 -0
- package/messages/pt/buttons.json +19 -0
- package/messages/pt/categories.json +35 -0
- package/messages/pt/common.json +16 -0
- package/messages/pt/dev.json +101 -0
- package/messages/pt/docs.json +27 -0
- package/messages/pt/entities.json +7 -0
- package/messages/pt/features.json +119 -0
- package/messages/pt/footer.json +22 -0
- package/messages/pt/home.json +57 -0
- package/messages/pt/index.ts +39 -0
- package/messages/pt/mobileNav.json +13 -0
- package/messages/pt/navigation.json +8 -0
- package/messages/pt/observability.json +74 -0
- package/messages/pt/posts.json +54 -0
- package/messages/pt/pricing.json +102 -0
- package/messages/pt/support.json +9 -0
- package/messages/pt/teams.json +8 -0
- package/migrations/089_add_editor_team_role.sql +39 -0
- package/migrations/090_demo_users_teams.sql +540 -0
- package/migrations/091_greek_teams_billing.sql +523 -0
- package/migrations/092_billing_sample_data.sql +774 -0
- package/migrations/093_pages_sample_data.sql +1158 -0
- package/migrations/094_posts_sample_data.sql +278 -0
- package/migrations/095_tasks_sample_data.sql +440 -0
- package/migrations/096_customers_sample_data.sql +358 -0
- package/migrations/097_scheduled_actions_sample_data.sql +111 -0
- package/package.json +22 -0
- package/public/docs/desktop-layout-example.png +0 -0
- package/styles/components.css +11 -0
- package/styles/globals.css +179 -0
- package/templates/(public)/blog/[slug]/page.tsx +65 -0
- package/templates/(public)/layout.tsx +25 -0
- package/templates/(public)/page.tsx +200 -0
- package/templates/(public)/support/page.tsx +321 -0
- package/templates/dashboard/(main)/agent-multi/page.tsx +63 -0
- package/templates/dashboard/(main)/agent-single/page.tsx +142 -0
- package/templates/dashboard/(main)/settings/ai-usage/page.tsx +157 -0
- package/templates/superadmin/ai-observability/[traceId]/page.tsx +27 -0
- package/templates/superadmin/ai-observability/page.tsx +17 -0
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pages": {
|
|
3
|
+
"title": "Pagine",
|
|
4
|
+
"description": "Gestisci le tue pagine dinamiche",
|
|
5
|
+
"loading": "Caricamento pagine...",
|
|
6
|
+
"empty": "Nessuna pagina trovata. Crea la tua prima pagina per iniziare.",
|
|
7
|
+
"search": {
|
|
8
|
+
"placeholder": "Cerca pagine..."
|
|
9
|
+
},
|
|
10
|
+
"filters": {
|
|
11
|
+
"locale": "Lingua",
|
|
12
|
+
"allLocales": "Tutte le lingue",
|
|
13
|
+
"status": "Stato",
|
|
14
|
+
"allStatuses": "Tutti gli stati",
|
|
15
|
+
"published": "Pubblicato",
|
|
16
|
+
"draft": "Bozza"
|
|
17
|
+
},
|
|
18
|
+
"table": {
|
|
19
|
+
"title": "Titolo",
|
|
20
|
+
"slug": "Slug",
|
|
21
|
+
"locale": "Lingua",
|
|
22
|
+
"status": "Stato",
|
|
23
|
+
"updated": "Ultimo Aggiornamento"
|
|
24
|
+
},
|
|
25
|
+
"status": {
|
|
26
|
+
"published": "Pubblicato",
|
|
27
|
+
"draft": "Bozza",
|
|
28
|
+
"unsaved": "Modifiche non salvate"
|
|
29
|
+
},
|
|
30
|
+
"actions": {
|
|
31
|
+
"create": "Crea Pagina",
|
|
32
|
+
"edit": "Modifica",
|
|
33
|
+
"view": "Visualizza",
|
|
34
|
+
"delete": "Elimina",
|
|
35
|
+
"save": "Salva",
|
|
36
|
+
"saving": "Salvataggio...",
|
|
37
|
+
"publish": "Pubblica",
|
|
38
|
+
"preview": "Anteprima"
|
|
39
|
+
},
|
|
40
|
+
"new": {
|
|
41
|
+
"title": "Crea Nuova Pagina",
|
|
42
|
+
"description": "Crea una nuova pagina dinamica per il tuo sito web",
|
|
43
|
+
"back": "Torna alle Pagine",
|
|
44
|
+
"success": "Pagina creata con successo",
|
|
45
|
+
"form": {
|
|
46
|
+
"title": "Dettagli della Pagina",
|
|
47
|
+
"description": "Inserisci le informazioni di base della tua pagina",
|
|
48
|
+
"fields": {
|
|
49
|
+
"title": "Titolo della Pagina",
|
|
50
|
+
"slug": "Slug URL",
|
|
51
|
+
"locale": "Lingua"
|
|
52
|
+
},
|
|
53
|
+
"placeholders": {
|
|
54
|
+
"title": "Chi Siamo",
|
|
55
|
+
"slug": "chi-siamo"
|
|
56
|
+
},
|
|
57
|
+
"hints": {
|
|
58
|
+
"slug": "Versione URL-friendly del titolo (minuscolo, senza spazi)"
|
|
59
|
+
},
|
|
60
|
+
"actions": {
|
|
61
|
+
"cancel": "Annulla",
|
|
62
|
+
"create": "Crea Pagina",
|
|
63
|
+
"creating": "Creazione..."
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"edit": {
|
|
68
|
+
"title": "Modifica Pagina",
|
|
69
|
+
"loading": "Caricamento pagina...",
|
|
70
|
+
"back": "Torna alle Pagine",
|
|
71
|
+
"fields": {
|
|
72
|
+
"title": "Titolo",
|
|
73
|
+
"slug": "Slug"
|
|
74
|
+
},
|
|
75
|
+
"placeholders": {
|
|
76
|
+
"title": "Titolo pagina",
|
|
77
|
+
"slug": "slug-pagina"
|
|
78
|
+
},
|
|
79
|
+
"status": {
|
|
80
|
+
"published": "Pubblicato",
|
|
81
|
+
"unsaved": "Modifiche non salvate"
|
|
82
|
+
},
|
|
83
|
+
"actions": {
|
|
84
|
+
"save": "Salva",
|
|
85
|
+
"saving": "Salvataggio...",
|
|
86
|
+
"publish": "Pubblica",
|
|
87
|
+
"preview": "Anteprima",
|
|
88
|
+
"viewPage": "Visualizza"
|
|
89
|
+
},
|
|
90
|
+
"viewMode": {
|
|
91
|
+
"layout": "Layout",
|
|
92
|
+
"preview": "Anteprima"
|
|
93
|
+
},
|
|
94
|
+
"messages": {
|
|
95
|
+
"saved": "Pagina salvata con successo"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"settings": {
|
|
99
|
+
"title": "Impostazioni Pagina",
|
|
100
|
+
"seo": {
|
|
101
|
+
"title": "Impostazioni SEO",
|
|
102
|
+
"metaTitle": "Meta Titolo",
|
|
103
|
+
"metaTitlePlaceholder": "Inserisci il titolo per i motori di ricerca",
|
|
104
|
+
"metaTitleHint": "Consigliato: 50-60 caratteri",
|
|
105
|
+
"metaDescription": "Meta Descrizione",
|
|
106
|
+
"metaDescriptionPlaceholder": "Inserisci una breve descrizione per i motori di ricerca",
|
|
107
|
+
"characters": "caratteri",
|
|
108
|
+
"metaKeywords": "Parole Chiave",
|
|
109
|
+
"metaKeywordsPlaceholder": "parola1, parola2, parola3",
|
|
110
|
+
"metaKeywordsHint": "Parole chiave separate da virgola",
|
|
111
|
+
"ogImage": "Immagine Social (OG Image)",
|
|
112
|
+
"ogImagePlaceholder": "https://esempio.com/immagine.jpg",
|
|
113
|
+
"ogImageHint": "Immagine mostrata quando si condivide sui social media"
|
|
114
|
+
},
|
|
115
|
+
"customFields": {
|
|
116
|
+
"title": "Campi Personalizzati",
|
|
117
|
+
"empty": "Nessun campo personalizzato aggiunto",
|
|
118
|
+
"keyPlaceholder": "Chiave del campo",
|
|
119
|
+
"valuePlaceholder": "Valore del campo",
|
|
120
|
+
"add": "Aggiungi Campo"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"blockEditor": {
|
|
125
|
+
"picker": {
|
|
126
|
+
"title": "Libreria Blocchi",
|
|
127
|
+
"description": "Trascina i blocchi o clicca per aggiungerli",
|
|
128
|
+
"empty": "Nessun blocco trovato",
|
|
129
|
+
"search": {
|
|
130
|
+
"placeholder": "Cerca blocchi..."
|
|
131
|
+
},
|
|
132
|
+
"categories": {
|
|
133
|
+
"all": "Tutti"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"canvas": {
|
|
137
|
+
"empty": {
|
|
138
|
+
"message": "Nessun blocco ancora aggiunto",
|
|
139
|
+
"hint": "Trascina i blocchi dalla libreria per iniziare a costruire la tua pagina"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"block": {
|
|
143
|
+
"error": {
|
|
144
|
+
"notFound": "Blocco '{slug}' non trovato"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"settings": {
|
|
148
|
+
"empty": {
|
|
149
|
+
"message": "Nessun blocco selezionato",
|
|
150
|
+
"hint": "Seleziona un blocco dal canvas per modificare la sua configurazione"
|
|
151
|
+
},
|
|
152
|
+
"error": {
|
|
153
|
+
"notFound": "Configurazione del blocco non trovata"
|
|
154
|
+
},
|
|
155
|
+
"noFields": "Questo blocco non ha campi configurabili",
|
|
156
|
+
"actions": {
|
|
157
|
+
"reset": "Ripristina",
|
|
158
|
+
"remove": "Rimuovi"
|
|
159
|
+
},
|
|
160
|
+
"tabs": {
|
|
161
|
+
"content": "Contenuto",
|
|
162
|
+
"design": "Design",
|
|
163
|
+
"advanced": "Avanzato",
|
|
164
|
+
"noContentFields": "Nessun campo di contenuto disponibile",
|
|
165
|
+
"noDesignFields": "Nessun campo di design disponibile",
|
|
166
|
+
"noAdvancedFields": "Nessun campo avanzato disponibile"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"form": {
|
|
170
|
+
"selectPlaceholder": "Seleziona un'opzione",
|
|
171
|
+
"emptyArray": "Nessun elemento aggiunto",
|
|
172
|
+
"itemNumber": "Elemento {number}",
|
|
173
|
+
"addItem": "Aggiungi elemento",
|
|
174
|
+
"itemCount": "{current} di {max} elementi"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"builder": {
|
|
178
|
+
"back": "Indietro",
|
|
179
|
+
"loading": "Caricamento...",
|
|
180
|
+
"fields": {
|
|
181
|
+
"title": "Titolo",
|
|
182
|
+
"slug": "Slug"
|
|
183
|
+
},
|
|
184
|
+
"placeholders": {
|
|
185
|
+
"title": "Inserisci il titolo...",
|
|
186
|
+
"slug": "url-slug",
|
|
187
|
+
"excerpt": "Breve descrizione...",
|
|
188
|
+
"imageUrl": "https://esempio.com/immagine.jpg"
|
|
189
|
+
},
|
|
190
|
+
"status": {
|
|
191
|
+
"published": "Pubblicato",
|
|
192
|
+
"draft": "Bozza",
|
|
193
|
+
"scheduled": "Programmato",
|
|
194
|
+
"archived": "Archiviato",
|
|
195
|
+
"unsaved": "Modifiche non salvate"
|
|
196
|
+
},
|
|
197
|
+
"actions": {
|
|
198
|
+
"save": "Salva",
|
|
199
|
+
"saving": "Salvataggio...",
|
|
200
|
+
"viewPage": "Visualizza"
|
|
201
|
+
},
|
|
202
|
+
"viewMode": {
|
|
203
|
+
"layout": "Layout",
|
|
204
|
+
"preview": "Anteprima"
|
|
205
|
+
},
|
|
206
|
+
"sidebar": {
|
|
207
|
+
"blocks": "Blocchi",
|
|
208
|
+
"fields": "Campi",
|
|
209
|
+
"fieldsTitle": "Campi Entita",
|
|
210
|
+
"fieldsDescription": "Configura proprieta aggiuntive",
|
|
211
|
+
"noFields": "Nessun campo aggiuntivo disponibile",
|
|
212
|
+
"noCategories": "Nessuna categoria disponibile"
|
|
213
|
+
},
|
|
214
|
+
"messages": {
|
|
215
|
+
"saved": "Salvato con successo",
|
|
216
|
+
"created": "Creato con successo"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Utilizzo IA",
|
|
3
|
+
"description": "Monitora il tuo utilizzo di token IA e costi",
|
|
4
|
+
"loading": "Caricamento dati di utilizzo...",
|
|
5
|
+
"error": "Errore nel caricamento dei dati di utilizzo",
|
|
6
|
+
"period": {
|
|
7
|
+
"today": "Oggi",
|
|
8
|
+
"7d": "7 giorni",
|
|
9
|
+
"30d": "30 giorni",
|
|
10
|
+
"all": "Tutto il tempo"
|
|
11
|
+
},
|
|
12
|
+
"stats": {
|
|
13
|
+
"totalTokens": {
|
|
14
|
+
"title": "Token Totali",
|
|
15
|
+
"input": "input",
|
|
16
|
+
"output": "output"
|
|
17
|
+
},
|
|
18
|
+
"estimatedCost": {
|
|
19
|
+
"title": "Costo Stimato",
|
|
20
|
+
"currency": "USD"
|
|
21
|
+
},
|
|
22
|
+
"requests": {
|
|
23
|
+
"title": "Richieste",
|
|
24
|
+
"description": "Totale richieste IA"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"usageByModel": {
|
|
28
|
+
"title": "Utilizzo per Modello",
|
|
29
|
+
"tokens": "token"
|
|
30
|
+
},
|
|
31
|
+
"dailyUsage": {
|
|
32
|
+
"title": "Utilizzo Giornaliero",
|
|
33
|
+
"noData": "Nessun dato di utilizzo per questo periodo",
|
|
34
|
+
"tokens": "token"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"save": "Salva",
|
|
3
|
+
"cancel": "Annulla",
|
|
4
|
+
"delete": "Elimina",
|
|
5
|
+
"edit": "Modifica",
|
|
6
|
+
"add": "Aggiungi",
|
|
7
|
+
"update": "Aggiorna",
|
|
8
|
+
"submit": "Invia",
|
|
9
|
+
"close": "Chiudi",
|
|
10
|
+
"back": "Indietro",
|
|
11
|
+
"next": "Avanti",
|
|
12
|
+
"previous": "Precedente",
|
|
13
|
+
"continue": "Continua",
|
|
14
|
+
"finish": "Fine",
|
|
15
|
+
"signIn": "Accedi",
|
|
16
|
+
"signUp": "Registrati",
|
|
17
|
+
"signOut": "Esci",
|
|
18
|
+
"signingOut": "Disconnessione..."
|
|
19
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Categorie",
|
|
3
|
+
"description": "Gestisci le categorie dei post",
|
|
4
|
+
"newCategory": "Nuova Categoria",
|
|
5
|
+
"editCategory": "Modifica Categoria",
|
|
6
|
+
"createDescription": "Crea una nuova categoria per organizzare i post",
|
|
7
|
+
"editDescription": "Modifica i dettagli della categoria",
|
|
8
|
+
"name": "Nome",
|
|
9
|
+
"slug": "Slug",
|
|
10
|
+
"icon": "Icona",
|
|
11
|
+
"color": "Colore",
|
|
12
|
+
"actions": "Azioni",
|
|
13
|
+
"loading": "Caricamento...",
|
|
14
|
+
"empty": "Nessuna categoria trovata",
|
|
15
|
+
"emptyDescription": "Inizia creando la tua prima categoria.",
|
|
16
|
+
"deleteConfirm": "Eliminare categoria?",
|
|
17
|
+
"deleteDescription": "Sei sicuro di voler eliminare \"{name}\"? Questa azione non puo essere annullata.",
|
|
18
|
+
"saveCategory": "Salva Categoria",
|
|
19
|
+
"saving": "Salvataggio...",
|
|
20
|
+
"deleting": "Eliminazione...",
|
|
21
|
+
"cancel": "Annulla",
|
|
22
|
+
"delete": "Elimina",
|
|
23
|
+
"iconHelp": "Nome icona Lucide (es: cpu, book-open)",
|
|
24
|
+
"createSuccess": "Categoria creata con successo",
|
|
25
|
+
"updateSuccess": "Categoria aggiornata con successo",
|
|
26
|
+
"deleteSuccess": "Categoria eliminata con successo",
|
|
27
|
+
"placeholders": {
|
|
28
|
+
"name": "Tecnologia",
|
|
29
|
+
"slug": "tecnologia",
|
|
30
|
+
"description": "Post su tecnologia e sviluppo software"
|
|
31
|
+
},
|
|
32
|
+
"errors": {
|
|
33
|
+
"nameRequired": "Il nome e obbligatorio"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"userRoles": {
|
|
3
|
+
"member": "Membro",
|
|
4
|
+
"superadmin": "Super Admin",
|
|
5
|
+
"developer": "Sviluppatore"
|
|
6
|
+
},
|
|
7
|
+
"teamRoles": {
|
|
8
|
+
"owner": "Proprietario",
|
|
9
|
+
"admin": "Amministratore",
|
|
10
|
+
"member": "Membro",
|
|
11
|
+
"viewer": "Visualizzatore",
|
|
12
|
+
"editor": "Editor"
|
|
13
|
+
},
|
|
14
|
+
"comingSoon": "Prossimamente",
|
|
15
|
+
"soon": "Presto"
|
|
16
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "DevTools",
|
|
3
|
+
"subtitle": "Strumenti e Documentazione di Sviluppo",
|
|
4
|
+
"restrictedArea": "Area Riservata",
|
|
5
|
+
"developerAccessOnly": "Solo Accesso Sviluppatore",
|
|
6
|
+
"exitToDashboard": "Esci alla Dashboard",
|
|
7
|
+
"exitToDashboardDescription": "Torna alla dashboard principale",
|
|
8
|
+
"returnToDashboard": "Torna alla dashboard",
|
|
9
|
+
"goToSector7": "Vai a Sector7",
|
|
10
|
+
"goToSector7Description": "Accedi all'area di amministrazione Sector7",
|
|
11
|
+
"superAdminArea": "Area Super Admin",
|
|
12
|
+
"nav": {
|
|
13
|
+
"home": "Home",
|
|
14
|
+
"homeDescription": "Dashboard sviluppatore",
|
|
15
|
+
"styleGallery": "Galleria Stili",
|
|
16
|
+
"styleGalleryDescription": "Vetrina componenti",
|
|
17
|
+
"testCases": "Casi di Test",
|
|
18
|
+
"testCasesDescription": "Documentazione test",
|
|
19
|
+
"config": "Configurazione",
|
|
20
|
+
"configDescription": "Configurazione sistema",
|
|
21
|
+
"expandSidebar": "Espandi barra laterale",
|
|
22
|
+
"collapseSidebar": "Comprimi barra laterale"
|
|
23
|
+
},
|
|
24
|
+
"home": {
|
|
25
|
+
"welcome": "Benvenuto in DevTools",
|
|
26
|
+
"welcomeDescription": "Il tuo centro per strumenti e documentazione di sviluppo",
|
|
27
|
+
"intro": "Quest'area fornisce accesso ai componenti del sistema di design, documentazione dei casi di test e configurazione del sistema. Usa la navigazione per esplorare le diverse sezioni.",
|
|
28
|
+
"systemInfo": "Informazioni Sistema",
|
|
29
|
+
"systemInfoDescription": "Il tuo livello di accesso e privilegi",
|
|
30
|
+
"accessLevel": "Livello di Accesso",
|
|
31
|
+
"hierarchy": "Livello di Gerarchia"
|
|
32
|
+
},
|
|
33
|
+
"style": {
|
|
34
|
+
"title": "Galleria Stili",
|
|
35
|
+
"description": "Componenti e temi del sistema di design"
|
|
36
|
+
},
|
|
37
|
+
"tests": {
|
|
38
|
+
"title": "Casi di Test",
|
|
39
|
+
"description": "Esplora documentazione test",
|
|
40
|
+
"fileTree": "File di Test",
|
|
41
|
+
"fileTreeDescription": "Esplora documentazione test",
|
|
42
|
+
"noTests": "Nessun file di test trovato",
|
|
43
|
+
"selectFile": "Seleziona un file da visualizzare",
|
|
44
|
+
"selectFileDescription": "Scegli un file di test dall'albero per visualizzarne il contenuto",
|
|
45
|
+
"error": "Errore nel caricamento del file",
|
|
46
|
+
"loading": "Caricamento...",
|
|
47
|
+
"fileNotFound": "File Non Trovato",
|
|
48
|
+
"fileNotFoundDescription": "Il file di test \"{path}\" non e stato trovato.",
|
|
49
|
+
"backToList": "Torna alla Lista"
|
|
50
|
+
},
|
|
51
|
+
"config": {
|
|
52
|
+
"title": "Visualizzatore Configurazione",
|
|
53
|
+
"description": "Visualizza la configurazione attuale del sistema",
|
|
54
|
+
"themeTitle": "Configurazione Tema",
|
|
55
|
+
"themeDescription": "Configurazione e metadati del tema attuale",
|
|
56
|
+
"entitiesTitle": "Registro Entita",
|
|
57
|
+
"entitiesDescription": "{count} entita registrate",
|
|
58
|
+
"copy": "Copia",
|
|
59
|
+
"copied": "Copiato!",
|
|
60
|
+
"error": "Errore nel caricamento della configurazione",
|
|
61
|
+
"tabs": {
|
|
62
|
+
"theme": "Config Tema",
|
|
63
|
+
"entities": "Entita"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"scheduledActions": {
|
|
67
|
+
"title": "Azioni Programmate",
|
|
68
|
+
"description": "Monitora e gestisci le azioni programmate in background",
|
|
69
|
+
"loading": "Caricamento azioni programmate...",
|
|
70
|
+
"empty": "Nessuna azione programmata trovata",
|
|
71
|
+
"emptyDescription": "Le azioni programmate appariranno qui quando verranno create",
|
|
72
|
+
"filters": {
|
|
73
|
+
"status": "Stato",
|
|
74
|
+
"allStatuses": "Tutti gli Stati",
|
|
75
|
+
"actionType": "Tipo Azione",
|
|
76
|
+
"allTypes": "Tutti i Tipi",
|
|
77
|
+
"apply": "Applica Filtri",
|
|
78
|
+
"reset": "Reimposta Filtri"
|
|
79
|
+
},
|
|
80
|
+
"table": {
|
|
81
|
+
"type": "Tipo",
|
|
82
|
+
"status": "Stato",
|
|
83
|
+
"scheduledAt": "Programmato Per",
|
|
84
|
+
"team": "Team",
|
|
85
|
+
"payload": "Dati",
|
|
86
|
+
"error": "Errore",
|
|
87
|
+
"noTeam": "Globale"
|
|
88
|
+
},
|
|
89
|
+
"status": {
|
|
90
|
+
"pending": "In Attesa",
|
|
91
|
+
"running": "In Esecuzione",
|
|
92
|
+
"completed": "Completato",
|
|
93
|
+
"failed": "Fallito"
|
|
94
|
+
},
|
|
95
|
+
"pagination": {
|
|
96
|
+
"previous": "Precedente",
|
|
97
|
+
"next": "Successivo",
|
|
98
|
+
"page": "Pagina {page} di {total}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Documentazione",
|
|
3
|
+
"description": "Documentazione completa per usare la nostra piattaforma efficacemente.",
|
|
4
|
+
"sidebar": {
|
|
5
|
+
"label": "Navigazione documentazione",
|
|
6
|
+
"open": "Apri menu di navigazione",
|
|
7
|
+
"close": "Chiudi menu di navigazione"
|
|
8
|
+
},
|
|
9
|
+
"labels": {
|
|
10
|
+
"coreDoc": "core"
|
|
11
|
+
},
|
|
12
|
+
"categories": {
|
|
13
|
+
"core": "Core",
|
|
14
|
+
"theme": "Theme",
|
|
15
|
+
"plugins": "Plugin"
|
|
16
|
+
},
|
|
17
|
+
"breadcrumbs": {
|
|
18
|
+
"home": "Home"
|
|
19
|
+
},
|
|
20
|
+
"quickStart": {
|
|
21
|
+
"title": "Guida Rapida",
|
|
22
|
+
"step1": "Crea Account",
|
|
23
|
+
"step2": "Configura Profilo",
|
|
24
|
+
"step3": "Esplora Dashboard",
|
|
25
|
+
"step4": "Crea Primo Task"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"analytics": {
|
|
3
|
+
"title": "Analisi Avanzate",
|
|
4
|
+
"benefit1": "Metriche in tempo reale",
|
|
5
|
+
"benefit2": "Costruttore di report personalizzati",
|
|
6
|
+
"benefit3": "Esportazione in PDF/CSV"
|
|
7
|
+
},
|
|
8
|
+
"webhooks": {
|
|
9
|
+
"title": "Webhooks",
|
|
10
|
+
"benefit1": "Callback HTTP per eventi",
|
|
11
|
+
"benefit2": "Template payload personalizzati",
|
|
12
|
+
"benefit3": "Logica di retry e logging"
|
|
13
|
+
},
|
|
14
|
+
"automation": {
|
|
15
|
+
"title": "Automazione Task",
|
|
16
|
+
"benefit1": "Creazione automatica task",
|
|
17
|
+
"benefit2": "Azioni programmate",
|
|
18
|
+
"benefit3": "Trigger workflow"
|
|
19
|
+
},
|
|
20
|
+
"hero": {
|
|
21
|
+
"badge": "Panoramica Funzionalita",
|
|
22
|
+
"title": "Tutto cio di cui hai bisogno per costruire applicazioni moderne",
|
|
23
|
+
"description": "La nostra piattaforma fornisce un set completo di funzionalita progettate per accelerare il tuo processo di sviluppo mantenendo sicurezza e scalabilita."
|
|
24
|
+
},
|
|
25
|
+
"highlights": {
|
|
26
|
+
"productionReady": {
|
|
27
|
+
"title": "Pronto per la Produzione",
|
|
28
|
+
"description": "Architettura collaudata pronta per il deployment"
|
|
29
|
+
},
|
|
30
|
+
"developerExperience": {
|
|
31
|
+
"title": "Esperienza Sviluppatore",
|
|
32
|
+
"description": "Hot reload, TypeScript e strumenti moderni"
|
|
33
|
+
},
|
|
34
|
+
"scalable": {
|
|
35
|
+
"title": "Scalabile",
|
|
36
|
+
"description": "Costruito per crescere con le esigenze della tua applicazione"
|
|
37
|
+
},
|
|
38
|
+
"secure": {
|
|
39
|
+
"title": "Sicuro",
|
|
40
|
+
"description": "Sicurezza di livello enterprise di default"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"categories": {
|
|
44
|
+
"authSecurity": {
|
|
45
|
+
"title": "Autenticazione e Sicurezza",
|
|
46
|
+
"features": {
|
|
47
|
+
"betterAuth": {
|
|
48
|
+
"name": "Integrazione Better Auth",
|
|
49
|
+
"description": "Autenticazione moderna e sicura con gestione sessioni integrata"
|
|
50
|
+
},
|
|
51
|
+
"multiOAuth": {
|
|
52
|
+
"name": "OAuth Multi-Provider",
|
|
53
|
+
"description": "Supporto per Google, GitHub e altri provider OAuth"
|
|
54
|
+
},
|
|
55
|
+
"twoFactor": {
|
|
56
|
+
"name": "Autenticazione a Due Fattori",
|
|
57
|
+
"description": "Sicurezza migliorata con verifica TOTP e SMS"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"userExperience": {
|
|
62
|
+
"title": "Esperienza Utente",
|
|
63
|
+
"features": {
|
|
64
|
+
"darkLight": {
|
|
65
|
+
"name": "Modalita Chiaro/Scuro",
|
|
66
|
+
"description": "Cambio tema fluido con rilevamento preferenze di sistema"
|
|
67
|
+
},
|
|
68
|
+
"mobileResponsive": {
|
|
69
|
+
"name": "Responsivo Mobile",
|
|
70
|
+
"description": "Esperienza ottimizzata su tutti i dispositivi e dimensioni schermo"
|
|
71
|
+
},
|
|
72
|
+
"realTimeNotifications": {
|
|
73
|
+
"name": "Notifiche in Tempo Reale",
|
|
74
|
+
"description": "Aggiornamenti istantanei e avvisi per eventi importanti"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"development": {
|
|
79
|
+
"title": "Sviluppo",
|
|
80
|
+
"features": {
|
|
81
|
+
"typescriptReady": {
|
|
82
|
+
"name": "Pronto per TypeScript",
|
|
83
|
+
"description": "Supporto TypeScript completo con type safety in tutto il sistema"
|
|
84
|
+
},
|
|
85
|
+
"modernStack": {
|
|
86
|
+
"name": "Stack Moderno",
|
|
87
|
+
"description": "Next.js 15, React 19 e le ultime tecnologie web"
|
|
88
|
+
},
|
|
89
|
+
"componentLibrary": {
|
|
90
|
+
"name": "Libreria Componenti",
|
|
91
|
+
"description": "Componenti belli e accessibili con shadcn/ui"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"dataPerformance": {
|
|
96
|
+
"title": "Dati e Prestazioni",
|
|
97
|
+
"features": {
|
|
98
|
+
"postgresql": {
|
|
99
|
+
"name": "Database PostgreSQL",
|
|
100
|
+
"description": "Database robusto e scalabile con integrazione Supabase"
|
|
101
|
+
},
|
|
102
|
+
"tanstackQuery": {
|
|
103
|
+
"name": "TanStack Query",
|
|
104
|
+
"description": "Fetching dati potente, cache e sincronizzazione"
|
|
105
|
+
},
|
|
106
|
+
"edgeRuntime": {
|
|
107
|
+
"name": "Edge Runtime",
|
|
108
|
+
"description": "Risposte API veloci distribuite globalmente"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"cta": {
|
|
114
|
+
"title": "Pronto per iniziare?",
|
|
115
|
+
"description": "Unisciti a migliaia di sviluppatori che stanno costruendo applicazioni straordinarie con la nostra piattaforma.",
|
|
116
|
+
"getStarted": "Inizia Gratis",
|
|
117
|
+
"viewDocs": "Vedi Documentazione"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"product": "Prodotto",
|
|
3
|
+
"company": "Azienda",
|
|
4
|
+
"legal": "Legale",
|
|
5
|
+
"resources": "Risorse",
|
|
6
|
+
"features": "Funzionalita",
|
|
7
|
+
"pricing": "Prezzi",
|
|
8
|
+
"support": "Supporto",
|
|
9
|
+
"docs": "Documentazione",
|
|
10
|
+
"about": "Chi Siamo",
|
|
11
|
+
"blog": "Blog",
|
|
12
|
+
"careers": "Lavora con noi",
|
|
13
|
+
"contact": "Contatti",
|
|
14
|
+
"privacy": "Informativa Privacy",
|
|
15
|
+
"terms": "Termini di Servizio",
|
|
16
|
+
"cookies": "Informativa Cookie",
|
|
17
|
+
"gdpr": "GDPR",
|
|
18
|
+
"helpCenter": "Centro Assistenza",
|
|
19
|
+
"apiDocs": "API Docs",
|
|
20
|
+
"status": "Stato",
|
|
21
|
+
"changelog": "Changelog"
|
|
22
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Next.js 15 + Better Auth + shadcn/ui",
|
|
4
|
+
"title": "Modern NextSpark",
|
|
5
|
+
"description": "Starter pronto per la produzione con autenticazione, database e bellissimi componenti UI"
|
|
6
|
+
},
|
|
7
|
+
"auth": {
|
|
8
|
+
"authenticated": "Autenticato",
|
|
9
|
+
"welcomeBack": "Bentornato, {email}",
|
|
10
|
+
"goToDashboard": "Vai alla Dashboard",
|
|
11
|
+
"getStarted": "Inizia",
|
|
12
|
+
"experience": "Sperimenta la potenza dello sviluppo web moderno",
|
|
13
|
+
"createAccount": "Crea Account",
|
|
14
|
+
"signIn": "Accedi"
|
|
15
|
+
},
|
|
16
|
+
"techStack": {
|
|
17
|
+
"title": "Stack Tecnologico",
|
|
18
|
+
"description": "Costruito con le tecnologie piu recenti e potenti",
|
|
19
|
+
"latest": "Ultimo",
|
|
20
|
+
"secure": "Sicuro",
|
|
21
|
+
"supabase": "Supabase",
|
|
22
|
+
"v5": "v5",
|
|
23
|
+
"components": "Componenti",
|
|
24
|
+
"validation": "Validazione",
|
|
25
|
+
"styling": "Stili",
|
|
26
|
+
"appRouter": "App Router"
|
|
27
|
+
},
|
|
28
|
+
"features": {
|
|
29
|
+
"title": "Funzionalita",
|
|
30
|
+
"description": "Tutto cio di cui hai bisogno per costruire un SaaS moderno",
|
|
31
|
+
"emailAuth": "Autenticazione Email/Password",
|
|
32
|
+
"googleOAuth": "Google OAuth",
|
|
33
|
+
"protectedRoutes": "Route Protette",
|
|
34
|
+
"emailVerification": "Verifica Email",
|
|
35
|
+
"passwordReset": "Reset Password",
|
|
36
|
+
"entityManagement": "Sistema Entita",
|
|
37
|
+
"pluginSystem": "Architettura Plugin",
|
|
38
|
+
"themeSupport": "Supporto Multi-Tema",
|
|
39
|
+
"i18nSystem": "Internazionalizzazione",
|
|
40
|
+
"apiRoutes": "API RESTful",
|
|
41
|
+
"colorMode": "Modalita Colore",
|
|
42
|
+
"aiIntegration": "Integrazione IA",
|
|
43
|
+
"teams": "Team",
|
|
44
|
+
"memberships": "Abbonamenti",
|
|
45
|
+
"amplitude": "Amplitude Analytics"
|
|
46
|
+
},
|
|
47
|
+
"cta": {
|
|
48
|
+
"readyToStart": "Pronto per Iniziare?",
|
|
49
|
+
"description": "Unisciti a migliaia di sviluppatori che si affidano al nostro boilerplate per costruire incredibili applicazioni SaaS piu velocemente.",
|
|
50
|
+
"viewPricing": "Vedi Prezzi",
|
|
51
|
+
"startFreeTrial": "Inizia Prova Gratuita"
|
|
52
|
+
},
|
|
53
|
+
"footer": {
|
|
54
|
+
"builtWith": "Costruito con componenti shadcn/ui",
|
|
55
|
+
"readyForProduction": "Pronto per il deployment in produzione"
|
|
56
|
+
}
|
|
57
|
+
}
|