soliddesigner 0.1.2 → 0.1.31
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/README.md +3 -1
- package/dist/soliddesigner/browser/assets/i18n/en.json +119 -6
- package/dist/soliddesigner/browser/assets/i18n/es.json +108 -4
- package/dist/soliddesigner/browser/assets/i18n/fr.json +116 -6
- package/dist/soliddesigner/browser/{chunk-QLKLLQUG.js → chunk-B3PWEOJU.js} +15 -15
- package/dist/soliddesigner/browser/chunk-HQAPYEAU.js +1 -0
- package/dist/soliddesigner/browser/chunk-NXIXSW45.js +1 -0
- package/dist/soliddesigner/browser/chunk-T55JQPIL.js +82 -0
- package/dist/soliddesigner/browser/file.svg +48 -48
- package/dist/soliddesigner/browser/index.html +14 -26
- package/dist/soliddesigner/browser/main.js +10 -47
- package/package.json +3 -2
- package/dist/soliddesigner/browser/chunk-TPCZ6RJG.js +0 -1
- /package/dist/soliddesigner/browser/assets/{images → svg-editor/images}/default-product-img.png +0 -0
package/README.md
CHANGED
|
@@ -35,10 +35,12 @@ Le projet a pour vocation d'être packagé et réutilisable. Pour préparer une
|
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
4. **Publier sur npm** :
|
|
38
|
+
Pour créer un token de bypass dans https://www.npmjs.com/settings/solidpepper/tokens, créer un nouveau token avec le bypass A2F activé et les autorisations necessaires sur le projet soliddesigner
|
|
39
|
+
Dans le fichier `.npmrc` (à la racine du projet), ajoutez le token npm : `//registry.npmjs.org/:_authToken=LE_TOKEN_ICI` pour bypass l'A2F
|
|
40
|
+
|
|
38
41
|
```shell
|
|
39
42
|
npm publish
|
|
40
43
|
```
|
|
41
|
-
⚠️ *Note : Dans le fichier `package.json`, l'attribut `"private": true` restreint la publication publique. S'il s'agit d'une publication sur un registre privé ou public, pensez à vérifier ce paramètre (le supprimer ou l'adapter) et assurez-vous que vous êtes bien authentifié via `npm login`.*
|
|
42
44
|
|
|
43
45
|
## Architecture et utilité des dossiers/fichiers
|
|
44
46
|
|
|
@@ -61,9 +61,10 @@
|
|
|
61
61
|
"SETTINGS": {
|
|
62
62
|
"SHOW_GRID": "Show Grid",
|
|
63
63
|
"SNAP_GRID": "Snap to Grid",
|
|
64
|
-
"UNITS": "Units
|
|
64
|
+
"UNITS": "Units",
|
|
65
65
|
"SHOW_RULER": "Show Rulers",
|
|
66
66
|
"SHOW_WIREFRAME": "Show Wireframe",
|
|
67
|
+
"SHOW_MARGINS": "Show Margins",
|
|
67
68
|
"MANAGE_FONTS": "Manage Fonts",
|
|
68
69
|
"CHANGE_TEMPLATE_DIM": "Change Template Dimensions",
|
|
69
70
|
"AUTOSAVE": "Autosave",
|
|
@@ -94,6 +95,12 @@
|
|
|
94
95
|
"DELETE": "Delete",
|
|
95
96
|
"GRID_VIEW": "Grid view",
|
|
96
97
|
"ORGANIZE": "Organize",
|
|
98
|
+
"OPEN": "Open",
|
|
99
|
+
"INSERT_BEFORE": "Insert before",
|
|
100
|
+
"INSERT_AFTER": "Insert after",
|
|
101
|
+
"DUPLICATE": "Duplicate",
|
|
102
|
+
"DELETE_CONFIRM_TITLE": "Delete page?",
|
|
103
|
+
"DELETE_CONFIRM_MSG": "Are you sure you want to delete this page?",
|
|
97
104
|
"UNSAVED_CHANGES_WARNING": "All changes not saved will be lost, are you sure to continue?",
|
|
98
105
|
"PAGE_NAME": "Page {{number}}"
|
|
99
106
|
},
|
|
@@ -111,10 +118,12 @@
|
|
|
111
118
|
"RENAME_ALREADY_EXISTS": "A template with this name already exists.",
|
|
112
119
|
"TEMPLATE_DIMENSIONS": {
|
|
113
120
|
"TITLE": "Template dimensions",
|
|
121
|
+
"FORMAT": "Format",
|
|
114
122
|
"WIDTH": "Width",
|
|
115
123
|
"HEIGHT": "Height",
|
|
116
124
|
"RESOLUTION": "Resolution",
|
|
117
125
|
"OR": "OR",
|
|
126
|
+
"CUSTOM": "Custom",
|
|
118
127
|
"HELP_INFORMATIONS": "Help informations",
|
|
119
128
|
"BLOCK_PER_LINE": "Block per line:",
|
|
120
129
|
"BLOCK_PER_COLUMN": "Block per column:",
|
|
@@ -124,6 +133,19 @@
|
|
|
124
133
|
"TOO_MANY_BLOCKS_COLUMN": "Too many blocks per column",
|
|
125
134
|
"APPLY_CHANGES": "Apply Changes"
|
|
126
135
|
}
|
|
136
|
+
},
|
|
137
|
+
"ERROR": "Error",
|
|
138
|
+
"PROPERTIES": {
|
|
139
|
+
"CANVAS": {
|
|
140
|
+
"SIZE": "Size",
|
|
141
|
+
"RESIZE": "Resize",
|
|
142
|
+
"HEADER": "Header",
|
|
143
|
+
"FOOTER": "Footer",
|
|
144
|
+
"MARGIN_V": "Inner margin top-bottom",
|
|
145
|
+
"MARGIN_H": "Inner margin left-right",
|
|
146
|
+
"BLEED": "Bleed margin",
|
|
147
|
+
"BACKGROUND": "Background"
|
|
148
|
+
}
|
|
127
149
|
}
|
|
128
150
|
},
|
|
129
151
|
"SHORTCUTS": {
|
|
@@ -229,11 +251,13 @@
|
|
|
229
251
|
},
|
|
230
252
|
"IMAGE": {
|
|
231
253
|
"TITLE": "Image Settings",
|
|
232
|
-
"TRANSFORM_DYNAMIC": "Return to dynamic image"
|
|
254
|
+
"TRANSFORM_DYNAMIC": "Return to dynamic image",
|
|
255
|
+
"HD_URL": "HD Image Link"
|
|
233
256
|
},
|
|
234
257
|
"DYNAMIC_IMAGE": {
|
|
235
258
|
"TITLE": "Dynamic Image",
|
|
236
259
|
"TRANSFORM_STATIC": "Transform into static image",
|
|
260
|
+
"DATA_FIELD": "Data Field",
|
|
237
261
|
"IMAGE_NUMBER": "Image n°"
|
|
238
262
|
},
|
|
239
263
|
"FILL": {
|
|
@@ -271,6 +295,9 @@
|
|
|
271
295
|
"TO_PAGE": "Align to Page",
|
|
272
296
|
"TO_OBJECTS": "Align to Objects"
|
|
273
297
|
},
|
|
298
|
+
"CANVAS": {
|
|
299
|
+
"TITLE": "Canvas dimensions"
|
|
300
|
+
},
|
|
274
301
|
"TEXT": {
|
|
275
302
|
"TITLE": "Text",
|
|
276
303
|
"SIZE": "Size",
|
|
@@ -283,7 +310,8 @@
|
|
|
283
310
|
"BOLD": "Bold",
|
|
284
311
|
"ITALIC": "Italic",
|
|
285
312
|
"UNDERLINE": "Underline",
|
|
286
|
-
"STRIKETHROUGH": "Strikethrough"
|
|
313
|
+
"STRIKETHROUGH": "Strikethrough",
|
|
314
|
+
"LOCK_SIZE": "Lock text width"
|
|
287
315
|
},
|
|
288
316
|
"MENU": {
|
|
289
317
|
"CUT": "Cut",
|
|
@@ -291,7 +319,9 @@
|
|
|
291
319
|
"PASTE": "Paste",
|
|
292
320
|
"DELETE": "Delete",
|
|
293
321
|
"BRING_TO_FRONT": "Bring to Front",
|
|
294
|
-
"SEND_TO_BACK": "Send to Back"
|
|
322
|
+
"SEND_TO_BACK": "Send to Back",
|
|
323
|
+
"BRING_FORWARD": "Bring forward",
|
|
324
|
+
"SEND_BACKWARD": "Send backward"
|
|
295
325
|
},
|
|
296
326
|
"CONTEXT_BAR": {
|
|
297
327
|
"CHANGE_IMAGE": "Change image",
|
|
@@ -356,16 +386,40 @@
|
|
|
356
386
|
"SHOW_HEADER": "Show Header",
|
|
357
387
|
"HIDE_EMPTY_CELLS": "Hide Empty Cells",
|
|
358
388
|
"VARIATION_BG": "Variation Bg",
|
|
389
|
+
"MERGE": "Merge",
|
|
390
|
+
"SPLIT": "Split",
|
|
359
391
|
"POSITIONS": {
|
|
360
392
|
"ALL": "All",
|
|
361
393
|
"TOP": "Top",
|
|
362
394
|
"BOTTOM": "Bottom",
|
|
363
395
|
"LEFT": "Left",
|
|
364
396
|
"RIGHT": "Right"
|
|
365
|
-
}
|
|
397
|
+
},
|
|
398
|
+
"MENU": {
|
|
399
|
+
"SET_COL_WIDTH": "Set column width",
|
|
400
|
+
"SET_ROW_HEIGHT": "Set row height",
|
|
401
|
+
"ROW": "Row",
|
|
402
|
+
"COLUMN": "Column",
|
|
403
|
+
"INSERT_ABOVE": "Insert row above",
|
|
404
|
+
"INSERT_BELOW": "Insert row below",
|
|
405
|
+
"DELETE_ROWS": "Delete rows",
|
|
406
|
+
"MOVE_UP": "Move rows up",
|
|
407
|
+
"MOVE_DOWN": "Move rows down",
|
|
408
|
+
"INSERT_LEFT": "Insert column left",
|
|
409
|
+
"INSERT_RIGHT": "Insert column right",
|
|
410
|
+
"DELETE_COLS": "Delete columns",
|
|
411
|
+
"MOVE_LEFT": "Move columns left",
|
|
412
|
+
"MOVE_RIGHT": "Move columns right",
|
|
413
|
+
"MERGE": "Merge cells",
|
|
414
|
+
"SPLIT": "Split cells"
|
|
415
|
+
},
|
|
416
|
+
"SET_DIMENSION": "Set Dimension",
|
|
417
|
+
"DIMENSION_AUTO": "Auto",
|
|
418
|
+
"DIMENSION_CUSTOM": "Custom",
|
|
419
|
+
"DIMENSION_VALUE": "Value"
|
|
366
420
|
},
|
|
367
421
|
"BACKGROUND_PREVIEW": {
|
|
368
|
-
"TITLE": "
|
|
422
|
+
"TITLE": "Background",
|
|
369
423
|
"NO_BACKGROUNDS": "No backgrounds available or loading."
|
|
370
424
|
},
|
|
371
425
|
"ATTRIBUTES_POPUP": {
|
|
@@ -375,5 +429,64 @@
|
|
|
375
429
|
},
|
|
376
430
|
"SEARCH": "Search",
|
|
377
431
|
"NO_RESULTS": "No attributes found"
|
|
432
|
+
},
|
|
433
|
+
"ATTRIBUTES": {
|
|
434
|
+
"NONE": "None",
|
|
435
|
+
"CLASSIFICATION": "Classification Level"
|
|
436
|
+
},
|
|
437
|
+
"FONTS": {
|
|
438
|
+
"MY_FONTS": "My Fonts",
|
|
439
|
+
"GOOGLE_FONTS": "Google Fonts",
|
|
440
|
+
"ADD_FONT": "Add font",
|
|
441
|
+
"SEARCH_GOOGLE": "Search Google Fonts...",
|
|
442
|
+
"DELETE_CONFIRM_TITLE": "Delete Font",
|
|
443
|
+
"DELETE_CONFIRM_MESSAGE": "Are you sure you want to delete the font \"{{name}}\"?",
|
|
444
|
+
"RENAME_TITLE": "Rename Font",
|
|
445
|
+
"RENAME_LABEL": "Font name",
|
|
446
|
+
"RENAME_ERROR": "Error while renaming font.",
|
|
447
|
+
"SUCCESS_RENAME": "Font renamed successfully!"
|
|
448
|
+
},
|
|
449
|
+
"SHARE": {
|
|
450
|
+
"TITLE": "Share",
|
|
451
|
+
"GENERATE_PDF": "Generate PDF",
|
|
452
|
+
"PREVIEW": "Preview",
|
|
453
|
+
"DOWNLOAD_SD": "Download (SD)",
|
|
454
|
+
"DOWNLOAD_HD": "Download (HD)",
|
|
455
|
+
"FLIPBOOK": "Flipbook",
|
|
456
|
+
"YOUBOOKY": "YouBooky",
|
|
457
|
+
"GENERATING": "Generating...",
|
|
458
|
+
"READY": "Ready",
|
|
459
|
+
"FAILED": "Generation failed",
|
|
460
|
+
"HD_HINT": "It may take a moment",
|
|
461
|
+
"TOAST_GENERATING": "PDF generation in progress...",
|
|
462
|
+
"TOAST_FINISHED": "PDF generation finished!"
|
|
463
|
+
},
|
|
464
|
+
"IFRAME_MODAL": {
|
|
465
|
+
"TITLE": "Iframe",
|
|
466
|
+
"COPY_LINK": "Copy Link",
|
|
467
|
+
"INTEGRATE": "Integrate to your website",
|
|
468
|
+
"COPY_CODE": "Copy Code",
|
|
469
|
+
"LINK_LABEL": "Link"
|
|
470
|
+
},
|
|
471
|
+
"YOUBOOKY_MODAL": {
|
|
472
|
+
"TITLE": "Publish on YouBooky.com?",
|
|
473
|
+
"SUBTITLE": "One more click, and your project shines on YouBooky.com!",
|
|
474
|
+
"DESCRIPTION": "All publications on YouBooky are subject to prior verification by our moderation team. This step ensures the compliance of your project with our terms of use and ensures a quality experience for the entire community. You will receive a notification of validation and listing within a maximum of 24 hours.",
|
|
475
|
+
"TERMS": "I understand that any illegal content will be refused and, if necessary, reported to the competent authorities.",
|
|
476
|
+
"SUBMIT": "Send my publication request",
|
|
477
|
+
"SUCCESS": "Your project has been successfully submitted to YouBooky",
|
|
478
|
+
"ERROR": "An error occurred while submitting your project to YouBooky"
|
|
479
|
+
},
|
|
480
|
+
"LOADER": {
|
|
481
|
+
"MESSAGES": {
|
|
482
|
+
"OPENING": "Opening...",
|
|
483
|
+
"RESOURCES": "Loading resources...",
|
|
484
|
+
"WORKSPACE": "Preparing workspace...",
|
|
485
|
+
"TOOLS": "Initializing tools..."
|
|
486
|
+
},
|
|
487
|
+
"ERRORS": {
|
|
488
|
+
"DOCUMENT": "Could not retrieve the document.",
|
|
489
|
+
"TOKEN": "No token provided, please provide a valid token."
|
|
490
|
+
}
|
|
378
491
|
}
|
|
379
492
|
}
|
|
@@ -61,9 +61,10 @@
|
|
|
61
61
|
"SETTINGS": {
|
|
62
62
|
"SHOW_GRID": "Mostrar cuadrícula",
|
|
63
63
|
"SNAP_GRID": "Ajustar a la cuadrícula",
|
|
64
|
-
"UNITS": "Unidades
|
|
64
|
+
"UNITS": "Unidades",
|
|
65
65
|
"SHOW_RULER": "Mostrar reglas",
|
|
66
66
|
"SHOW_WIREFRAME": "Mostrar modo estructurado",
|
|
67
|
+
"SHOW_MARGINS": "Mostrar márgenes",
|
|
67
68
|
"MANAGE_FONTS": "Administrar fuentes",
|
|
68
69
|
"CHANGE_TEMPLATE_DIM": "Cambiar dimensiones de la plantilla",
|
|
69
70
|
"AUTOSAVE": "Autoguardado",
|
|
@@ -111,10 +112,12 @@
|
|
|
111
112
|
"RENAME_ALREADY_EXISTS": "Ya existe una plantilla con este nombre.",
|
|
112
113
|
"TEMPLATE_DIMENSIONS": {
|
|
113
114
|
"TITLE": "Dimensiones de la plantilla",
|
|
115
|
+
"FORMAT": "Formato",
|
|
114
116
|
"WIDTH": "Ancho",
|
|
115
117
|
"HEIGHT": "Alto",
|
|
116
118
|
"RESOLUTION": "Resolución",
|
|
117
119
|
"OR": "O",
|
|
120
|
+
"CUSTOM": "Personalizado",
|
|
118
121
|
"HELP_INFORMATIONS": "Información de ayuda",
|
|
119
122
|
"BLOCK_PER_LINE": "Bloque por línea:",
|
|
120
123
|
"BLOCK_PER_COLUMN": "Bloque por columna:",
|
|
@@ -124,6 +127,19 @@
|
|
|
124
127
|
"TOO_MANY_BLOCKS_COLUMN": "Demasiados bloques por columna",
|
|
125
128
|
"APPLY_CHANGES": "Aplicar cambios"
|
|
126
129
|
}
|
|
130
|
+
},
|
|
131
|
+
"ERROR": "Error",
|
|
132
|
+
"PROPERTIES": {
|
|
133
|
+
"CANVAS": {
|
|
134
|
+
"SIZE": "Tamaño",
|
|
135
|
+
"RESIZE": "Redimensionar",
|
|
136
|
+
"HEADER": "Encabezado",
|
|
137
|
+
"FOOTER": "Pie de página",
|
|
138
|
+
"MARGIN_V": "Margen Int. arriba-abajo",
|
|
139
|
+
"MARGIN_H": "Margen Int. izquierda-derecha",
|
|
140
|
+
"BLEED": "Margen de sangrado",
|
|
141
|
+
"BACKGROUND": "Fondo"
|
|
142
|
+
}
|
|
127
143
|
}
|
|
128
144
|
},
|
|
129
145
|
"SHORTCUTS": {
|
|
@@ -229,7 +245,8 @@
|
|
|
229
245
|
},
|
|
230
246
|
"IMAGE": {
|
|
231
247
|
"TITLE": "Configuración de imagen",
|
|
232
|
-
"TRANSFORM_DYNAMIC": "Volver a imagen dinámica"
|
|
248
|
+
"TRANSFORM_DYNAMIC": "Volver a imagen dinámica",
|
|
249
|
+
"HD_URL": "Enlace a imagen HD"
|
|
233
250
|
},
|
|
234
251
|
"DYNAMIC_IMAGE": {
|
|
235
252
|
"TITLE": "Imagen dinámica",
|
|
@@ -271,6 +288,9 @@
|
|
|
271
288
|
"TO_PAGE": "Alinear a la página",
|
|
272
289
|
"TO_OBJECTS": "Alinear a los objetos"
|
|
273
290
|
},
|
|
291
|
+
"CANVAS": {
|
|
292
|
+
"TITLE": "Tamaño del lienzo"
|
|
293
|
+
},
|
|
274
294
|
"TEXT": {
|
|
275
295
|
"TITLE": "Texto",
|
|
276
296
|
"SIZE": "Tamaño",
|
|
@@ -283,7 +303,8 @@
|
|
|
283
303
|
"BOLD": "Negrita",
|
|
284
304
|
"ITALIC": "Cursiva",
|
|
285
305
|
"UNDERLINE": "Subrayado",
|
|
286
|
-
"STRIKETHROUGH": "Tachado"
|
|
306
|
+
"STRIKETHROUGH": "Tachado",
|
|
307
|
+
"LOCK_SIZE": "Bloquear ancho de texto"
|
|
287
308
|
},
|
|
288
309
|
"MENU": {
|
|
289
310
|
"CUT": "Cortar",
|
|
@@ -358,13 +379,37 @@
|
|
|
358
379
|
"SHOW_HEADER": "Mostrar encabezado",
|
|
359
380
|
"HIDE_EMPTY_CELLS": "Ocultar celdas vacías",
|
|
360
381
|
"VARIATION_BG": "Fondo de variación",
|
|
382
|
+
"MERGE": "Fusionar",
|
|
383
|
+
"SPLIT": "Dividir",
|
|
361
384
|
"POSITIONS": {
|
|
362
385
|
"ALL": "Todo",
|
|
363
386
|
"TOP": "Arriba",
|
|
364
387
|
"BOTTOM": "Abajo",
|
|
365
388
|
"LEFT": "Izquierda",
|
|
366
389
|
"RIGHT": "Derecha"
|
|
367
|
-
}
|
|
390
|
+
},
|
|
391
|
+
"MENU": {
|
|
392
|
+
"SET_COL_WIDTH": "Establecer ancho de columna",
|
|
393
|
+
"SET_ROW_HEIGHT": "Establecer altura de fila",
|
|
394
|
+
"ROW": "Fila",
|
|
395
|
+
"COLUMN": "Columna",
|
|
396
|
+
"INSERT_ABOVE": "Insertar fila arriba",
|
|
397
|
+
"INSERT_BELOW": "Insertar fila abajo",
|
|
398
|
+
"DELETE_ROWS": "Eliminar filas",
|
|
399
|
+
"MOVE_UP": "Mover filas arriba",
|
|
400
|
+
"MOVE_DOWN": "Mover filas abajo",
|
|
401
|
+
"INSERT_LEFT": "Insertar columna a la izquierda",
|
|
402
|
+
"INSERT_RIGHT": "Insertar columna a la derecha",
|
|
403
|
+
"DELETE_COLS": "Eliminar columnas",
|
|
404
|
+
"MOVE_LEFT": "Mover columnas a la izquierda",
|
|
405
|
+
"MOVE_RIGHT": "Mover columnas a la derecha",
|
|
406
|
+
"MERGE": "Combinar celdas",
|
|
407
|
+
"SPLIT": "Dividir celdas"
|
|
408
|
+
},
|
|
409
|
+
"SET_DIMENSION": "Establecer dimensión",
|
|
410
|
+
"DIMENSION_AUTO": "Automático",
|
|
411
|
+
"DIMENSION_CUSTOM": "Personalizado",
|
|
412
|
+
"DIMENSION_VALUE": "Valor"
|
|
368
413
|
},
|
|
369
414
|
"BACKGROUND_PREVIEW": {
|
|
370
415
|
"TITLE": "Fondos",
|
|
@@ -377,5 +422,64 @@
|
|
|
377
422
|
},
|
|
378
423
|
"SEARCH": "Buscar",
|
|
379
424
|
"NO_RESULTS": "No se encontraron atributos"
|
|
425
|
+
},
|
|
426
|
+
"ATTRIBUTES": {
|
|
427
|
+
"NONE": "Ninguno",
|
|
428
|
+
"CLASSIFICATION": "Clasificación nivel"
|
|
429
|
+
},
|
|
430
|
+
"FONTS": {
|
|
431
|
+
"MY_FONTS": "Mis fuentes",
|
|
432
|
+
"GOOGLE_FONTS": "Google Fonts",
|
|
433
|
+
"ADD_FONT": "Añadir fuente",
|
|
434
|
+
"SEARCH_GOOGLE": "Buscar Google Fonts...",
|
|
435
|
+
"DELETE_CONFIRM_TITLE": "Eliminar fuente",
|
|
436
|
+
"DELETE_CONFIRM_MESSAGE": "¿Estás seguro de que quieres eliminar la fuente \"{{name}}\"?",
|
|
437
|
+
"RENAME_TITLE": "Renombrar fuente",
|
|
438
|
+
"RENAME_LABEL": "Nombre de la fuente",
|
|
439
|
+
"RENAME_ERROR": "Error al renombrar la fuente.",
|
|
440
|
+
"SUCCESS_RENAME": "¡Fuente renombrada con éxito!"
|
|
441
|
+
},
|
|
442
|
+
"SHARE": {
|
|
443
|
+
"TITLE": "Compartir",
|
|
444
|
+
"GENERATE_PDF": "Generar PDF",
|
|
445
|
+
"PREVIEW": "Vista previa",
|
|
446
|
+
"DOWNLOAD_SD": "Descargar (SD)",
|
|
447
|
+
"DOWNLOAD_HD": "Descargar (HD)",
|
|
448
|
+
"FLIPBOOK": "Flipbook",
|
|
449
|
+
"YOUBOOKY": "YouBooky",
|
|
450
|
+
"GENERATING": "Generando...",
|
|
451
|
+
"READY": "Listo",
|
|
452
|
+
"FAILED": "Error de generación",
|
|
453
|
+
"HD_HINT": "Puede tomar un momento",
|
|
454
|
+
"TOAST_GENERATING": "Generación de PDF en progreso...",
|
|
455
|
+
"TOAST_FINISHED": "¡Generación de PDF finalizada!"
|
|
456
|
+
},
|
|
457
|
+
"IFRAME_MODAL": {
|
|
458
|
+
"TITLE": "Iframe",
|
|
459
|
+
"COPY_LINK": "Copiar enlace",
|
|
460
|
+
"INTEGRATE": "Integrar a su sitio web",
|
|
461
|
+
"COPY_CODE": "Copiar código",
|
|
462
|
+
"LINK_LABEL": "Enlace"
|
|
463
|
+
},
|
|
464
|
+
"YOUBOOKY_MODAL": {
|
|
465
|
+
"TITLE": "¿Publicar en YouBooky.com?",
|
|
466
|
+
"SUBTITLE": "¡Un clic más y su proyecto brillará en YouBooky.com!",
|
|
467
|
+
"DESCRIPTION": "Todas las publicaciones en YouBooky están sujetas a una verificación previa por parte de nuestro equipo de moderación. Este paso garantiza el cumplimiento de su proyecto con nuestras condiciones de uso y asegura una experiencia de calidad para toda la comunidad. Recibirá una notificación de validación y puesta en línea en un plazo máximo de 24 horas.",
|
|
468
|
+
"TERMS": "Entiendo que cualquier contenido ilícito será rechazado y, si es necesario, reportado a las autoridades competentes.",
|
|
469
|
+
"SUBMIT": "Enviar mi solicitud de publicación",
|
|
470
|
+
"SUCCESS": "Su proyecto ha sido enviado con éxito a YouBooky",
|
|
471
|
+
"ERROR": "Ocurrió un error al enviar su proyecto a YouBooky"
|
|
472
|
+
},
|
|
473
|
+
"LOADER": {
|
|
474
|
+
"MESSAGES": {
|
|
475
|
+
"OPENING": "Abriendo...",
|
|
476
|
+
"RESOURCES": "Cargando recursos...",
|
|
477
|
+
"WORKSPACE": "Preparando el espacio de trabajo...",
|
|
478
|
+
"TOOLS": "Inicializando herramientas..."
|
|
479
|
+
},
|
|
480
|
+
"ERRORS": {
|
|
481
|
+
"DOCUMENT": "No se pudo recuperar el documento.",
|
|
482
|
+
"TOKEN": "No se proporcionó ningún token, por favor proporcione un token válido."
|
|
483
|
+
}
|
|
380
484
|
}
|
|
381
485
|
}
|
|
@@ -61,9 +61,10 @@
|
|
|
61
61
|
"SETTINGS": {
|
|
62
62
|
"SHOW_GRID": "Afficher la grille",
|
|
63
63
|
"SNAP_GRID": "Accrocher à la grille",
|
|
64
|
-
"UNITS": "Unités
|
|
64
|
+
"UNITS": "Unités",
|
|
65
65
|
"SHOW_RULER": "Afficher les règles",
|
|
66
66
|
"SHOW_WIREFRAME": "Afficher le mode filaire",
|
|
67
|
+
"SHOW_MARGINS": "Afficher les marges",
|
|
67
68
|
"MANAGE_FONTS": "Gérer les polices",
|
|
68
69
|
"CHANGE_TEMPLATE_DIM": "Changer les dimensions du modèle",
|
|
69
70
|
"AUTOSAVE": "Sauvegarde automatique",
|
|
@@ -78,7 +79,6 @@
|
|
|
78
79
|
},
|
|
79
80
|
"HELLO": "Bonjour",
|
|
80
81
|
"WELCOME": "Bienvenue sur SolidDesigner",
|
|
81
|
-
"NONE": "Aucun",
|
|
82
82
|
"CANCEL": "Annuler",
|
|
83
83
|
"CONFIRM": "Confirmer",
|
|
84
84
|
"OK": "OK",
|
|
@@ -94,6 +94,12 @@
|
|
|
94
94
|
"DELETE": "Supprimer",
|
|
95
95
|
"GRID_VIEW": "Vue grille",
|
|
96
96
|
"ORGANIZE": "Organiser",
|
|
97
|
+
"OPEN": "Ouvrir",
|
|
98
|
+
"INSERT_BEFORE": "Insérer avant",
|
|
99
|
+
"INSERT_AFTER": "Insérer après",
|
|
100
|
+
"DUPLICATE": "Dupliquer",
|
|
101
|
+
"DELETE_CONFIRM_TITLE": "Supprimer la page ?",
|
|
102
|
+
"DELETE_CONFIRM_MSG": "Êtes-vous sûr de vouloir supprimer cette page ?",
|
|
97
103
|
"UNSAVED_CHANGES_WARNING": "Toutes les modifications non sauvegardées seront perdues, voulez-vous continuer ?",
|
|
98
104
|
"PAGE_NAME": "Page {{number}}"
|
|
99
105
|
},
|
|
@@ -111,10 +117,12 @@
|
|
|
111
117
|
"RENAME_ALREADY_EXISTS": "Un modèle avec ce nom existe déjà.",
|
|
112
118
|
"TEMPLATE_DIMENSIONS": {
|
|
113
119
|
"TITLE": "Dimensions du modèle",
|
|
120
|
+
"FORMAT": "Format",
|
|
114
121
|
"WIDTH": "Largeur",
|
|
115
122
|
"HEIGHT": "Hauteur",
|
|
116
123
|
"RESOLUTION": "Résolution",
|
|
117
124
|
"OR": "OU",
|
|
125
|
+
"CUSTOM": "Personnalisé",
|
|
118
126
|
"HELP_INFORMATIONS": "Informations d'aide",
|
|
119
127
|
"BLOCK_PER_LINE": "Blocs par ligne:",
|
|
120
128
|
"BLOCK_PER_COLUMN": "Blocs par colonne:",
|
|
@@ -124,6 +132,19 @@
|
|
|
124
132
|
"TOO_MANY_BLOCKS_COLUMN": "Trop de blocs par colonne",
|
|
125
133
|
"APPLY_CHANGES": "Appliquer les modifications"
|
|
126
134
|
}
|
|
135
|
+
},
|
|
136
|
+
"ERROR": "Erreur",
|
|
137
|
+
"PROPERTIES": {
|
|
138
|
+
"CANVAS": {
|
|
139
|
+
"SIZE": "Taille",
|
|
140
|
+
"RESIZE": "Redimensionner",
|
|
141
|
+
"HEADER": "En-tête",
|
|
142
|
+
"FOOTER": "Pied de page",
|
|
143
|
+
"MARGIN_V": "Marge Int. haut-bas",
|
|
144
|
+
"MARGIN_H": "Marge Int. gauche-droite",
|
|
145
|
+
"BLEED": "Marge perdue",
|
|
146
|
+
"BACKGROUND": "Arrière-plan"
|
|
147
|
+
}
|
|
127
148
|
}
|
|
128
149
|
},
|
|
129
150
|
"SHORTCUTS": {
|
|
@@ -229,11 +250,13 @@
|
|
|
229
250
|
},
|
|
230
251
|
"IMAGE": {
|
|
231
252
|
"TITLE": "Paramètres de l'image",
|
|
232
|
-
"TRANSFORM_DYNAMIC": "Revenir en image dynamique"
|
|
253
|
+
"TRANSFORM_DYNAMIC": "Revenir en image dynamique",
|
|
254
|
+
"HD_URL": "Lien vers image HD"
|
|
233
255
|
},
|
|
234
256
|
"DYNAMIC_IMAGE": {
|
|
235
257
|
"TITLE": "Image dynamique",
|
|
236
258
|
"TRANSFORM_STATIC": "Transformer en image statique",
|
|
259
|
+
"DATA_FIELD": "Champ de données",
|
|
237
260
|
"IMAGE_NUMBER": "Numéro de l'image"
|
|
238
261
|
},
|
|
239
262
|
"FILL": {
|
|
@@ -271,6 +294,9 @@
|
|
|
271
294
|
"TO_PAGE": "Aligner à la page",
|
|
272
295
|
"TO_OBJECTS": "Aligner aux objets"
|
|
273
296
|
},
|
|
297
|
+
"CANVAS": {
|
|
298
|
+
"TITLE": "Dimensions de la toile"
|
|
299
|
+
},
|
|
274
300
|
"TEXT": {
|
|
275
301
|
"TITLE": "Texte",
|
|
276
302
|
"SIZE": "Taille",
|
|
@@ -283,7 +309,8 @@
|
|
|
283
309
|
"BOLD": "Gras",
|
|
284
310
|
"ITALIC": "Italique",
|
|
285
311
|
"UNDERLINE": "Souligné",
|
|
286
|
-
"STRIKETHROUGH": "Barré"
|
|
312
|
+
"STRIKETHROUGH": "Barré",
|
|
313
|
+
"LOCK_SIZE": "Verrouiller la largeur du texte"
|
|
287
314
|
},
|
|
288
315
|
"MENU": {
|
|
289
316
|
"CUT": "Couper",
|
|
@@ -358,16 +385,40 @@
|
|
|
358
385
|
"SHOW_HEADER": "Afficher l'en-tête",
|
|
359
386
|
"HIDE_EMPTY_CELLS": "Masquer les cellules vides",
|
|
360
387
|
"VARIATION_BG": "Arrière-plan variation",
|
|
388
|
+
"MERGE": "Fusionner",
|
|
389
|
+
"SPLIT": "Diviser",
|
|
361
390
|
"POSITIONS": {
|
|
362
391
|
"ALL": "Tout",
|
|
363
392
|
"TOP": "Haut",
|
|
364
393
|
"BOTTOM": "Bas",
|
|
365
394
|
"LEFT": "Gauche",
|
|
366
395
|
"RIGHT": "Droite"
|
|
367
|
-
}
|
|
396
|
+
},
|
|
397
|
+
"MENU": {
|
|
398
|
+
"SET_COL_WIDTH": "Définir la largeur de la colonne",
|
|
399
|
+
"SET_ROW_HEIGHT": "Définir la hauteur de la ligne",
|
|
400
|
+
"ROW": "Ligne",
|
|
401
|
+
"COLUMN": "Colonne",
|
|
402
|
+
"INSERT_ABOVE": "Insérer une ligne au-dessus",
|
|
403
|
+
"INSERT_BELOW": "Insérer une ligne en dessous",
|
|
404
|
+
"DELETE_ROWS": "Supprimer les lignes",
|
|
405
|
+
"MOVE_UP": "Déplacer les lignes vers le haut",
|
|
406
|
+
"MOVE_DOWN": "Déplacer les lignes vers le bas",
|
|
407
|
+
"INSERT_LEFT": "Insérer une colonne à gauche",
|
|
408
|
+
"INSERT_RIGHT": "Insérer une colonne à droite",
|
|
409
|
+
"DELETE_COLS": "Supprimer les colonnes",
|
|
410
|
+
"MOVE_LEFT": "Déplacer les colonnes vers la gauche",
|
|
411
|
+
"MOVE_RIGHT": "Déplacer les colonnes vers la droite",
|
|
412
|
+
"MERGE": "Fusionner les cellules",
|
|
413
|
+
"SPLIT": "Scinder les cellules"
|
|
414
|
+
},
|
|
415
|
+
"SET_DIMENSION": "Définir la dimension",
|
|
416
|
+
"DIMENSION_AUTO": "Automatique",
|
|
417
|
+
"DIMENSION_CUSTOM": "Personnalisé",
|
|
418
|
+
"DIMENSION_VALUE": "Valeur"
|
|
368
419
|
},
|
|
369
420
|
"BACKGROUND_PREVIEW": {
|
|
370
|
-
"TITLE": "Arrière-
|
|
421
|
+
"TITLE": "Arrière-plan",
|
|
371
422
|
"NO_BACKGROUNDS": "Aucun arrière-plan disponible ou en cours de chargement."
|
|
372
423
|
},
|
|
373
424
|
"ATTRIBUTES_POPUP": {
|
|
@@ -377,5 +428,64 @@
|
|
|
377
428
|
},
|
|
378
429
|
"SEARCH": "Rechercher",
|
|
379
430
|
"NO_RESULTS": "Aucun attribut trouvé"
|
|
431
|
+
},
|
|
432
|
+
"ATTRIBUTES": {
|
|
433
|
+
"NONE": "Aucun",
|
|
434
|
+
"CLASSIFICATION": "Catégorie niveau"
|
|
435
|
+
},
|
|
436
|
+
"FONTS": {
|
|
437
|
+
"MY_FONTS": "Mes polices",
|
|
438
|
+
"GOOGLE_FONTS": "Google Fonts",
|
|
439
|
+
"ADD_FONT": "Ajouter une police",
|
|
440
|
+
"SEARCH_GOOGLE": "Rechercher des Google Fonts...",
|
|
441
|
+
"DELETE_CONFIRM_TITLE": "Supprimer la police",
|
|
442
|
+
"DELETE_CONFIRM_MESSAGE": "Êtes-vous sûr de vouloir supprimer la police \"{{name}}\" ?",
|
|
443
|
+
"RENAME_TITLE": "Renommer la police",
|
|
444
|
+
"RENAME_LABEL": "Nom de la police",
|
|
445
|
+
"RENAME_ERROR": "Erreur lors du renommage de la police.",
|
|
446
|
+
"SUCCESS_RENAME": "Police renommée avec succès !"
|
|
447
|
+
},
|
|
448
|
+
"SHARE": {
|
|
449
|
+
"TITLE": "Partager",
|
|
450
|
+
"GENERATE_PDF": "Générer un PDF",
|
|
451
|
+
"PREVIEW": "Aperçu",
|
|
452
|
+
"DOWNLOAD_SD": "Télécharger (SD)",
|
|
453
|
+
"DOWNLOAD_HD": "Télécharger (HD)",
|
|
454
|
+
"FLIPBOOK": "Flipbook",
|
|
455
|
+
"YOUBOOKY": "YouBooky",
|
|
456
|
+
"GENERATING": "Génération en cours...",
|
|
457
|
+
"READY": "Prêt",
|
|
458
|
+
"FAILED": "Échec de la génération",
|
|
459
|
+
"HD_HINT": "Peut prendre un moment",
|
|
460
|
+
"TOAST_GENERATING": "Génération du PDF en cours...",
|
|
461
|
+
"TOAST_FINISHED": "Génération du PDF terminée !"
|
|
462
|
+
},
|
|
463
|
+
"IFRAME_MODAL": {
|
|
464
|
+
"TITLE": "Iframe",
|
|
465
|
+
"COPY_LINK": "Copier le lien",
|
|
466
|
+
"INTEGRATE": "Intégrer à votre site web",
|
|
467
|
+
"COPY_CODE": "Copier le code",
|
|
468
|
+
"LINK_LABEL": "Lien"
|
|
469
|
+
},
|
|
470
|
+
"YOUBOOKY_MODAL": {
|
|
471
|
+
"TITLE": "Publier sur YouBooky.com ?",
|
|
472
|
+
"SUBTITLE": "Plus qu’un clic, et votre projet rayonne sur YouBooky.com !",
|
|
473
|
+
"DESCRIPTION": "Toute publication sur YouBooky est soumise à une vérification préalable par notre équipe de modération. Cette étape permet de garantir la conformité de votre projet avec nos conditions d’utilisation et d’assurer une expérience de qualité à l’ensemble de la communauté. Vous recevrez une notification de validation et de mise en ligne dans un délai maximum de 24 heures.",
|
|
474
|
+
"TERMS": "Je comprends que tout contenu illicite sera refusé et, si nécessaire, signalé aux autorités compétentes.",
|
|
475
|
+
"SUBMIT": "Envoyer ma demande de publication",
|
|
476
|
+
"SUCCESS": "Votre projet a été soumis avec succès à YouBooky",
|
|
477
|
+
"ERROR": "Une erreur est survenue lors de la soumission de votre projet à YouBooky"
|
|
478
|
+
},
|
|
479
|
+
"LOADER": {
|
|
480
|
+
"MESSAGES": {
|
|
481
|
+
"OPENING": "Ouverture en cours...",
|
|
482
|
+
"RESOURCES": "Chargement des ressources...",
|
|
483
|
+
"WORKSPACE": "Préparation de l'espace de travail...",
|
|
484
|
+
"TOOLS": "Initialisation des outils..."
|
|
485
|
+
},
|
|
486
|
+
"ERRORS": {
|
|
487
|
+
"DOCUMENT": "Impossible de récupérer le document.",
|
|
488
|
+
"TOKEN": "Aucun jeton fourni, veuillez fournir un jeton valide."
|
|
489
|
+
}
|
|
380
490
|
}
|
|
381
491
|
}
|