create-velocity-astro 1.0.8 → 1.1.0
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/dist/index.js +210 -28
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/i18n/src/components/landing/CTA.astro +1 -1
- package/templates/i18n/src/components/landing/Hero.astro +1 -1
- package/templates/i18n/src/components/landing/LandingFooter.astro +2 -2
- package/templates/i18n/src/components/landing/Navbar.astro +1 -1
- package/templates/i18n/src/i18n/translations/en.ts +184 -0
- package/templates/i18n/src/i18n/translations/es.ts +184 -0
- package/templates/i18n/src/i18n/translations/fr.ts +184 -0
- package/templates/i18n/src/pages/[lang]/components.astro +147 -146
- package/templates/i18n/src/pages/components.astro +147 -146
|
@@ -197,6 +197,190 @@ export const en = {
|
|
|
197
197
|
emailPlaceholder: 'Enter your email',
|
|
198
198
|
subscribeButton: 'Subscribe',
|
|
199
199
|
},
|
|
200
|
+
|
|
201
|
+
// Components Page
|
|
202
|
+
components: {
|
|
203
|
+
meta: {
|
|
204
|
+
title: 'Components',
|
|
205
|
+
description: "Explore Velocity's comprehensive UI component library. Production-ready, accessible, and beautifully designed.",
|
|
206
|
+
},
|
|
207
|
+
hero: {
|
|
208
|
+
badge: 'Production Components',
|
|
209
|
+
title: 'Component',
|
|
210
|
+
titleHighlight: 'Library',
|
|
211
|
+
description: 'Production-ready UI primitives built with accessibility and performance in mind. Copy, paste, and customize to match your brand.',
|
|
212
|
+
browseComponents: 'Browse Components',
|
|
213
|
+
viewSource: 'View Source',
|
|
214
|
+
},
|
|
215
|
+
categories: {
|
|
216
|
+
buttons: 'Buttons',
|
|
217
|
+
inputs: 'Form Inputs',
|
|
218
|
+
feedback: 'Feedback',
|
|
219
|
+
overlays: 'Overlays',
|
|
220
|
+
data: 'Data Display',
|
|
221
|
+
loading: 'Loading',
|
|
222
|
+
},
|
|
223
|
+
sections: {
|
|
224
|
+
buttons: {
|
|
225
|
+
title: 'Buttons',
|
|
226
|
+
description: 'Interactive elements for actions and navigation. All variants support icons, loading states, and full accessibility.',
|
|
227
|
+
variants: 'Variants',
|
|
228
|
+
variantsHint: '6 styles for different contexts',
|
|
229
|
+
sizes: 'Sizes',
|
|
230
|
+
sizesHint: 'Responsive scaling',
|
|
231
|
+
states: 'States',
|
|
232
|
+
withIcons: 'With Icons',
|
|
233
|
+
primary: 'Primary',
|
|
234
|
+
secondary: 'Secondary',
|
|
235
|
+
outline: 'Outline',
|
|
236
|
+
ghost: 'Ghost',
|
|
237
|
+
link: 'Link',
|
|
238
|
+
destructive: 'Destructive',
|
|
239
|
+
small: 'Small',
|
|
240
|
+
medium: 'Medium',
|
|
241
|
+
large: 'Large',
|
|
242
|
+
default: 'Default',
|
|
243
|
+
loading: 'Loading',
|
|
244
|
+
disabled: 'Disabled',
|
|
245
|
+
send: 'Send',
|
|
246
|
+
export: 'Export',
|
|
247
|
+
star: 'Star',
|
|
248
|
+
},
|
|
249
|
+
inputs: {
|
|
250
|
+
title: 'Form Inputs',
|
|
251
|
+
description: 'Text fields, selects, checkboxes, and more. Built with native validation and ARIA support.',
|
|
252
|
+
textInput: 'Text Input',
|
|
253
|
+
textInputHint: 'With labels & validation',
|
|
254
|
+
textarea: 'Textarea',
|
|
255
|
+
textareaHint: 'Multi-line text input',
|
|
256
|
+
select: 'Select',
|
|
257
|
+
selectHint: 'Native dropdown',
|
|
258
|
+
checkboxes: 'Checkboxes',
|
|
259
|
+
checkboxesHint: 'Multi-select controls',
|
|
260
|
+
planSelection: 'Plan Selection',
|
|
261
|
+
planSelectionHint: 'Card-style radio options',
|
|
262
|
+
emailLabel: 'Email address',
|
|
263
|
+
emailPlaceholder: 'you@example.com',
|
|
264
|
+
passwordLabel: 'Password',
|
|
265
|
+
passwordPlaceholder: '••••••••',
|
|
266
|
+
passwordHint: 'Must be at least 8 characters',
|
|
267
|
+
disabledLabel: 'Disabled',
|
|
268
|
+
disabledPlaceholder: 'Cannot edit',
|
|
269
|
+
messageLabel: 'Message',
|
|
270
|
+
messagePlaceholder: 'Write your message here...',
|
|
271
|
+
messageHint: 'Supports markdown formatting',
|
|
272
|
+
countryLabel: 'Country',
|
|
273
|
+
selectCountry: 'Select a country...',
|
|
274
|
+
termsLabel: 'I agree to the terms of service',
|
|
275
|
+
updatesLabel: 'Send me product updates',
|
|
276
|
+
notificationsLabel: 'Enable notifications',
|
|
277
|
+
notificationsDesc: 'Receive alerts for important updates',
|
|
278
|
+
planFree: 'Free',
|
|
279
|
+
planFreeDesc: 'Basic features for personal projects',
|
|
280
|
+
planPro: 'Pro',
|
|
281
|
+
planProDesc: 'Advanced tools for professionals',
|
|
282
|
+
planTeam: 'Team',
|
|
283
|
+
planTeamDesc: 'Collaboration features for teams',
|
|
284
|
+
},
|
|
285
|
+
feedback: {
|
|
286
|
+
title: 'Feedback',
|
|
287
|
+
description: 'Badges, alerts, and status indicators to communicate state and guide user actions.',
|
|
288
|
+
badges: 'Badges',
|
|
289
|
+
badgesHint: 'Status indicators',
|
|
290
|
+
alerts: 'Alerts',
|
|
291
|
+
alertsHint: 'Contextual messages',
|
|
292
|
+
default: 'Default',
|
|
293
|
+
success: 'Success',
|
|
294
|
+
warning: 'Warning',
|
|
295
|
+
error: 'Error',
|
|
296
|
+
info: 'Info',
|
|
297
|
+
tipTitle: 'Tip',
|
|
298
|
+
tipContent: 'Use keyboard shortcuts to navigate faster. Press',
|
|
299
|
+
tipKey: '⌘K',
|
|
300
|
+
tipEnd: 'to open the command palette.',
|
|
301
|
+
deployTitle: 'Deployment successful',
|
|
302
|
+
deployContent: 'Your changes are now live at',
|
|
303
|
+
limitTitle: 'Approaching limit',
|
|
304
|
+
limitContent: "You've used 80% of your monthly API quota. Consider upgrading your plan.",
|
|
305
|
+
buildTitle: 'Build failed',
|
|
306
|
+
buildContent: 'Error in',
|
|
307
|
+
buildError: '— missing required prop "variant"',
|
|
308
|
+
},
|
|
309
|
+
overlays: {
|
|
310
|
+
title: 'Overlays',
|
|
311
|
+
description: 'Dialogs, dropdowns, tooltips, and tabs. Full keyboard navigation and focus management.',
|
|
312
|
+
dialog: 'Dialog',
|
|
313
|
+
dialogHint: 'Modal overlay',
|
|
314
|
+
dropdown: 'Dropdown',
|
|
315
|
+
dropdownHint: 'Action menu',
|
|
316
|
+
tooltips: 'Tooltips',
|
|
317
|
+
tooltipsHint: 'Contextual hints',
|
|
318
|
+
tabs: 'Tabs',
|
|
319
|
+
tabsHint: 'Content organization',
|
|
320
|
+
openDialog: 'Open Dialog',
|
|
321
|
+
deleteTitle: 'Delete project?',
|
|
322
|
+
deleteDesc: 'This action cannot be undone.',
|
|
323
|
+
deleteConfirm: 'Are you sure you want to delete',
|
|
324
|
+
deleteWarning: 'All files, deployments, and analytics data will be permanently removed.',
|
|
325
|
+
cancel: 'Cancel',
|
|
326
|
+
deleteProject: 'Delete Project',
|
|
327
|
+
actions: 'Actions',
|
|
328
|
+
edit: 'Edit',
|
|
329
|
+
duplicate: 'Duplicate',
|
|
330
|
+
share: 'Share',
|
|
331
|
+
archive: 'Archive',
|
|
332
|
+
delete: 'Delete',
|
|
333
|
+
top: 'Top',
|
|
334
|
+
bottom: 'Bottom',
|
|
335
|
+
left: 'Left',
|
|
336
|
+
right: 'Right',
|
|
337
|
+
tooltipTop: 'Tooltip on top',
|
|
338
|
+
tooltipBottom: 'Tooltip on bottom',
|
|
339
|
+
tooltipLeft: 'Tooltip on left',
|
|
340
|
+
tooltipRight: 'Tooltip on right',
|
|
341
|
+
overview: 'Overview',
|
|
342
|
+
analytics: 'Analytics',
|
|
343
|
+
settings: 'Settings',
|
|
344
|
+
overviewContent: 'Project overview with key metrics and recent activity. Tabs support full keyboard navigation.',
|
|
345
|
+
analyticsContent: 'Analytics data with charts and performance insights. Press arrow keys to navigate between tabs.',
|
|
346
|
+
settingsContent: 'Configure your project settings. Use Home/End to jump to first/last tab.',
|
|
347
|
+
},
|
|
348
|
+
data: {
|
|
349
|
+
title: 'Data Display',
|
|
350
|
+
description: 'Cards, avatars, and icons for presenting content and user information.',
|
|
351
|
+
cards: 'Cards',
|
|
352
|
+
cardsHint: 'Content containers',
|
|
353
|
+
avatars: 'Avatars',
|
|
354
|
+
avatarsHint: 'User representations',
|
|
355
|
+
icons: 'Icons',
|
|
356
|
+
iconsHint: 'Lucide icon set — 24 included',
|
|
357
|
+
stacked: 'Stacked',
|
|
358
|
+
performance: 'Performance',
|
|
359
|
+
performanceScore: '100/100 Lighthouse',
|
|
360
|
+
performanceDesc: 'Zero JavaScript by default. Islands architecture with selective hydration for optimal speed.',
|
|
361
|
+
typeSafe: 'Type-Safe',
|
|
362
|
+
typeSafeScore: 'Full TypeScript',
|
|
363
|
+
typeSafeDesc: 'Strict types throughout with IDE autocompletion and compile-time error checking.',
|
|
364
|
+
i18nReady: 'i18n Ready',
|
|
365
|
+
i18nScore: 'Multi-language',
|
|
366
|
+
i18nDesc: 'Built-in translation system with SEO-friendly URLs and automatic locale detection.',
|
|
367
|
+
},
|
|
368
|
+
loading: {
|
|
369
|
+
title: 'Loading',
|
|
370
|
+
description: 'Skeleton loaders for perceived performance while content is being fetched.',
|
|
371
|
+
skeletonTypes: 'Skeleton Types',
|
|
372
|
+
skeletonTypesHint: 'Text, circular, rectangular',
|
|
373
|
+
cardSkeleton: 'Card Skeleton',
|
|
374
|
+
cardSkeletonHint: 'Composite loading state',
|
|
375
|
+
},
|
|
376
|
+
},
|
|
377
|
+
cta: {
|
|
378
|
+
title: 'Ready to build?',
|
|
379
|
+
description: 'These components are just the beginning. Clone Velocity and start shipping faster.',
|
|
380
|
+
cloneRepo: 'Clone Repository',
|
|
381
|
+
readDocs: 'Read Documentation',
|
|
382
|
+
},
|
|
383
|
+
},
|
|
200
384
|
} as const;
|
|
201
385
|
|
|
202
386
|
export type TranslationKeys = typeof en;
|
|
@@ -199,4 +199,188 @@ export const es: TranslationKeys = {
|
|
|
199
199
|
emailPlaceholder: 'Introduce tu correo',
|
|
200
200
|
subscribeButton: 'Suscribirse',
|
|
201
201
|
},
|
|
202
|
+
|
|
203
|
+
// Components Page
|
|
204
|
+
components: {
|
|
205
|
+
meta: {
|
|
206
|
+
title: 'Componentes',
|
|
207
|
+
description: 'Explora la biblioteca completa de componentes UI de Velocity. Listos para producción, accesibles y bellamente diseñados.',
|
|
208
|
+
},
|
|
209
|
+
hero: {
|
|
210
|
+
badge: 'Componentes de Producción',
|
|
211
|
+
title: 'Biblioteca de',
|
|
212
|
+
titleHighlight: 'Componentes',
|
|
213
|
+
description: 'Primitivas UI listas para producción, construidas con accesibilidad y rendimiento en mente. Copia, pega y personaliza para tu marca.',
|
|
214
|
+
browseComponents: 'Explorar Componentes',
|
|
215
|
+
viewSource: 'Ver Código',
|
|
216
|
+
},
|
|
217
|
+
categories: {
|
|
218
|
+
buttons: 'Botones',
|
|
219
|
+
inputs: 'Campos de Formulario',
|
|
220
|
+
feedback: 'Retroalimentación',
|
|
221
|
+
overlays: 'Superposiciones',
|
|
222
|
+
data: 'Visualización de Datos',
|
|
223
|
+
loading: 'Cargando',
|
|
224
|
+
},
|
|
225
|
+
sections: {
|
|
226
|
+
buttons: {
|
|
227
|
+
title: 'Botones',
|
|
228
|
+
description: 'Elementos interactivos para acciones y navegación. Todas las variantes soportan iconos, estados de carga y accesibilidad completa.',
|
|
229
|
+
variants: 'Variantes',
|
|
230
|
+
variantsHint: '6 estilos para diferentes contextos',
|
|
231
|
+
sizes: 'Tamaños',
|
|
232
|
+
sizesHint: 'Escalado responsivo',
|
|
233
|
+
states: 'Estados',
|
|
234
|
+
withIcons: 'Con Iconos',
|
|
235
|
+
primary: 'Primario',
|
|
236
|
+
secondary: 'Secundario',
|
|
237
|
+
outline: 'Contorno',
|
|
238
|
+
ghost: 'Fantasma',
|
|
239
|
+
link: 'Enlace',
|
|
240
|
+
destructive: 'Destructivo',
|
|
241
|
+
small: 'Pequeño',
|
|
242
|
+
medium: 'Mediano',
|
|
243
|
+
large: 'Grande',
|
|
244
|
+
default: 'Por defecto',
|
|
245
|
+
loading: 'Cargando',
|
|
246
|
+
disabled: 'Deshabilitado',
|
|
247
|
+
send: 'Enviar',
|
|
248
|
+
export: 'Exportar',
|
|
249
|
+
star: 'Favorito',
|
|
250
|
+
},
|
|
251
|
+
inputs: {
|
|
252
|
+
title: 'Campos de Formulario',
|
|
253
|
+
description: 'Campos de texto, selectores, casillas de verificación y más. Construidos con validación nativa y soporte ARIA.',
|
|
254
|
+
textInput: 'Campo de Texto',
|
|
255
|
+
textInputHint: 'Con etiquetas y validación',
|
|
256
|
+
textarea: 'Área de Texto',
|
|
257
|
+
textareaHint: 'Entrada de texto multilínea',
|
|
258
|
+
select: 'Selector',
|
|
259
|
+
selectHint: 'Desplegable nativo',
|
|
260
|
+
checkboxes: 'Casillas',
|
|
261
|
+
checkboxesHint: 'Controles de selección múltiple',
|
|
262
|
+
planSelection: 'Selección de Plan',
|
|
263
|
+
planSelectionHint: 'Opciones tipo tarjeta',
|
|
264
|
+
emailLabel: 'Correo electrónico',
|
|
265
|
+
emailPlaceholder: 'tu@ejemplo.com',
|
|
266
|
+
passwordLabel: 'Contraseña',
|
|
267
|
+
passwordPlaceholder: '••••••••',
|
|
268
|
+
passwordHint: 'Mínimo 8 caracteres',
|
|
269
|
+
disabledLabel: 'Deshabilitado',
|
|
270
|
+
disabledPlaceholder: 'No editable',
|
|
271
|
+
messageLabel: 'Mensaje',
|
|
272
|
+
messagePlaceholder: 'Escribe tu mensaje aquí...',
|
|
273
|
+
messageHint: 'Soporta formato markdown',
|
|
274
|
+
countryLabel: 'País',
|
|
275
|
+
selectCountry: 'Selecciona un país...',
|
|
276
|
+
termsLabel: 'Acepto los términos de servicio',
|
|
277
|
+
updatesLabel: 'Enviarme actualizaciones del producto',
|
|
278
|
+
notificationsLabel: 'Habilitar notificaciones',
|
|
279
|
+
notificationsDesc: 'Recibir alertas de actualizaciones importantes',
|
|
280
|
+
planFree: 'Gratis',
|
|
281
|
+
planFreeDesc: 'Funciones básicas para proyectos personales',
|
|
282
|
+
planPro: 'Pro',
|
|
283
|
+
planProDesc: 'Herramientas avanzadas para profesionales',
|
|
284
|
+
planTeam: 'Equipo',
|
|
285
|
+
planTeamDesc: 'Funciones de colaboración para equipos',
|
|
286
|
+
},
|
|
287
|
+
feedback: {
|
|
288
|
+
title: 'Retroalimentación',
|
|
289
|
+
description: 'Insignias, alertas e indicadores de estado para comunicar estados y guiar acciones del usuario.',
|
|
290
|
+
badges: 'Insignias',
|
|
291
|
+
badgesHint: 'Indicadores de estado',
|
|
292
|
+
alerts: 'Alertas',
|
|
293
|
+
alertsHint: 'Mensajes contextuales',
|
|
294
|
+
default: 'Por defecto',
|
|
295
|
+
success: 'Éxito',
|
|
296
|
+
warning: 'Advertencia',
|
|
297
|
+
error: 'Error',
|
|
298
|
+
info: 'Info',
|
|
299
|
+
tipTitle: 'Consejo',
|
|
300
|
+
tipContent: 'Usa atajos de teclado para navegar más rápido. Presiona',
|
|
301
|
+
tipKey: '⌘K',
|
|
302
|
+
tipEnd: 'para abrir la paleta de comandos.',
|
|
303
|
+
deployTitle: 'Despliegue exitoso',
|
|
304
|
+
deployContent: 'Tus cambios están en vivo en',
|
|
305
|
+
limitTitle: 'Acercándose al límite',
|
|
306
|
+
limitContent: 'Has usado el 80% de tu cuota mensual de API. Considera actualizar tu plan.',
|
|
307
|
+
buildTitle: 'Compilación fallida',
|
|
308
|
+
buildContent: 'Error en',
|
|
309
|
+
buildError: '— falta prop requerida "variant"',
|
|
310
|
+
},
|
|
311
|
+
overlays: {
|
|
312
|
+
title: 'Superposiciones',
|
|
313
|
+
description: 'Diálogos, menús desplegables, tooltips y pestañas. Navegación completa por teclado y gestión de foco.',
|
|
314
|
+
dialog: 'Diálogo',
|
|
315
|
+
dialogHint: 'Superposición modal',
|
|
316
|
+
dropdown: 'Menú',
|
|
317
|
+
dropdownHint: 'Menú de acciones',
|
|
318
|
+
tooltips: 'Tooltips',
|
|
319
|
+
tooltipsHint: 'Sugerencias contextuales',
|
|
320
|
+
tabs: 'Pestañas',
|
|
321
|
+
tabsHint: 'Organización de contenido',
|
|
322
|
+
openDialog: 'Abrir Diálogo',
|
|
323
|
+
deleteTitle: '¿Eliminar proyecto?',
|
|
324
|
+
deleteDesc: 'Esta acción no se puede deshacer.',
|
|
325
|
+
deleteConfirm: '¿Estás seguro de que quieres eliminar',
|
|
326
|
+
deleteWarning: 'Todos los archivos, despliegues y datos analíticos serán eliminados permanentemente.',
|
|
327
|
+
cancel: 'Cancelar',
|
|
328
|
+
deleteProject: 'Eliminar Proyecto',
|
|
329
|
+
actions: 'Acciones',
|
|
330
|
+
edit: 'Editar',
|
|
331
|
+
duplicate: 'Duplicar',
|
|
332
|
+
share: 'Compartir',
|
|
333
|
+
archive: 'Archivar',
|
|
334
|
+
delete: 'Eliminar',
|
|
335
|
+
top: 'Arriba',
|
|
336
|
+
bottom: 'Abajo',
|
|
337
|
+
left: 'Izquierda',
|
|
338
|
+
right: 'Derecha',
|
|
339
|
+
tooltipTop: 'Tooltip arriba',
|
|
340
|
+
tooltipBottom: 'Tooltip abajo',
|
|
341
|
+
tooltipLeft: 'Tooltip izquierda',
|
|
342
|
+
tooltipRight: 'Tooltip derecha',
|
|
343
|
+
overview: 'Resumen',
|
|
344
|
+
analytics: 'Analíticas',
|
|
345
|
+
settings: 'Configuración',
|
|
346
|
+
overviewContent: 'Resumen del proyecto con métricas clave y actividad reciente. Las pestañas soportan navegación completa por teclado.',
|
|
347
|
+
analyticsContent: 'Datos analíticos con gráficos e información de rendimiento. Usa las flechas para navegar entre pestañas.',
|
|
348
|
+
settingsContent: 'Configura los ajustes de tu proyecto. Usa Inicio/Fin para saltar a la primera/última pestaña.',
|
|
349
|
+
},
|
|
350
|
+
data: {
|
|
351
|
+
title: 'Visualización de Datos',
|
|
352
|
+
description: 'Tarjetas, avatares e iconos para presentar contenido e información del usuario.',
|
|
353
|
+
cards: 'Tarjetas',
|
|
354
|
+
cardsHint: 'Contenedores de contenido',
|
|
355
|
+
avatars: 'Avatares',
|
|
356
|
+
avatarsHint: 'Representaciones de usuario',
|
|
357
|
+
icons: 'Iconos',
|
|
358
|
+
iconsHint: 'Set de iconos Lucide — 24 incluidos',
|
|
359
|
+
stacked: 'Apilados',
|
|
360
|
+
performance: 'Rendimiento',
|
|
361
|
+
performanceScore: '100/100 Lighthouse',
|
|
362
|
+
performanceDesc: 'Cero JavaScript por defecto. Arquitectura de islas con hidratación selectiva para velocidad óptima.',
|
|
363
|
+
typeSafe: 'Type-Safe',
|
|
364
|
+
typeSafeScore: 'TypeScript Completo',
|
|
365
|
+
typeSafeDesc: 'Tipos estrictos con autocompletado del IDE y verificación de errores en tiempo de compilación.',
|
|
366
|
+
i18nReady: 'i18n Listo',
|
|
367
|
+
i18nScore: 'Multi-idioma',
|
|
368
|
+
i18nDesc: 'Sistema de traducción integrado con URLs amigables para SEO y detección automática de idioma.',
|
|
369
|
+
},
|
|
370
|
+
loading: {
|
|
371
|
+
title: 'Cargando',
|
|
372
|
+
description: 'Esqueletos de carga para rendimiento percibido mientras se obtiene el contenido.',
|
|
373
|
+
skeletonTypes: 'Tipos de Esqueleto',
|
|
374
|
+
skeletonTypesHint: 'Texto, circular, rectangular',
|
|
375
|
+
cardSkeleton: 'Esqueleto de Tarjeta',
|
|
376
|
+
cardSkeletonHint: 'Estado de carga compuesto',
|
|
377
|
+
},
|
|
378
|
+
},
|
|
379
|
+
cta: {
|
|
380
|
+
title: '¿Listo para construir?',
|
|
381
|
+
description: 'Estos componentes son solo el comienzo. Clona Velocity y empieza a entregar más rápido.',
|
|
382
|
+
cloneRepo: 'Clonar Repositorio',
|
|
383
|
+
readDocs: 'Leer Documentación',
|
|
384
|
+
},
|
|
385
|
+
},
|
|
202
386
|
} as const;
|
|
@@ -199,4 +199,188 @@ export const fr: TranslationKeys = {
|
|
|
199
199
|
emailPlaceholder: 'Entrez votre e-mail',
|
|
200
200
|
subscribeButton: "S'abonner",
|
|
201
201
|
},
|
|
202
|
+
|
|
203
|
+
// Components Page
|
|
204
|
+
components: {
|
|
205
|
+
meta: {
|
|
206
|
+
title: 'Composants',
|
|
207
|
+
description: "Explorez la bibliothèque complète de composants UI de Velocity. Prêts pour la production, accessibles et magnifiquement conçus.",
|
|
208
|
+
},
|
|
209
|
+
hero: {
|
|
210
|
+
badge: 'Composants de Production',
|
|
211
|
+
title: 'Bibliothèque de',
|
|
212
|
+
titleHighlight: 'Composants',
|
|
213
|
+
description: "Primitives UI prêtes pour la production, construites avec l'accessibilité et la performance en tête. Copiez, collez et personnalisez pour votre marque.",
|
|
214
|
+
browseComponents: 'Parcourir les Composants',
|
|
215
|
+
viewSource: 'Voir le Code',
|
|
216
|
+
},
|
|
217
|
+
categories: {
|
|
218
|
+
buttons: 'Boutons',
|
|
219
|
+
inputs: 'Champs de Formulaire',
|
|
220
|
+
feedback: 'Retour Utilisateur',
|
|
221
|
+
overlays: 'Superpositions',
|
|
222
|
+
data: 'Affichage de Données',
|
|
223
|
+
loading: 'Chargement',
|
|
224
|
+
},
|
|
225
|
+
sections: {
|
|
226
|
+
buttons: {
|
|
227
|
+
title: 'Boutons',
|
|
228
|
+
description: "Éléments interactifs pour les actions et la navigation. Toutes les variantes supportent les icônes, les états de chargement et l'accessibilité complète.",
|
|
229
|
+
variants: 'Variantes',
|
|
230
|
+
variantsHint: '6 styles pour différents contextes',
|
|
231
|
+
sizes: 'Tailles',
|
|
232
|
+
sizesHint: 'Mise à échelle responsive',
|
|
233
|
+
states: 'États',
|
|
234
|
+
withIcons: 'Avec Icônes',
|
|
235
|
+
primary: 'Primaire',
|
|
236
|
+
secondary: 'Secondaire',
|
|
237
|
+
outline: 'Contour',
|
|
238
|
+
ghost: 'Fantôme',
|
|
239
|
+
link: 'Lien',
|
|
240
|
+
destructive: 'Destructif',
|
|
241
|
+
small: 'Petit',
|
|
242
|
+
medium: 'Moyen',
|
|
243
|
+
large: 'Grand',
|
|
244
|
+
default: 'Par défaut',
|
|
245
|
+
loading: 'Chargement',
|
|
246
|
+
disabled: 'Désactivé',
|
|
247
|
+
send: 'Envoyer',
|
|
248
|
+
export: 'Exporter',
|
|
249
|
+
star: 'Favori',
|
|
250
|
+
},
|
|
251
|
+
inputs: {
|
|
252
|
+
title: 'Champs de Formulaire',
|
|
253
|
+
description: 'Champs de texte, sélecteurs, cases à cocher et plus. Construits avec validation native et support ARIA.',
|
|
254
|
+
textInput: 'Champ de Texte',
|
|
255
|
+
textInputHint: 'Avec labels et validation',
|
|
256
|
+
textarea: 'Zone de Texte',
|
|
257
|
+
textareaHint: 'Saisie de texte multiligne',
|
|
258
|
+
select: 'Sélecteur',
|
|
259
|
+
selectHint: 'Liste déroulante native',
|
|
260
|
+
checkboxes: 'Cases à Cocher',
|
|
261
|
+
checkboxesHint: 'Contrôles de sélection multiple',
|
|
262
|
+
planSelection: 'Sélection de Plan',
|
|
263
|
+
planSelectionHint: 'Options style carte',
|
|
264
|
+
emailLabel: 'Adresse e-mail',
|
|
265
|
+
emailPlaceholder: 'vous@exemple.com',
|
|
266
|
+
passwordLabel: 'Mot de passe',
|
|
267
|
+
passwordPlaceholder: '••••••••',
|
|
268
|
+
passwordHint: 'Minimum 8 caractères',
|
|
269
|
+
disabledLabel: 'Désactivé',
|
|
270
|
+
disabledPlaceholder: 'Non modifiable',
|
|
271
|
+
messageLabel: 'Message',
|
|
272
|
+
messagePlaceholder: 'Écrivez votre message ici...',
|
|
273
|
+
messageHint: 'Supporte le formatage markdown',
|
|
274
|
+
countryLabel: 'Pays',
|
|
275
|
+
selectCountry: 'Sélectionnez un pays...',
|
|
276
|
+
termsLabel: "J'accepte les conditions d'utilisation",
|
|
277
|
+
updatesLabel: "M'envoyer les mises à jour produit",
|
|
278
|
+
notificationsLabel: 'Activer les notifications',
|
|
279
|
+
notificationsDesc: 'Recevoir des alertes pour les mises à jour importantes',
|
|
280
|
+
planFree: 'Gratuit',
|
|
281
|
+
planFreeDesc: 'Fonctionnalités de base pour projets personnels',
|
|
282
|
+
planPro: 'Pro',
|
|
283
|
+
planProDesc: 'Outils avancés pour professionnels',
|
|
284
|
+
planTeam: 'Équipe',
|
|
285
|
+
planTeamDesc: "Fonctionnalités de collaboration pour les équipes",
|
|
286
|
+
},
|
|
287
|
+
feedback: {
|
|
288
|
+
title: 'Retour Utilisateur',
|
|
289
|
+
description: "Badges, alertes et indicateurs d'état pour communiquer l'état et guider les actions utilisateur.",
|
|
290
|
+
badges: 'Badges',
|
|
291
|
+
badgesHint: "Indicateurs d'état",
|
|
292
|
+
alerts: 'Alertes',
|
|
293
|
+
alertsHint: 'Messages contextuels',
|
|
294
|
+
default: 'Par défaut',
|
|
295
|
+
success: 'Succès',
|
|
296
|
+
warning: 'Avertissement',
|
|
297
|
+
error: 'Erreur',
|
|
298
|
+
info: 'Info',
|
|
299
|
+
tipTitle: 'Astuce',
|
|
300
|
+
tipContent: 'Utilisez les raccourcis clavier pour naviguer plus vite. Appuyez sur',
|
|
301
|
+
tipKey: '⌘K',
|
|
302
|
+
tipEnd: 'pour ouvrir la palette de commandes.',
|
|
303
|
+
deployTitle: 'Déploiement réussi',
|
|
304
|
+
deployContent: 'Vos modifications sont en ligne sur',
|
|
305
|
+
limitTitle: 'Limite approchant',
|
|
306
|
+
limitContent: "Vous avez utilisé 80% de votre quota API mensuel. Envisagez de passer à un plan supérieur.",
|
|
307
|
+
buildTitle: 'Build échoué',
|
|
308
|
+
buildContent: 'Erreur dans',
|
|
309
|
+
buildError: '— prop requise "variant" manquante',
|
|
310
|
+
},
|
|
311
|
+
overlays: {
|
|
312
|
+
title: 'Superpositions',
|
|
313
|
+
description: 'Dialogues, menus déroulants, tooltips et onglets. Navigation clavier complète et gestion du focus.',
|
|
314
|
+
dialog: 'Dialogue',
|
|
315
|
+
dialogHint: 'Superposition modale',
|
|
316
|
+
dropdown: 'Menu',
|
|
317
|
+
dropdownHint: "Menu d'actions",
|
|
318
|
+
tooltips: 'Tooltips',
|
|
319
|
+
tooltipsHint: 'Indices contextuels',
|
|
320
|
+
tabs: 'Onglets',
|
|
321
|
+
tabsHint: 'Organisation du contenu',
|
|
322
|
+
openDialog: 'Ouvrir le Dialogue',
|
|
323
|
+
deleteTitle: 'Supprimer le projet ?',
|
|
324
|
+
deleteDesc: 'Cette action ne peut pas être annulée.',
|
|
325
|
+
deleteConfirm: 'Êtes-vous sûr de vouloir supprimer',
|
|
326
|
+
deleteWarning: 'Tous les fichiers, déploiements et données analytiques seront définitivement supprimés.',
|
|
327
|
+
cancel: 'Annuler',
|
|
328
|
+
deleteProject: 'Supprimer le Projet',
|
|
329
|
+
actions: 'Actions',
|
|
330
|
+
edit: 'Modifier',
|
|
331
|
+
duplicate: 'Dupliquer',
|
|
332
|
+
share: 'Partager',
|
|
333
|
+
archive: 'Archiver',
|
|
334
|
+
delete: 'Supprimer',
|
|
335
|
+
top: 'Haut',
|
|
336
|
+
bottom: 'Bas',
|
|
337
|
+
left: 'Gauche',
|
|
338
|
+
right: 'Droite',
|
|
339
|
+
tooltipTop: 'Tooltip en haut',
|
|
340
|
+
tooltipBottom: 'Tooltip en bas',
|
|
341
|
+
tooltipLeft: 'Tooltip à gauche',
|
|
342
|
+
tooltipRight: 'Tooltip à droite',
|
|
343
|
+
overview: 'Aperçu',
|
|
344
|
+
analytics: 'Analytiques',
|
|
345
|
+
settings: 'Paramètres',
|
|
346
|
+
overviewContent: "Aperçu du projet avec métriques clés et activité récente. Les onglets supportent la navigation clavier complète.",
|
|
347
|
+
analyticsContent: "Données analytiques avec graphiques et informations de performance. Utilisez les flèches pour naviguer entre les onglets.",
|
|
348
|
+
settingsContent: 'Configurez les paramètres de votre projet. Utilisez Début/Fin pour aller au premier/dernier onglet.',
|
|
349
|
+
},
|
|
350
|
+
data: {
|
|
351
|
+
title: 'Affichage de Données',
|
|
352
|
+
description: "Cartes, avatars et icônes pour présenter le contenu et les informations utilisateur.",
|
|
353
|
+
cards: 'Cartes',
|
|
354
|
+
cardsHint: 'Conteneurs de contenu',
|
|
355
|
+
avatars: 'Avatars',
|
|
356
|
+
avatarsHint: "Représentations d'utilisateurs",
|
|
357
|
+
icons: 'Icônes',
|
|
358
|
+
iconsHint: 'Set Lucide — 24 incluses',
|
|
359
|
+
stacked: 'Empilés',
|
|
360
|
+
performance: 'Performance',
|
|
361
|
+
performanceScore: '100/100 Lighthouse',
|
|
362
|
+
performanceDesc: "Zéro JavaScript par défaut. Architecture en îles avec hydratation sélective pour une vitesse optimale.",
|
|
363
|
+
typeSafe: 'Type-Safe',
|
|
364
|
+
typeSafeScore: 'TypeScript Complet',
|
|
365
|
+
typeSafeDesc: "Types stricts avec autocomplétion IDE et vérification d'erreurs à la compilation.",
|
|
366
|
+
i18nReady: 'i18n Prêt',
|
|
367
|
+
i18nScore: 'Multilingue',
|
|
368
|
+
i18nDesc: 'Système de traduction intégré avec URLs SEO-friendly et détection automatique de la langue.',
|
|
369
|
+
},
|
|
370
|
+
loading: {
|
|
371
|
+
title: 'Chargement',
|
|
372
|
+
description: 'Squelettes de chargement pour une performance perçue pendant le chargement du contenu.',
|
|
373
|
+
skeletonTypes: 'Types de Squelettes',
|
|
374
|
+
skeletonTypesHint: 'Texte, circulaire, rectangulaire',
|
|
375
|
+
cardSkeleton: 'Squelette de Carte',
|
|
376
|
+
cardSkeletonHint: 'État de chargement composé',
|
|
377
|
+
},
|
|
378
|
+
},
|
|
379
|
+
cta: {
|
|
380
|
+
title: 'Prêt à construire ?',
|
|
381
|
+
description: "Ces composants ne sont que le début. Clonez Velocity et commencez à livrer plus vite.",
|
|
382
|
+
cloneRepo: 'Cloner le Dépôt',
|
|
383
|
+
readDocs: 'Lire la Documentation',
|
|
384
|
+
},
|
|
385
|
+
},
|
|
202
386
|
} as const;
|