@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,39 @@
|
|
|
1
|
+
import admin from './admin.json'
|
|
2
|
+
import aiUsage from './aiUsage.json'
|
|
3
|
+
import buttons from './buttons.json'
|
|
4
|
+
import categories from './categories.json'
|
|
5
|
+
import common from './common.json'
|
|
6
|
+
import dev from './dev.json'
|
|
7
|
+
import docs from './docs.json'
|
|
8
|
+
import entities from './entities.json'
|
|
9
|
+
import features from './features.json'
|
|
10
|
+
import footer from './footer.json'
|
|
11
|
+
import home from './home.json'
|
|
12
|
+
import mobileNav from './mobileNav.json'
|
|
13
|
+
import navigation from './navigation.json'
|
|
14
|
+
import observability from './observability.json'
|
|
15
|
+
import posts from './posts.json'
|
|
16
|
+
import pricing from './pricing.json'
|
|
17
|
+
import support from './support.json'
|
|
18
|
+
import teams from './teams.json'
|
|
19
|
+
|
|
20
|
+
export default {
|
|
21
|
+
admin,
|
|
22
|
+
aiUsage,
|
|
23
|
+
buttons,
|
|
24
|
+
categories,
|
|
25
|
+
common,
|
|
26
|
+
dev,
|
|
27
|
+
docs,
|
|
28
|
+
entities,
|
|
29
|
+
features,
|
|
30
|
+
footer,
|
|
31
|
+
home,
|
|
32
|
+
mobileNav,
|
|
33
|
+
navigation,
|
|
34
|
+
observability,
|
|
35
|
+
posts,
|
|
36
|
+
pricing,
|
|
37
|
+
support,
|
|
38
|
+
teams,
|
|
39
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"home": "Inicio",
|
|
3
|
+
"tasks": "Tareas",
|
|
4
|
+
"create": "Crear",
|
|
5
|
+
"settings": "Ajustes",
|
|
6
|
+
"more": "Más",
|
|
7
|
+
"moreOptions": "Más Opciones",
|
|
8
|
+
"moreOptionsDescription": "Accede a configuraciones y funciones adicionales",
|
|
9
|
+
"quickCreateDescription": "Crea un nuevo elemento",
|
|
10
|
+
"noEntitiesAvailable": "No hay elementos disponibles para crear",
|
|
11
|
+
"createNew": "Crear nuevo",
|
|
12
|
+
"greeting": "Hola, {name}"
|
|
13
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Observabilidad IA",
|
|
3
|
+
"description": "Monitorea invocaciones de agentes LangChain y trazas",
|
|
4
|
+
"loading": "Cargando trazas...",
|
|
5
|
+
"error": "Error cargando trazas",
|
|
6
|
+
"disabled": "Observabilidad está deshabilitada en la configuración",
|
|
7
|
+
"loadMore": "Cargar más",
|
|
8
|
+
"loadingMore": "Cargando...",
|
|
9
|
+
"reload": "Recargar",
|
|
10
|
+
"reloading": "Recargando...",
|
|
11
|
+
"period": {
|
|
12
|
+
"1h": "Última hora",
|
|
13
|
+
"24h": "Últimas 24 horas",
|
|
14
|
+
"7d": "Últimos 7 días",
|
|
15
|
+
"30d": "Últimos 30 días"
|
|
16
|
+
},
|
|
17
|
+
"status": {
|
|
18
|
+
"running": "En ejecución",
|
|
19
|
+
"success": "Éxito",
|
|
20
|
+
"error": "Error"
|
|
21
|
+
},
|
|
22
|
+
"filters": {
|
|
23
|
+
"status": "Estado",
|
|
24
|
+
"agent": "Agente",
|
|
25
|
+
"period": "Período",
|
|
26
|
+
"allStatus": "Todos los estados",
|
|
27
|
+
"allAgents": "Todos los agentes",
|
|
28
|
+
"searchPlaceholder": "Buscar por ID de traza o entrada..."
|
|
29
|
+
},
|
|
30
|
+
"table": {
|
|
31
|
+
"traceId": "ID de Traza",
|
|
32
|
+
"input": "Mensaje",
|
|
33
|
+
"agent": "Agente",
|
|
34
|
+
"status": "Estado",
|
|
35
|
+
"duration": "Duración",
|
|
36
|
+
"tokens": "Tokens",
|
|
37
|
+
"startedAt": "Iniciado",
|
|
38
|
+
"empty": "No se encontraron trazas para el período y filtros seleccionados"
|
|
39
|
+
},
|
|
40
|
+
"detail": {
|
|
41
|
+
"title": "Detalle de Traza",
|
|
42
|
+
"back": "Volver a trazas",
|
|
43
|
+
"agent": "Agente",
|
|
44
|
+
"model": "Modelo",
|
|
45
|
+
"duration": "Duración",
|
|
46
|
+
"tokens": "Tokens",
|
|
47
|
+
"calls": "Llamadas",
|
|
48
|
+
"tools": "herramientas",
|
|
49
|
+
"input": "Entrada",
|
|
50
|
+
"output": "Salida",
|
|
51
|
+
"error": "Error",
|
|
52
|
+
"stackTrace": "Stack Trace",
|
|
53
|
+
"spans": "Spans de Ejecución",
|
|
54
|
+
"childTraces": "Trazas de Sub-Agentes",
|
|
55
|
+
"noSpans": "No se registraron spans para esta traza",
|
|
56
|
+
"showDetails": "Mostrar detalles",
|
|
57
|
+
"hideDetails": "Ocultar detalles",
|
|
58
|
+
"toolInput": "Entrada de Herramienta",
|
|
59
|
+
"toolOutput": "Salida de Herramienta",
|
|
60
|
+
"hiddenSpans": "{count} chains internos ocultos",
|
|
61
|
+
"showInternalChains": "Mostrar todos",
|
|
62
|
+
"hideInternalChains": "Ocultar internos"
|
|
63
|
+
},
|
|
64
|
+
"flow": {
|
|
65
|
+
"title": "Flujo de Conversación",
|
|
66
|
+
"userMessage": "Usuario",
|
|
67
|
+
"assistantResponse": "Asistente",
|
|
68
|
+
"toolCall": "Llamada a Herramienta",
|
|
69
|
+
"toolResult": "Resultado de Herramienta",
|
|
70
|
+
"noSteps": "No se registraron pasos de ejecución",
|
|
71
|
+
"showFull": "Ver completo",
|
|
72
|
+
"collapse": "Colapsar"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Posts",
|
|
3
|
+
"description": "Gestiona tus posts de blog",
|
|
4
|
+
"newPost": "Nuevo Post",
|
|
5
|
+
"editPost": "Editar Post",
|
|
6
|
+
"postTitle": "Título",
|
|
7
|
+
"postDetails": "Detalles del Post",
|
|
8
|
+
"slug": "Slug",
|
|
9
|
+
"status": "Estado",
|
|
10
|
+
"excerpt": "Extracto",
|
|
11
|
+
"featuredImage": "Imagen destacada",
|
|
12
|
+
"categories": "Categorías",
|
|
13
|
+
"content": "Contenido",
|
|
14
|
+
"published": "Publicado",
|
|
15
|
+
"draft": "Borrador",
|
|
16
|
+
"author": "Autor",
|
|
17
|
+
"createdAt": "Creado",
|
|
18
|
+
"actions": "Acciones",
|
|
19
|
+
"search": "Buscar posts...",
|
|
20
|
+
"noPostsFound": "No se encontraron posts",
|
|
21
|
+
"deleteConfirm": "¿Estás seguro?",
|
|
22
|
+
"deleteDescription": "Esto eliminará permanentemente \"{title}\". Esta acción no se puede deshacer.",
|
|
23
|
+
"savePost": "Guardar Post",
|
|
24
|
+
"saving": "Guardando...",
|
|
25
|
+
"deleting": "Eliminando...",
|
|
26
|
+
"viewPost": "Ver Post",
|
|
27
|
+
"back": "Volver a Posts",
|
|
28
|
+
"loading": "Cargando...",
|
|
29
|
+
"publish": "Publicar",
|
|
30
|
+
"edit": "Editar",
|
|
31
|
+
"delete": "Eliminar",
|
|
32
|
+
"cancel": "Cancelar",
|
|
33
|
+
"unsavedChanges": "Cambios sin guardar",
|
|
34
|
+
"characters": "caracteres",
|
|
35
|
+
"createSuccess": "Post creado exitosamente",
|
|
36
|
+
"updateSuccess": "Post actualizado exitosamente",
|
|
37
|
+
"deleteSuccess": "Post eliminado exitosamente",
|
|
38
|
+
"filters": {
|
|
39
|
+
"category": "Filtrar por categoría",
|
|
40
|
+
"status": "Estado",
|
|
41
|
+
"allCategories": "Todas las Categorías",
|
|
42
|
+
"allStatuses": "Todos los Estados"
|
|
43
|
+
},
|
|
44
|
+
"placeholders": {
|
|
45
|
+
"title": "Ingresa el título del post",
|
|
46
|
+
"slug": "slug-del-post",
|
|
47
|
+
"excerpt": "Resumen breve de tu post (máx 500 caracteres)",
|
|
48
|
+
"featuredImage": "https://ejemplo.com/imagen.jpg"
|
|
49
|
+
},
|
|
50
|
+
"errors": {
|
|
51
|
+
"titleRequired": "El título es requerido",
|
|
52
|
+
"slugRequired": "El slug es requerido"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Precios",
|
|
4
|
+
"title": "Planes para cada",
|
|
5
|
+
"titleAccent": "equipo",
|
|
6
|
+
"description": "Comienza gratis y escala cuando tu equipo crezca. Todos los planes incluyen nuestras funcionalidades principales."
|
|
7
|
+
},
|
|
8
|
+
"plans": {
|
|
9
|
+
"free": {
|
|
10
|
+
"name": "Free",
|
|
11
|
+
"description": "Perfecto para comenzar",
|
|
12
|
+
"price": "0",
|
|
13
|
+
"period": "para siempre",
|
|
14
|
+
"cta": "Comenzar Gratis",
|
|
15
|
+
"features": {
|
|
16
|
+
"users": "1 Usuario",
|
|
17
|
+
"projects": "5 Proyectos",
|
|
18
|
+
"storage": "1GB Almacenamiento",
|
|
19
|
+
"support": "Soporte Básico",
|
|
20
|
+
"api": "Acceso API",
|
|
21
|
+
"analytics": "Analíticas Avanzadas",
|
|
22
|
+
"prioritySupport": "Soporte Prioritario",
|
|
23
|
+
"integrations": "Integraciones Personalizadas"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"pro": {
|
|
27
|
+
"name": "Pro",
|
|
28
|
+
"description": "Mejor para equipos en crecimiento",
|
|
29
|
+
"price": "29",
|
|
30
|
+
"period": "mes",
|
|
31
|
+
"badge": "Más Popular",
|
|
32
|
+
"cta": "Comenzar Prueba Pro",
|
|
33
|
+
"features": {
|
|
34
|
+
"users": "10 Usuarios",
|
|
35
|
+
"projects": "Proyectos Ilimitados",
|
|
36
|
+
"storage": "100GB Almacenamiento",
|
|
37
|
+
"support": "Soporte Prioritario",
|
|
38
|
+
"api": "Acceso API",
|
|
39
|
+
"analytics": "Analíticas Avanzadas",
|
|
40
|
+
"integrations": "Integraciones Personalizadas",
|
|
41
|
+
"manager": "Gerente Dedicado"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"enterprise": {
|
|
45
|
+
"name": "Enterprise",
|
|
46
|
+
"description": "Para organizaciones grandes",
|
|
47
|
+
"price": "99",
|
|
48
|
+
"period": "mes",
|
|
49
|
+
"cta": "Contactar Ventas",
|
|
50
|
+
"features": {
|
|
51
|
+
"users": "Usuarios Ilimitados",
|
|
52
|
+
"projects": "Proyectos Ilimitados",
|
|
53
|
+
"storage": "1TB Almacenamiento",
|
|
54
|
+
"support": "Soporte Dedicado",
|
|
55
|
+
"api": "Acceso API",
|
|
56
|
+
"analytics": "Analíticas Avanzadas",
|
|
57
|
+
"integrations": "Integraciones Personalizadas",
|
|
58
|
+
"manager": "Gerente Dedicado"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"comparison": {
|
|
63
|
+
"title": "Comparación Detallada",
|
|
64
|
+
"description": "Ve todas las características incluidas en cada plan para tomar la mejor decisión.",
|
|
65
|
+
"collaboration": {
|
|
66
|
+
"title": "Colaboración",
|
|
67
|
+
"description": "Herramientas para trabajar en equipo de manera eficiente con permisos granulares."
|
|
68
|
+
},
|
|
69
|
+
"storage": {
|
|
70
|
+
"title": "Almacenamiento",
|
|
71
|
+
"description": "Almacenamiento seguro y escalable para todos tus proyectos y archivos."
|
|
72
|
+
},
|
|
73
|
+
"security": {
|
|
74
|
+
"title": "Seguridad",
|
|
75
|
+
"description": "Cifrado de extremo a extremo y cumplimiento con estándares de seguridad."
|
|
76
|
+
},
|
|
77
|
+
"support": {
|
|
78
|
+
"title": "Soporte",
|
|
79
|
+
"description": "Soporte técnico especializado para resolver cualquier duda o problema."
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"faq": {
|
|
83
|
+
"title": "Preguntas Frecuentes",
|
|
84
|
+
"description": "Resolvemos las dudas más comunes sobre nuestros planes y precios.",
|
|
85
|
+
"questions": {
|
|
86
|
+
"changePlan": "¿Puedo cambiar de plan en cualquier momento?",
|
|
87
|
+
"changePlanAnswer": "Sí, puedes cambiar tu plan en cualquier momento desde tu dashboard. Los cambios se aplican inmediatamente.",
|
|
88
|
+
"setupCost": "¿Hay algún costo por configuración?",
|
|
89
|
+
"setupCostAnswer": "No, todos nuestros planes incluyen configuración gratuita y soporte durante la implementación.",
|
|
90
|
+
"paymentMethods": "¿Qué métodos de pago aceptan?",
|
|
91
|
+
"paymentMethodsAnswer": "Aceptamos todas las tarjetas de crédito principales, PayPal y transferencias bancarias para planes Enterprise.",
|
|
92
|
+
"annualDiscount": "¿Hay descuentos por pago anual?",
|
|
93
|
+
"annualDiscountAnswer": "Sí, ofrecemos 2 meses gratis al pagar anualmente en los planes Pro y Enterprise."
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"cta": {
|
|
97
|
+
"title": "¿Listo para empezar?",
|
|
98
|
+
"description": "Únete a miles de equipos que ya confían en nuestra plataforma para sus proyectos.",
|
|
99
|
+
"startFree": "Comenzar Gratis",
|
|
100
|
+
"contactSales": "Contactar Ventas"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Soporte y Documentación",
|
|
3
|
+
"description": "Obtén ayuda y aprende a usar nuestra plataforma efectivamente.",
|
|
4
|
+
"hero": {
|
|
5
|
+
"badge": "Centro de Soporte",
|
|
6
|
+
"title": "¿Cómo podemos ayudarte?",
|
|
7
|
+
"description": "Encuentra respuestas a tus preguntas, aprende a usar la plataforma y contacta nuestro equipo de soporte."
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pages": {
|
|
3
|
+
"title": "Pages",
|
|
4
|
+
"description": "Gerez vos pages dynamiques",
|
|
5
|
+
"loading": "Chargement des pages...",
|
|
6
|
+
"empty": "Aucune page trouvee. Creez votre premiere page pour commencer.",
|
|
7
|
+
"search": {
|
|
8
|
+
"placeholder": "Rechercher des pages..."
|
|
9
|
+
},
|
|
10
|
+
"filters": {
|
|
11
|
+
"locale": "Langue",
|
|
12
|
+
"allLocales": "Toutes les langues",
|
|
13
|
+
"status": "Statut",
|
|
14
|
+
"allStatuses": "Tous les statuts",
|
|
15
|
+
"published": "Publie",
|
|
16
|
+
"draft": "Brouillon"
|
|
17
|
+
},
|
|
18
|
+
"table": {
|
|
19
|
+
"title": "Titre",
|
|
20
|
+
"slug": "Slug",
|
|
21
|
+
"locale": "Langue",
|
|
22
|
+
"status": "Statut",
|
|
23
|
+
"updated": "Derniere mise a jour"
|
|
24
|
+
},
|
|
25
|
+
"status": {
|
|
26
|
+
"published": "Publie",
|
|
27
|
+
"draft": "Brouillon",
|
|
28
|
+
"unsaved": "Modifications non enregistrees"
|
|
29
|
+
},
|
|
30
|
+
"actions": {
|
|
31
|
+
"create": "Creer une page",
|
|
32
|
+
"edit": "Modifier",
|
|
33
|
+
"view": "Voir",
|
|
34
|
+
"delete": "Supprimer",
|
|
35
|
+
"save": "Enregistrer",
|
|
36
|
+
"saving": "Enregistrement...",
|
|
37
|
+
"publish": "Publier",
|
|
38
|
+
"preview": "Apercu"
|
|
39
|
+
},
|
|
40
|
+
"new": {
|
|
41
|
+
"title": "Creer une nouvelle page",
|
|
42
|
+
"description": "Creez une nouvelle page dynamique pour votre site web",
|
|
43
|
+
"back": "Retour aux pages",
|
|
44
|
+
"success": "Page creee avec succes",
|
|
45
|
+
"form": {
|
|
46
|
+
"title": "Details de la page",
|
|
47
|
+
"description": "Entrez les informations de base de votre page",
|
|
48
|
+
"fields": {
|
|
49
|
+
"title": "Titre de la page",
|
|
50
|
+
"slug": "Slug URL",
|
|
51
|
+
"locale": "Langue"
|
|
52
|
+
},
|
|
53
|
+
"placeholders": {
|
|
54
|
+
"title": "A propos de nous",
|
|
55
|
+
"slug": "a-propos-de-nous"
|
|
56
|
+
},
|
|
57
|
+
"hints": {
|
|
58
|
+
"slug": "Version URL du titre (minuscules, sans espaces)"
|
|
59
|
+
},
|
|
60
|
+
"actions": {
|
|
61
|
+
"cancel": "Annuler",
|
|
62
|
+
"create": "Creer la page",
|
|
63
|
+
"creating": "Creation..."
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"edit": {
|
|
68
|
+
"title": "Modifier la page",
|
|
69
|
+
"loading": "Chargement de la page...",
|
|
70
|
+
"back": "Retour aux pages",
|
|
71
|
+
"fields": {
|
|
72
|
+
"title": "Titre",
|
|
73
|
+
"slug": "Slug"
|
|
74
|
+
},
|
|
75
|
+
"placeholders": {
|
|
76
|
+
"title": "Titre de la page",
|
|
77
|
+
"slug": "slug-de-la-page"
|
|
78
|
+
},
|
|
79
|
+
"status": {
|
|
80
|
+
"published": "Publie",
|
|
81
|
+
"unsaved": "Modifications non enregistrees"
|
|
82
|
+
},
|
|
83
|
+
"actions": {
|
|
84
|
+
"save": "Enregistrer",
|
|
85
|
+
"saving": "Enregistrement...",
|
|
86
|
+
"publish": "Publier",
|
|
87
|
+
"preview": "Apercu",
|
|
88
|
+
"viewPage": "Voir"
|
|
89
|
+
},
|
|
90
|
+
"viewMode": {
|
|
91
|
+
"layout": "Mise en page",
|
|
92
|
+
"preview": "Apercu"
|
|
93
|
+
},
|
|
94
|
+
"messages": {
|
|
95
|
+
"saved": "Page enregistree avec succes"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"settings": {
|
|
99
|
+
"title": "Parametres de la page",
|
|
100
|
+
"seo": {
|
|
101
|
+
"title": "Parametres SEO",
|
|
102
|
+
"metaTitle": "Meta titre",
|
|
103
|
+
"metaTitlePlaceholder": "Entrez le titre pour les moteurs de recherche",
|
|
104
|
+
"metaTitleHint": "Recommande : 50-60 caracteres",
|
|
105
|
+
"metaDescription": "Meta description",
|
|
106
|
+
"metaDescriptionPlaceholder": "Entrez une breve description pour les moteurs de recherche",
|
|
107
|
+
"characters": "caracteres",
|
|
108
|
+
"metaKeywords": "Mots-cles",
|
|
109
|
+
"metaKeywordsPlaceholder": "mot1, mot2, mot3",
|
|
110
|
+
"metaKeywordsHint": "Mots-cles separes par des virgules",
|
|
111
|
+
"ogImage": "Image sociale (OG Image)",
|
|
112
|
+
"ogImagePlaceholder": "https://exemple.com/image.jpg",
|
|
113
|
+
"ogImageHint": "Image affichee lors du partage sur les reseaux sociaux"
|
|
114
|
+
},
|
|
115
|
+
"customFields": {
|
|
116
|
+
"title": "Champs personnalises",
|
|
117
|
+
"empty": "Aucun champ personnalise ajoute",
|
|
118
|
+
"keyPlaceholder": "Cle du champ",
|
|
119
|
+
"valuePlaceholder": "Valeur du champ",
|
|
120
|
+
"add": "Ajouter un champ"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"blockEditor": {
|
|
125
|
+
"picker": {
|
|
126
|
+
"title": "Bibliotheque de blocs",
|
|
127
|
+
"description": "Glissez des blocs ou cliquez pour ajouter",
|
|
128
|
+
"empty": "Aucun bloc trouve",
|
|
129
|
+
"search": {
|
|
130
|
+
"placeholder": "Rechercher des blocs..."
|
|
131
|
+
},
|
|
132
|
+
"categories": {
|
|
133
|
+
"all": "Tous"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"canvas": {
|
|
137
|
+
"empty": {
|
|
138
|
+
"message": "Aucun bloc ajoute pour le moment",
|
|
139
|
+
"hint": "Glissez des blocs depuis la bibliotheque pour commencer a construire votre page"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"block": {
|
|
143
|
+
"error": {
|
|
144
|
+
"notFound": "Bloc '{slug}' non trouve"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"settings": {
|
|
148
|
+
"empty": {
|
|
149
|
+
"message": "Aucun bloc selectionne",
|
|
150
|
+
"hint": "Selectionnez un bloc du canevas pour modifier sa configuration"
|
|
151
|
+
},
|
|
152
|
+
"error": {
|
|
153
|
+
"notFound": "Configuration du bloc non trouvee"
|
|
154
|
+
},
|
|
155
|
+
"noFields": "Ce bloc n'a pas de champs configurables",
|
|
156
|
+
"actions": {
|
|
157
|
+
"reset": "Reinitialiser",
|
|
158
|
+
"remove": "Supprimer"
|
|
159
|
+
},
|
|
160
|
+
"tabs": {
|
|
161
|
+
"content": "Contenu",
|
|
162
|
+
"design": "Design",
|
|
163
|
+
"advanced": "Avance",
|
|
164
|
+
"noContentFields": "Aucun champ de contenu disponible",
|
|
165
|
+
"noDesignFields": "Aucun champ de design disponible",
|
|
166
|
+
"noAdvancedFields": "Aucun champ avance disponible"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"form": {
|
|
170
|
+
"selectPlaceholder": "Selectionnez une option",
|
|
171
|
+
"emptyArray": "Aucun element ajoute",
|
|
172
|
+
"itemNumber": "Element {number}",
|
|
173
|
+
"addItem": "Ajouter un element",
|
|
174
|
+
"itemCount": "{current} sur {max} elements"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"builder": {
|
|
178
|
+
"back": "Retour",
|
|
179
|
+
"loading": "Chargement...",
|
|
180
|
+
"fields": {
|
|
181
|
+
"title": "Titre",
|
|
182
|
+
"slug": "Slug"
|
|
183
|
+
},
|
|
184
|
+
"placeholders": {
|
|
185
|
+
"title": "Entrez le titre...",
|
|
186
|
+
"slug": "url-slug",
|
|
187
|
+
"excerpt": "Breve description...",
|
|
188
|
+
"imageUrl": "https://exemple.com/image.jpg"
|
|
189
|
+
},
|
|
190
|
+
"status": {
|
|
191
|
+
"published": "Publie",
|
|
192
|
+
"draft": "Brouillon",
|
|
193
|
+
"scheduled": "Programme",
|
|
194
|
+
"archived": "Archive",
|
|
195
|
+
"unsaved": "Modifications non enregistrees"
|
|
196
|
+
},
|
|
197
|
+
"actions": {
|
|
198
|
+
"save": "Enregistrer",
|
|
199
|
+
"saving": "Enregistrement...",
|
|
200
|
+
"viewPage": "Voir"
|
|
201
|
+
},
|
|
202
|
+
"viewMode": {
|
|
203
|
+
"layout": "Mise en page",
|
|
204
|
+
"preview": "Apercu"
|
|
205
|
+
},
|
|
206
|
+
"sidebar": {
|
|
207
|
+
"blocks": "Blocs",
|
|
208
|
+
"fields": "Champs",
|
|
209
|
+
"fieldsTitle": "Champs d'entite",
|
|
210
|
+
"fieldsDescription": "Configurez les proprietes supplementaires",
|
|
211
|
+
"noFields": "Aucun champ supplementaire disponible",
|
|
212
|
+
"noCategories": "Aucune categorie disponible"
|
|
213
|
+
},
|
|
214
|
+
"messages": {
|
|
215
|
+
"saved": "Enregistre avec succes",
|
|
216
|
+
"created": "Cree avec succes"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Utilisation IA",
|
|
3
|
+
"description": "Surveillez votre utilisation de tokens IA et les couts",
|
|
4
|
+
"loading": "Chargement des donnees d'utilisation...",
|
|
5
|
+
"error": "Erreur lors du chargement des donnees d'utilisation",
|
|
6
|
+
"period": {
|
|
7
|
+
"today": "Aujourd'hui",
|
|
8
|
+
"7d": "7 jours",
|
|
9
|
+
"30d": "30 jours",
|
|
10
|
+
"all": "Tout le temps"
|
|
11
|
+
},
|
|
12
|
+
"stats": {
|
|
13
|
+
"totalTokens": {
|
|
14
|
+
"title": "Tokens totaux",
|
|
15
|
+
"input": "entree",
|
|
16
|
+
"output": "sortie"
|
|
17
|
+
},
|
|
18
|
+
"estimatedCost": {
|
|
19
|
+
"title": "Cout estime",
|
|
20
|
+
"currency": "USD"
|
|
21
|
+
},
|
|
22
|
+
"requests": {
|
|
23
|
+
"title": "Requetes",
|
|
24
|
+
"description": "Total des requetes IA"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"usageByModel": {
|
|
28
|
+
"title": "Utilisation par modele",
|
|
29
|
+
"tokens": "tokens"
|
|
30
|
+
},
|
|
31
|
+
"dailyUsage": {
|
|
32
|
+
"title": "Utilisation quotidienne",
|
|
33
|
+
"noData": "Aucune donnee d'utilisation pour cette periode",
|
|
34
|
+
"tokens": "tokens"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"save": "Enregistrer",
|
|
3
|
+
"cancel": "Annuler",
|
|
4
|
+
"delete": "Supprimer",
|
|
5
|
+
"edit": "Modifier",
|
|
6
|
+
"add": "Ajouter",
|
|
7
|
+
"update": "Mettre a jour",
|
|
8
|
+
"submit": "Soumettre",
|
|
9
|
+
"close": "Fermer",
|
|
10
|
+
"back": "Retour",
|
|
11
|
+
"next": "Suivant",
|
|
12
|
+
"previous": "Precedent",
|
|
13
|
+
"continue": "Continuer",
|
|
14
|
+
"finish": "Terminer",
|
|
15
|
+
"signIn": "Se connecter",
|
|
16
|
+
"signUp": "S'inscrire",
|
|
17
|
+
"signOut": "Se deconnecter",
|
|
18
|
+
"signingOut": "Deconnexion..."
|
|
19
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Categories",
|
|
3
|
+
"description": "Gerez les categories d'articles",
|
|
4
|
+
"newCategory": "Nouvelle categorie",
|
|
5
|
+
"editCategory": "Modifier la categorie",
|
|
6
|
+
"createDescription": "Creez une nouvelle categorie pour organiser les articles",
|
|
7
|
+
"editDescription": "Modifier les details de la categorie",
|
|
8
|
+
"name": "Nom",
|
|
9
|
+
"slug": "Slug",
|
|
10
|
+
"icon": "Icone",
|
|
11
|
+
"color": "Couleur",
|
|
12
|
+
"actions": "Actions",
|
|
13
|
+
"loading": "Chargement...",
|
|
14
|
+
"empty": "Aucune categorie trouvee",
|
|
15
|
+
"emptyDescription": "Commencez par creer votre premiere categorie.",
|
|
16
|
+
"deleteConfirm": "Supprimer la categorie ?",
|
|
17
|
+
"deleteDescription": "Etes-vous sur de vouloir supprimer \"{name}\" ? Cette action ne peut pas etre annulee.",
|
|
18
|
+
"saveCategory": "Enregistrer la categorie",
|
|
19
|
+
"saving": "Enregistrement...",
|
|
20
|
+
"deleting": "Suppression...",
|
|
21
|
+
"cancel": "Annuler",
|
|
22
|
+
"delete": "Supprimer",
|
|
23
|
+
"iconHelp": "Nom d'icone Lucide (ex : cpu, book-open)",
|
|
24
|
+
"createSuccess": "Categorie creee avec succes",
|
|
25
|
+
"updateSuccess": "Categorie mise a jour avec succes",
|
|
26
|
+
"deleteSuccess": "Categorie supprimee avec succes",
|
|
27
|
+
"placeholders": {
|
|
28
|
+
"name": "Technologie",
|
|
29
|
+
"slug": "technologie",
|
|
30
|
+
"description": "Articles sur la technologie et le developpement logiciel"
|
|
31
|
+
},
|
|
32
|
+
"errors": {
|
|
33
|
+
"nameRequired": "Le nom est requis"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"userRoles": {
|
|
3
|
+
"member": "Membre",
|
|
4
|
+
"superadmin": "Super admin",
|
|
5
|
+
"developer": "Developpeur"
|
|
6
|
+
},
|
|
7
|
+
"teamRoles": {
|
|
8
|
+
"owner": "Proprietaire",
|
|
9
|
+
"admin": "Administrateur",
|
|
10
|
+
"member": "Membre",
|
|
11
|
+
"viewer": "Lecteur",
|
|
12
|
+
"editor": "Editeur"
|
|
13
|
+
},
|
|
14
|
+
"comingSoon": "Bientot disponible",
|
|
15
|
+
"soon": "Bientot"
|
|
16
|
+
}
|