forked from Shopify/dawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes.schema.json
1585 lines (1585 loc) · 43.3 KB
/
es.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"settings_schema": {
"colors": {
"name": "Colores",
"settings": {
"colors_solid_button_labels": {
"label": "Etiqueta de botón sólido",
"info": "Se utiliza como color de primer plano sobre los colores de acento."
},
"colors_accent_1": {
"label": "Acento 1",
"info": "Se utiliza para el fondo de botón sólido"
},
"colors_accent_2": {
"label": "Acento 2"
},
"header__1": {
"content": "Colores primarios"
},
"header__2": {
"content": "Colores secundarios"
},
"colors_text": {
"label": "Texto",
"info": "Se utiliza como color de primer plano sobre los colores de fondo."
},
"colors_outline_button_labels": {
"label": "Botón con contorno",
"info": "También se utiliza para enlaces de texto."
},
"colors_background_1": {
"label": "Fondo 1"
},
"colors_background_2": {
"label": "Fondo 2"
}
}
},
"typography": {
"name": "Tipografía",
"settings": {
"type_header_font": {
"label": "Fuente",
"info": "Seleccionar una fuente diferente puede afectar la velocidad de tu tienda online. [Más información sobre fuentes de sistema.](https://help.shopify.com/es/manual/online-store/os/store-speed/improving-speed#fonts)"
},
"header__1": {
"content": "Títulos"
},
"header__2": {
"content": "Cuerpo"
},
"type_body_font": {
"label": "Fuente",
"info": "Seleccionar una fuente diferente puede afectar la velocidad de tu tienda online. [Más información sobre fuentes de sistema.](https://help.shopify.com/es/manual/online-store/os/store-speed/improving-speed#fonts)"
}
}
},
"styles": {
"name": "Estilos",
"settings": {
"sale_badge_color_scheme": {
"options__1": {
"label": "Fondo 2"
},
"options__2": {
"label": "Acento 1"
},
"options__3": {
"label": "Acento 2"
},
"label": "Esquema de color de emblema de oferta"
},
"sold_out_badge_color_scheme": {
"options__1": {
"label": "Fondo 1"
},
"options__2": {
"label": "Invertir"
},
"label": "Esquema de color de emblema de agotado"
},
"header__1": {
"content": "Emblemas"
},
"header__2": {
"content": "Elementos decorativos"
},
"accent_icons": {
"options__1": {
"label": "Acento 1"
},
"options__2": {
"label": "Acento 2"
},
"options__3": {
"label": "Botón con contorno"
},
"options__4": {
"label": "Texto"
},
"label": "Íconos de acento"
}
}
},
"social-media": {
"name": "Redes sociales",
"settings": {
"share_facebook": {
"label": "Compartir en Facebook"
},
"share_twitter": {
"label": "Compartir en Twitter"
},
"share_pinterest": {
"label": "Guardar en Pinterest"
},
"header__1": {
"content": "Opciones para compartir en redes sociales"
},
"header__2": {
"content": "Cuentas de redes sociales"
},
"social_twitter_link": {
"label": "Twitter",
"info": "https://twitter.com/shopify"
},
"social_facebook_link": {
"label": "Facebook",
"info": "https://www.facebook.com/ShopifyES/"
},
"social_pinterest_link": {
"label": "Pinterest",
"info": "https://pinterest.com/shopify"
},
"social_instagram_link": {
"label": "Instagram",
"info": "http://instagram.com/shopify"
},
"social_tiktok_link": {
"label": "TikTok",
"info": "https://tiktok.com/@shopify"
},
"social_tumblr_link": {
"label": "Tumblr",
"info": "https://shopify.tumblr.com"
},
"social_snapchat_link": {
"label": "Snapchat",
"info": "https://www.snapchat.com/add/shopify"
},
"social_youtube_link": {
"label": "YouTube",
"info": "https://www.youtube.com/shopify"
},
"social_vimeo_link": {
"label": "Vimeo",
"info": "https://vimeo.com/shopify"
}
}
},
"currency_format": {
"name": "Formato de moneda",
"settings": {
"content": "Códigos de moneda",
"currency_code_enabled": {
"label": "Mostrar códigos de moneda"
},
"paragraph": "Los precios en el carrito y la pantalla de pago siempre muestran códigos de moneda. Ejemplo: USD 1,00."
}
}
},
"sections": {
"announcement-bar": {
"name": "Barra de anuncios",
"blocks": {
"announcement": {
"name": "Anuncio",
"settings": {
"text": {
"label": "Texto"
},
"color_scheme": {
"label": "Esquema de colores",
"options__1": {
"label": "Fondo 1"
},
"options__2": {
"label": "Fondo 2"
},
"options__3": {
"label": "Invertir"
},
"options__4": {
"label": "Acento 1"
},
"options__5": {
"label": "Acento 2"
}
},
"link": {
"label": "Enlace"
}
}
}
}
},
"collage": {
"name": "Collage",
"settings": {
"heading": {
"label": "Título"
},
"desktop_layout": {
"label": "Diseño para computadora",
"options__1": {
"label": "Bloque grande izquierdo"
},
"options__2": {
"label": "Bloque grande derecho"
}
},
"mobile_layout": {
"label": "Diseño para móviles",
"options__1": {
"label": "Collage"
},
"options__2": {
"label": "Columna"
}
}
},
"blocks": {
"image": {
"name": "Imagen",
"settings": {
"image": {
"label": "Imagen"
},
"image_padding": {
"label": "Agregar relleno de imagen",
"info": "Selecciona relleno de imagen si no deseas que se corten tus imágenes."
},
"color_scheme": {
"options__1": {
"label": "Acento 1"
},
"options__2": {
"label": "Acento 2"
},
"options__3": {
"label": "Fondo 1"
},
"options__4": {
"label": "Fondo 2"
},
"options__5": {
"label": "Invertir"
},
"label": "Esquema de colores",
"info": "Selecciona relleno de imagen para que el color sea visible."
}
}
},
"product": {
"name": "Producto",
"settings": {
"product": {
"label": "Producto"
},
"secondary_background": {
"label": "Mostrar fondo secundario"
},
"second_image": {
"label": "Mostrar segunda imagen al pasar el cursor"
},
"image_padding": {
"label": "Agregar relleno de imagen",
"info": "Selecciona relleno de imagen si no deseas que se corten tus imágenes."
}
}
},
"collection": {
"name": "Colección",
"settings": {
"collection": {
"label": "Colección"
},
"image_padding": {
"label": "Agregar relleno de imagen",
"info": "Selecciona relleno de imagen si no deseas que se corten tus imágenes."
},
"color_scheme": {
"options__1": {
"label": "Acento 1"
},
"options__2": {
"label": "Acento 2"
},
"options__3": {
"label": "Fondo 1"
},
"options__4": {
"label": "Fondo 2"
},
"options__5": {
"label": "Invertir"
},
"label": "Esquema de colores"
}
}
},
"video": {
"name": "Video",
"settings": {
"cover_image": {
"label": "Imagen de portada"
},
"video_url": {
"label": "Enlace",
"info": "Los videos se reproducen en una ventana emergente si la sección contiene otros bloques.",
"placeholder": "Utilizar un enlace de YouTube o Vimeo"
},
"image_padding": {
"label": "Agregar relleno de imagen",
"info": "Selecciona relleno de imagen si no deseas que se corten tus imágenes."
}
}
}
},
"presets": {
"name": "Collage"
}
},
"collection-list": {
"name": "Lista de colecciones",
"settings": {
"title": {
"label": "Título"
},
"image_ratio": {
"label": "Relación de aspecto de imagen",
"options__1": {
"label": "Adaptar a la imagen"
},
"options__2": {
"label": "Retrato"
},
"options__3": {
"label": "Cuadrado"
},
"info": "Para agregar imágenes, [edita tus colecciones](https://help.shopify.com/es/manual/products/collections)"
},
"color_scheme": {
"options__1": {
"label": "Acento 1"
},
"options__2": {
"label": "Acento 2"
},
"options__3": {
"label": "Fondo 1"
},
"options__4": {
"label": "Fondo 2"
},
"options__5": {
"label": "Invertir"
},
"label": "Esquema de colores"
},
"swipe_on_mobile": {
"label": "Activar uso de banda magnética en el móvil"
},
"image_padding": {
"label": "Agregar relleno de imagen"
},
"show_view_all": {
"label": "Habilitar el botón \"Ver todos\" si la lista incluye más colecciones de las que se muestran"
}
},
"blocks": {
"featured_collection": {
"name": "Colección",
"settings": {
"collection": {
"label": "Colección"
}
}
}
},
"presets": {
"name": "Lista de colecciones"
}
},
"contact-form": {
"name": "Formulario de contacto",
"presets": {
"name": "Formulario de contacto"
}
},
"custom-liquid": {
"name": "Liquid personalizado",
"settings": {
"custom_liquid": {
"label": "Liquid personalizado"
}
},
"presets": {
"name": "Liquid personalizado"
}
},
"featured-blog": {
"name": "Artículos de blog",
"settings": {
"heading": {
"label": "Título"
},
"blog": {
"label": "Blog"
},
"post_limit": {
"label": "Artículos de blog"
},
"show_view_all": {
"label": "Habilitar el botón \"Ver todos\" si el blog tiene más artículos de los que se muestran"
},
"show_image": {
"label": "Mostrar imagen destacada",
"info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 2:3."
},
"soft_background": {
"label": "Mostrar fondo secundario"
}
},
"blocks": {
"title": {
"name": "Título",
"settings": {
"show_date": {
"label": "Mostrar fecha"
},
"show_author": {
"label": "Mostrar autor"
}
}
},
"summary": {
"name": "Extracto"
},
"link": {
"name": "Enlace"
}
},
"presets": {
"name": "Artículos de blog"
}
},
"featured-collection": {
"name": "Colección destacada",
"settings": {
"title": {
"label": "Título"
},
"collection": {
"label": "Colección"
},
"products_to_show": {
"label": "Máximo de productos para mostrar"
},
"show_view_all": {
"label": "Habilitar el botón \"Ver todos\" si la colección tiene más productos de los que se muestran"
},
"swipe_on_mobile": {
"label": "Activar uso de banda magnética en el móvil"
},
"header": {
"content": "Tarjeta de producto"
},
"image_ratio": {
"label": "Relación de aspecto de imagen",
"options__1": {
"label": "Adaptar a la imagen"
},
"options__2": {
"label": "Retrato"
},
"options__3": {
"label": "Cuadrado"
}
},
"show_secondary_image": {
"label": "Mostrar segunda imagen al pasar el cursor"
},
"add_image_padding": {
"label": "Agregar relleno"
},
"show_vendor": {
"label": "Mostrar proveedor"
}
},
"presets": {
"name": "Colección destacada"
}
},
"footer": {
"name": "Pie de página",
"blocks": {
"link_list": {
"name": "Menú",
"settings": {
"heading": {
"label": "Encabezado",
"info": "Se requiere un título para mostrar el menú."
},
"menu": {
"label": "Menú",
"info": "Muestra solo los elementos de menú de nivel superior."
}
}
},
"text": {
"name": "Texto",
"settings": {
"heading": {
"label": "Encabezado"
},
"subtext": {
"label": "Subtexto"
}
}
}
},
"settings": {
"color_scheme": {
"options__1": {
"label": "Acento 1"
},
"options__2": {
"label": "Acento 2"
},
"options__3": {
"label": "Fondo 1"
},
"options__4": {
"label": "Fondo 2"
},
"options__5": {
"label": "Invertir"
},
"label": "Esquema de colores"
},
"newsletter_enable": {
"label": "Mostrar suscriptor de correo electrónico"
},
"newsletter_heading": {
"label": "Encabezado"
},
"header__1": {
"content": "Suscriptor de correo electrónico",
"info": "Suscriptores agregados a tu [lista de clientes] de “aceptó marketing”. (https://help.shopify.com/es/manual/customers/manage-customers)"
},
"header__2": {
"content": "Íconos de redes sociales",
"info": "Para mostrar tus cuentas de redes sociales, vincúlalas en la configuración de tu tema."
},
"show_social": {
"label": "Mostrar íconos de redes sociales"
},
"header__3": {
"content": "Selector de país/región"
},
"header__4": {
"info": "Para agregar un país/región, ve a tu [configuración de pagos.](/admin/settings/payments)"
},
"enable_country_selector": {
"label": "Activar selector de país/región"
},
"header__5": {
"content": "Selector de idioma"
},
"header__6": {
"info": "Para agregar un idioma, ve a tu [configuración de idiomas.](/admin/settings/languages)"
},
"enable_language_selector": {
"label": "Activar selector de idioma"
},
"header__7": {
"content": "Formas de pago"
},
"payment_enable": {
"label": "Mostrar íconos de pago"
}
}
},
"header": {
"name": "Encabezado",
"settings": {
"logo": {
"label": "Imagen del logo"
},
"logo_width": {
"unit": "px",
"label": "Ancho del logo personalizado"
},
"logo_position": {
"label": "Posición de logo en pantalla grande",
"options__1": {
"label": "Centrado a la izquierda"
},
"options__2": {
"label": "Arriba a la izquierda"
},
"options__3": {
"label": "Superior centrada"
}
},
"menu": {
"label": "Menú"
},
"show_line_separator": {
"label": "Mostrar línea separadora"
},
"enable_sticky_header": {
"label": "Activar encabezado fijo",
"info": "El encabezado se muestra en la pantalla mientras los clientes se desplazan hacia arriba."
}
}
},
"image-banner": {
"name": "Banner de imagen",
"settings": {
"image": {
"label": "Primera imagen"
},
"image_2": {
"label": "Segunda imagen"
},
"desktop_text_box_position": {
"options__1": {
"label": "Arriba"
},
"options__2": {
"label": "Centrado"
},
"options__3": {
"label": "Abajo"
},
"label": "Posición de texto en computadora"
},
"color_scheme": {
"options__1": {
"label": "Acento 1"
},
"options__2": {
"label": "Acento 2"
},
"options__3": {
"label": "Fondo 1"
},
"options__4": {
"label": "Fondo 2"
},
"options__5": {
"label": "Invertir"
},
"label": "Esquema de colores"
},
"stack_images_on_mobile": {
"label": "Apilar imágenes en móviles"
},
"adapt_height_first_image": {
"label": "Adaptar altura de sección a tamaño de primera imagen"
}
},
"blocks": {
"heading": {
"name": "Título",
"settings": {
"heading": {
"label": "Título"
}
}
},
"text": {
"name": "Texto",
"settings": {
"text": {
"label": "Descripción"
}
}
},
"buttons": {
"name": "Botones",
"settings": {
"button_label_1": {
"label": "Primera etiqueta de botón",
"info": "Deja la etiqueta en blanco para ocultar el botón."
},
"button_link_1": {
"label": "Primer enlace de botón"
},
"button_style_secondary_1": {
"label": "Usar estilo de botón con contorno"
},
"button_label_2": {
"label": "Primera etiqueta de botón",
"info": "Deja la etiqueta en blanco para ocultar el botón."
},
"button_link_2": {
"label": "Segundo enlace de botón"
},
"button_style_secondary_2": {
"label": "Usar estilo de botón con contorno"
}
}
}
},
"presets": {
"name": "Banner de imagen"
}
},
"image-with-text": {
"name": "Imagen con texto",
"settings": {
"image": {
"label": "Imagen"
},
"height": {
"options__1": {
"label": "Adaptar a la imagen"
},
"options__2": {
"label": "Pequeño"
},
"options__3": {
"label": "Grande"
},
"label": "Relación de aspecto de imagen"
},
"color_scheme": {
"options__1": {
"label": "Fondo 1"
},
"options__2": {
"label": "Fondo 2"
},
"options__3": {
"label": "Invertir"
},
"options__4": {
"label": "Acento 1"
},
"options__5": {
"label": "Acento 2"
},
"label": "Esquema de colores"
},
"layout": {
"options__1": {
"label": "Imagen primero"
},
"options__2": {
"label": "Texto primero"
},
"label": "Diseño para computadora",
"info": "La imagen primero es el diseño predeterminado para móviles."
}
},
"blocks": {
"heading": {
"name": "Título",
"settings": {
"heading": {
"label": "Título"
}
}
},
"text": {
"name": "Texto",
"settings": {
"text": {
"label": "Descripción"
}
}
},
"button": {
"name": "Botón",
"settings": {
"button_label": {
"label": "Etiqueta de botón",
"info": "Deja la etiqueta en blanco para ocultar el botón."
},
"button_link": {
"label": "Enlace de botón"
}
}
}
},
"presets": {
"name": "Imagen con texto"
}
},
"main-article": {
"name": "Artículo de blog",
"blocks": {
"featured_image": {
"name": "Imagen destacada",
"settings": {
"image_height": {
"label": "Altura de imagen destacada",
"options__1": {
"label": "Adaptar a la imagen"
},
"options__2": {
"label": "Mediano"
},
"options__3": {
"label": "Grande"
},
"info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 16:9."
}
}
},
"title": {
"name": "Título",
"settings": {
"blog_show_date": {
"label": "Mostrar fecha"
},
"blog_show_author": {
"label": "Mostrar autor"
}
}
},
"content": {
"name": "Contenido"
},
"social_sharing": {
"name": "Botones de compartir en redes sociales"
}
}
},
"main-blog": {
"name": "Artículos de blog",
"settings": {
"header": {
"content": "Tarjeta de artículo de blog"
},
"show_image": {
"label": "Mostrar imagen destacada",
"info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 2:3."
},
"paragraph": {
"content": "Para cambiar extractos, edita tus [artículos de blog.](https://help.shopify.com/es/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
}
},
"blocks": {
"title": {
"name": "Título",
"settings": {
"show_date": {
"label": "Mostrar fecha"
},
"show_author": {
"label": "Mostrar autor"
}
}
},
"summary": {
"name": "Extracto"
},
"link": {
"name": "Enlace"
}
}
},
"main-cart-footer": {
"name": "Subtotal",
"settings": {
"show_cart_note": {
"label": "Habilitar nota del carrito"
}
},
"blocks": {
"subtotal": {
"name": "Precio subtotal"
},
"buttons": {
"name": "Botón de pago"
}
}
},
"main-cart-items": {
"name": "Artículos",
"settings": {
"show_vendor": {
"label": "Mostrar proveedor"
}
}
},
"main-collection-banner": {
"name": "Banner de colección",
"settings": {
"paragraph": {
"content": "Para cambiar descripciones de colecciones o imágenes de colecciones, [edita tus colecciones.](/admin/collections)"
},
"show_collection_description": {
"label": "Mostrar descripción de la colección"
},
"show_collection_image": {
"label": "Mostrar imagen de la colección",
"info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 16:9."
}
}
},
"main-collection-product-grid": {
"name": "Cuadrícula de productos",
"settings": {
"products_per_page": {
"label": "Productos por página"
},
"image_ratio": {
"label": "Relación de aspecto de imagen",
"options__1": {
"label": "Adaptar a la imagen"
},
"options__2": {
"label": "Retrato"
},
"options__3": {
"label": "Cuadrado"
}
},
"show_secondary_image": {
"label": "Mostrar segunda imagen al pasar el cursor"
},
"add_image_padding": {
"label": "Agregar relleno de imagen"
},
"show_vendor": {
"label": "Mostrar proveedor"
},
"enable_tags": {
"label": "Habilitar filtrado",
"info": "[Personalizar filtros](/admin/menus)"
},
"enable_sort": {
"label": "Habilitar ordenado"
},
"enable_filtering": {
"label": "Habilitar filtrado",
"info": "[Personalizar filtros](/admin/menus)"
},
"enable_sorting": {
"label": "Habilitar ordenado"
},
"header__1": {
"content": "Filtrado y ordenado"
},
"header__3": {
"content": "Tarjeta de producto"
}
}
},
"main-list-collections": {
"name": "Página de lista de colecciones",
"settings": {
"title": {
"label": "Título"
},
"sort": {
"label": "Ordenar colecciones por:",
"options__1": {
"label": "Alfabéticamente, A-Z"
},
"options__2": {
"label": "Alfabéticamente, Z-A"
},
"options__3": {
"label": "Fecha: reciente a antigua"
},
"options__4": {
"label": "Fecha: antigua a reciente"
},
"options__5": {
"label": "Recuento de productos, de mayor a menor"
},
"options__6": {
"label": "Recuento de productos, de menor a mayor"
}
},
"image_ratio": {
"label": "Relación de aspecto de imagen",
"options__1": {
"label": "Adaptar a la imagen"
},
"options__2": {
"label": "Retrato"
},
"options__3": {