editorial-autogestiva-jekyll-theme 0.2.8 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -2
- data/_config.yml +73 -0
- data/_data/en.yml +129 -27
- data/_data/es.yml +111 -31
- data/_data/forms/billing_address.yml +71 -0
- data/_data/forms/contacto.yml +2 -2
- data/_data/forms/shipping_address.yml +76 -0
- data/_data/forms/user.yml +11 -0
- data/_data/layouts/book.yml +88 -99
- data/_data/layouts/cart.yml +198 -0
- data/_data/layouts/confirmation.yml +68 -0
- data/_data/layouts/editorial.yml +21 -3
- data/_data/layouts/menu.yml +65 -0
- data/_data/layouts/payment.yml +114 -0
- data/_data/layouts/post.yml +6 -7
- data/_data/layouts/shipment.yml +126 -0
- data/_includes/cart.svg +1 -0
- data/_includes/cart_add.html +8 -0
- data/_includes/cart_controller.html +10 -0
- data/_includes/contact.html +6 -5
- data/_includes/content.html +1 -0
- data/_includes/country.html +53 -0
- data/_includes/editorial.html +24 -30
- data/_includes/file.html +35 -0
- data/_includes/floating_alert.html +6 -0
- data/_includes/footer.html +10 -8
- data/_includes/form/boolean.html +1 -1
- data/_includes/form/content.html +1 -0
- data/_includes/form/email.html +1 -1
- data/_includes/form/file.html +1 -0
- data/_includes/form/hidden.html +1 -1
- data/_includes/form/image.html +1 -0
- data/_includes/form/input.html +1 -1
- data/_includes/form/markdown_content.html +1 -0
- data/_includes/form/number.html +1 -1
- data/_includes/form/predefined_array.html +1 -1
- data/_includes/form/section.html +1 -1
- data/_includes/form/separator.html +1 -1
- data/_includes/form/string.html +1 -1
- data/_includes/form/submit.html +1 -1
- data/_includes/form/tel.html +1 -0
- data/_includes/form/text.html +1 -1
- data/_includes/form/url.html +1 -1
- data/_includes/image.html +32 -0
- data/_includes/input.html +14 -2
- data/_includes/item.html +38 -0
- data/_includes/markdown_content.html +1 -0
- data/_includes/menu.html +27 -0
- data/_includes/navbar.html +29 -25
- data/_includes/notification.html +5 -0
- data/_includes/password.html +1 -0
- data/_includes/picture.html +23 -0
- data/_includes/postal_code.html +45 -0
- data/_includes/preload_font.html +1 -0
- data/_includes/search.html +25 -0
- data/_includes/share.html +22 -0
- data/_includes/share_box.html +16 -0
- data/_includes/state.html +53 -0
- data/_includes/submit.html +1 -1
- data/_includes/tel.html +1 -0
- data/_layouts/book.html +42 -84
- data/_layouts/cart.html +72 -0
- data/_layouts/confirmation.html +17 -0
- data/_layouts/default.html +30 -10
- data/_layouts/home.html +25 -13
- data/_layouts/payment.html +21 -0
- data/_layouts/post.html +5 -5
- data/_layouts/shipment.html +52 -0
- data/_sass/accessibility.scss +37 -0
- data/_sass/editor.scss +8 -0
- data/_sass/embed.scss +5 -0
- data/_sass/floating_alert.scss +10 -0
- data/_sass/helpers.scss +318 -0
- data/_sass/logic.scss +17 -0
- data/_sass/menu.scss +20 -0
- data/_sass/share.html +12 -0
- data/_sass/share_box.html +16 -0
- data/_sass/share_box.scss +26 -0
- data/_sass/snap.scss +58 -0
- data/_sass/toggler.scss +39 -0
- data/assets/css/styles.scss +41 -5
- data/assets/data/site.json +24 -0
- data/assets/fonts/forkawesome-webfont.woff2 +0 -0
- data/assets/js/pack.js +16 -0
- data/assets/js/pack.js.map +1 -0
- data/assets/js/script.js +44 -0
- data/assets/templates/alert.html +7 -0
- data/assets/templates/cart.html +65 -0
- data/assets/templates/payment_methods.html +41 -0
- data/assets/templates/recover_order.html +11 -0
- data/assets/templates/results.html +17 -0
- data/assets/templates/shipping_methods.html +36 -0
- metadata +227 -29
- data/README.md.orig +0 -118
- data/_includes/contact.html.orig +0 -55
- data/_includes/navbar.html.orig +0 -44
- data/_sass/home.scss +0 -22
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
meta:
|
3
|
+
limit: 1
|
4
|
+
help:
|
5
|
+
es: Página de confirmación de compra. Si hay varias se toma la primera de la lista.
|
6
|
+
en: ''
|
7
|
+
title:
|
8
|
+
type: string
|
9
|
+
required: true
|
10
|
+
label:
|
11
|
+
es: Título
|
12
|
+
en: Title
|
13
|
+
help:
|
14
|
+
es: 'Título de la confirmación'
|
15
|
+
en: 'Confirmation page title'
|
16
|
+
default:
|
17
|
+
es: '¡Gracias por tu compra!'
|
18
|
+
en: 'Thank you for your purchase!'
|
19
|
+
content:
|
20
|
+
type: 'content'
|
21
|
+
label:
|
22
|
+
es: 'Contenido'
|
23
|
+
en: 'Content'
|
24
|
+
help:
|
25
|
+
es: 'Puedes agregar información de contacto, tiempos de entrega, etc. aquí.'
|
26
|
+
en: 'You may add contact information, timeframe for delivery, etc. here'
|
27
|
+
default:
|
28
|
+
es: 'En breve te llegará un correo con la información de tu pedido.'
|
29
|
+
en: 'You will receive an email detailing your purchase soon.'
|
30
|
+
permalink:
|
31
|
+
type: 'permalink'
|
32
|
+
required: true
|
33
|
+
label:
|
34
|
+
es: 'Dirección de la página'
|
35
|
+
en: 'Confirmation page address'
|
36
|
+
help:
|
37
|
+
es: 'La dirección de la página de confirmación dentro del sitio'
|
38
|
+
en: 'The address the confirmation page holds within your site'
|
39
|
+
default:
|
40
|
+
es: 'confirmacion/'
|
41
|
+
en: 'confirmation/'
|
42
|
+
back:
|
43
|
+
type: 'string'
|
44
|
+
label:
|
45
|
+
es: 'Volver al sitio'
|
46
|
+
en: 'Back to site'
|
47
|
+
help:
|
48
|
+
es: 'Texto del botón de volver al sitio'
|
49
|
+
en: 'Text for Back to site button'
|
50
|
+
default:
|
51
|
+
es: 'Volver al sitio'
|
52
|
+
en: 'Back to site'
|
53
|
+
draft:
|
54
|
+
type: 'boolean'
|
55
|
+
label:
|
56
|
+
es: 'Borrador'
|
57
|
+
en: 'Draft'
|
58
|
+
help:
|
59
|
+
es: 'Este artículo aun no está listo para publicar'
|
60
|
+
en: "This post isn't ready to be published yet"
|
61
|
+
order:
|
62
|
+
type: 'order'
|
63
|
+
label:
|
64
|
+
es: 'Orden'
|
65
|
+
en: 'Order'
|
66
|
+
help:
|
67
|
+
es: 'La posición del artículo en la lista de artículos'
|
68
|
+
en: 'The post position in the posts list'
|
data/_data/layouts/editorial.yml
CHANGED
@@ -5,12 +5,18 @@ title:
|
|
5
5
|
label:
|
6
6
|
es: 'El nombre del proyecto editorial'
|
7
7
|
en: 'Publisher name'
|
8
|
+
help:
|
9
|
+
es: 'Nombre representativo del proyecto'
|
10
|
+
en: 'A name that represents the publishing project'
|
8
11
|
description:
|
9
12
|
type: 'text'
|
10
13
|
required: true
|
11
14
|
label:
|
12
15
|
es: 'Descripción del proyecto'
|
13
16
|
en: 'Publisher description'
|
17
|
+
help:
|
18
|
+
es: 'Descripción del proyecto editorial'
|
19
|
+
en: 'How would you describe the project?'
|
14
20
|
logo:
|
15
21
|
type: 'image'
|
16
22
|
path:
|
@@ -19,7 +25,7 @@ logo:
|
|
19
25
|
en: 'Publisher logo'
|
20
26
|
help:
|
21
27
|
es: "Resolución recomendada: 1280 pixeles de ancho"
|
22
|
-
en: "Recommended resolution: 1280 pixels
|
28
|
+
en: "Recommended resolution: 1280 pixels wide"
|
23
29
|
description:
|
24
30
|
label:
|
25
31
|
es: 'Descripción del logo'
|
@@ -32,23 +38,35 @@ logo:
|
|
32
38
|
content:
|
33
39
|
type: 'content'
|
34
40
|
label:
|
35
|
-
es: 'Acerca del proyecto
|
36
|
-
en: '
|
41
|
+
es: 'Acerca del proyecto'
|
42
|
+
en: 'About the project'
|
43
|
+
help:
|
44
|
+
es: 'Trayectoria del proyecto, etc'
|
45
|
+
en: 'You could describe your values or trajectory, for example'
|
37
46
|
address:
|
38
47
|
type: 'string'
|
39
48
|
label:
|
40
49
|
es: 'La dirección postal'
|
41
50
|
en: 'Postal address'
|
51
|
+
help:
|
52
|
+
es: 'código postal de la ciudad'
|
53
|
+
en: 'Zip code'
|
42
54
|
locality:
|
43
55
|
type: 'string'
|
44
56
|
label:
|
45
57
|
es: 'Localidad'
|
46
58
|
en: 'Locality'
|
59
|
+
help:
|
60
|
+
es: 'Nombre de la localidad'
|
61
|
+
en: 'Where are you based?'
|
47
62
|
country:
|
48
63
|
type: 'string'
|
49
64
|
label:
|
50
65
|
es: 'País'
|
51
66
|
en: 'Country name'
|
67
|
+
help:
|
68
|
+
es: 'Nombre del país'
|
69
|
+
en: 'Name of the country'
|
52
70
|
social_networks:
|
53
71
|
type: 'array'
|
54
72
|
label:
|
@@ -0,0 +1,65 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
type: 'string'
|
4
|
+
required: true
|
5
|
+
label:
|
6
|
+
en: 'Item name'
|
7
|
+
es: 'Nombre del ítem'
|
8
|
+
help:
|
9
|
+
en: 'Exactly as you want it to appear in the menu'
|
10
|
+
es: 'Tal como aparece en el menú'
|
11
|
+
post:
|
12
|
+
type: 'belongs_to'
|
13
|
+
label:
|
14
|
+
en: 'Article'
|
15
|
+
es: 'Artículo'
|
16
|
+
help:
|
17
|
+
en: 'If the menu item leads to a single article, link it here'
|
18
|
+
es: 'Si el ítem lleva a un artículo fijo, asociarlo aquí'
|
19
|
+
item:
|
20
|
+
type: 'belongs_to'
|
21
|
+
inverse: items
|
22
|
+
filter:
|
23
|
+
layout: menu
|
24
|
+
label:
|
25
|
+
en: 'Previous item'
|
26
|
+
es: 'Ítem anterior'
|
27
|
+
help:
|
28
|
+
en: 'If sub item, associate parent item here'
|
29
|
+
es: 'Si es un sub ítem, asociar el ítem superior aquí'
|
30
|
+
items:
|
31
|
+
type: 'has_many'
|
32
|
+
inverse: item
|
33
|
+
filter:
|
34
|
+
layout: menu
|
35
|
+
label:
|
36
|
+
en: 'Sub items'
|
37
|
+
es: 'Sub ítems'
|
38
|
+
help:
|
39
|
+
en: 'If item has sub items, associate them here'
|
40
|
+
es: 'Si el ítem tiene sub ítems, asociarlos aquí'
|
41
|
+
link:
|
42
|
+
type: 'url'
|
43
|
+
label:
|
44
|
+
en: 'Link'
|
45
|
+
es: 'Vínculo'
|
46
|
+
help:
|
47
|
+
en: 'If item leads to a page or special section, associate here with full address'
|
48
|
+
es: 'Si el ítem lleva a una página o sección especial, asociarla aquí colando la dirección completa'
|
49
|
+
draft:
|
50
|
+
type: 'boolean'
|
51
|
+
label:
|
52
|
+
es: 'Borrador'
|
53
|
+
en: 'Draft'
|
54
|
+
help:
|
55
|
+
es: 'Este artículo aun no está listo para publicar'
|
56
|
+
en: "This post isn't ready to be published yet"
|
57
|
+
order:
|
58
|
+
type: 'order'
|
59
|
+
required: true
|
60
|
+
label:
|
61
|
+
es: 'Orden'
|
62
|
+
en: 'Order'
|
63
|
+
help:
|
64
|
+
es: 'La posición del artículo en la lista de artículos'
|
65
|
+
en: 'The post position in the posts list'
|
@@ -0,0 +1,114 @@
|
|
1
|
+
---
|
2
|
+
meta:
|
3
|
+
limit: 1
|
4
|
+
help:
|
5
|
+
en: 'Página de confirmación de pago. Si hay varias se usa la primera de la lista.'
|
6
|
+
es: 'Confirmation of payment page. If there are several, the first in list will be used.'
|
7
|
+
title:
|
8
|
+
type: string
|
9
|
+
required: true
|
10
|
+
label:
|
11
|
+
es: Título
|
12
|
+
en: Title
|
13
|
+
help:
|
14
|
+
es: 'El título de la página de medios de pago'
|
15
|
+
en: 'Title for payment options page'
|
16
|
+
default:
|
17
|
+
es: 'Medios de pago'
|
18
|
+
en: 'Payment options'
|
19
|
+
content:
|
20
|
+
type: 'content'
|
21
|
+
label:
|
22
|
+
es: 'Contenido'
|
23
|
+
en: 'Content'
|
24
|
+
help:
|
25
|
+
es: 'Puedes agregar texto opcional aquí'
|
26
|
+
en: 'You may add optional text here'
|
27
|
+
total:
|
28
|
+
type: 'string'
|
29
|
+
required: true
|
30
|
+
label:
|
31
|
+
es: 'Total'
|
32
|
+
en: 'Total'
|
33
|
+
help:
|
34
|
+
es: 'El precio total de la compra'
|
35
|
+
en: 'Total price'
|
36
|
+
default:
|
37
|
+
es: 'Total'
|
38
|
+
en: 'Total'
|
39
|
+
special_instructions:
|
40
|
+
type: 'string'
|
41
|
+
required: true
|
42
|
+
label:
|
43
|
+
es: 'Instrucciones especiales'
|
44
|
+
en: 'Special instructions'
|
45
|
+
help:
|
46
|
+
es: ''
|
47
|
+
en: 'Title text for Special instructions section'
|
48
|
+
default:
|
49
|
+
es: 'Instrucciones especiales'
|
50
|
+
en: 'Special instructions'
|
51
|
+
special_instructions_help:
|
52
|
+
type: 'string'
|
53
|
+
required: true
|
54
|
+
label:
|
55
|
+
es: 'Ayuda de las instrucciones especiales'
|
56
|
+
en: 'Help for special instructions section'
|
57
|
+
help:
|
58
|
+
es: ''
|
59
|
+
en: 'You might want to give examples of special instructions that can be added'
|
60
|
+
default:
|
61
|
+
es: 'Horas específicas de entrega, etc.'
|
62
|
+
en: 'Specific delivery hours, etc.'
|
63
|
+
permalink:
|
64
|
+
type: 'permalink'
|
65
|
+
required: true
|
66
|
+
label:
|
67
|
+
es: 'Dirección de la página'
|
68
|
+
en: 'Payment page address'
|
69
|
+
help:
|
70
|
+
es: 'La dirección de la página de medios de pago dentro del sitio'
|
71
|
+
en: 'The address the payment page hold within the site url'
|
72
|
+
default:
|
73
|
+
es: 'pago/'
|
74
|
+
en: 'payment/'
|
75
|
+
back:
|
76
|
+
type: 'string'
|
77
|
+
required: true
|
78
|
+
label:
|
79
|
+
es: 'Volver a métodos de envío'
|
80
|
+
en: 'Back to shipping options'
|
81
|
+
help:
|
82
|
+
es: 'Nombre del botón para volver a los métodos de envío'
|
83
|
+
en: 'Button text for Back to shipping options'
|
84
|
+
default:
|
85
|
+
es: 'Volver al métodos de envío'
|
86
|
+
en: 'Back to shipping options'
|
87
|
+
next_step:
|
88
|
+
type: 'string'
|
89
|
+
required: true
|
90
|
+
label:
|
91
|
+
es: 'Siguiente paso'
|
92
|
+
en: 'Next step'
|
93
|
+
help:
|
94
|
+
es: 'Texto del botón de pasar al siguiente paso de la compra (el pago)'
|
95
|
+
en: 'Text for next step in purchase button'
|
96
|
+
default:
|
97
|
+
es: 'Pagar'
|
98
|
+
en: 'Checkout'
|
99
|
+
draft:
|
100
|
+
type: 'boolean'
|
101
|
+
label:
|
102
|
+
es: 'Borrador'
|
103
|
+
en: 'Draft'
|
104
|
+
help:
|
105
|
+
es: 'Este artículo aun no está listo para publicar'
|
106
|
+
en: "This post isn't ready to be published yet"
|
107
|
+
order:
|
108
|
+
type: 'order'
|
109
|
+
label:
|
110
|
+
es: 'Orden'
|
111
|
+
en: 'Order'
|
112
|
+
help:
|
113
|
+
es: 'La posición del artículo en la lista de artículos'
|
114
|
+
en: 'The post position in the posts list'
|
data/_data/layouts/post.yml
CHANGED
@@ -7,7 +7,7 @@ title:
|
|
7
7
|
en: 'Post title'
|
8
8
|
help:
|
9
9
|
es: '¡Un título que invite a leer el artículo!'
|
10
|
-
en: 'A title that
|
10
|
+
en: 'A title that makes people want to read the post!'
|
11
11
|
description:
|
12
12
|
type: 'text'
|
13
13
|
required: true
|
@@ -22,8 +22,8 @@ description:
|
|
22
22
|
contenido, para que las personas puedan determinar cuándo quieren
|
23
23
|
abrirlo.
|
24
24
|
en: |
|
25
|
-
Summary of
|
26
|
-
engines.
|
25
|
+
Summary of post content, also used by social media and search
|
26
|
+
engines. If the post is about violence and other sensitive
|
27
27
|
topics, we invite you to use it as a content warning, so others
|
28
28
|
can decide when they want to read it.
|
29
29
|
author:
|
@@ -33,7 +33,7 @@ author:
|
|
33
33
|
en: 'Authors'
|
34
34
|
help:
|
35
35
|
es: 'Quiénes participaron en la escritura de este artículo'
|
36
|
-
en: 'Who
|
36
|
+
en: 'Who participated in writing this post?'
|
37
37
|
image:
|
38
38
|
type: 'image'
|
39
39
|
path:
|
@@ -65,7 +65,7 @@ content:
|
|
65
65
|
en: 'Post content'
|
66
66
|
help:
|
67
67
|
es: 'Escribe aquí el artículo'
|
68
|
-
en: 'Write
|
68
|
+
en: 'Write your post here'
|
69
69
|
permalink:
|
70
70
|
type: 'string'
|
71
71
|
label:
|
@@ -85,7 +85,7 @@ categories:
|
|
85
85
|
en: 'Categories'
|
86
86
|
help:
|
87
87
|
es: 'Ayudan a organizar los artículos en temas'
|
88
|
-
en: 'Use categories to
|
88
|
+
en: 'Use categories to group posts by theme'
|
89
89
|
tags:
|
90
90
|
type: 'array'
|
91
91
|
label:
|
@@ -110,4 +110,3 @@ order:
|
|
110
110
|
help:
|
111
111
|
es: 'La posición del artículo en la lista de artículos'
|
112
112
|
en: 'The post position in the posts list'
|
113
|
-
---
|
@@ -0,0 +1,126 @@
|
|
1
|
+
---
|
2
|
+
meta:
|
3
|
+
limit: 1
|
4
|
+
help:
|
5
|
+
en: 'Página del proceso de envío. Si hay varias se toma la primera de la lista.'
|
6
|
+
es: 'Shipment page. If there are several, the first in the list will be used.'
|
7
|
+
title:
|
8
|
+
type: string
|
9
|
+
required: true
|
10
|
+
label:
|
11
|
+
es: Título
|
12
|
+
en: Title
|
13
|
+
help:
|
14
|
+
es: 'El título de la página de envío'
|
15
|
+
en: 'Title for Shipment page'
|
16
|
+
default:
|
17
|
+
es: 'Envío'
|
18
|
+
en: 'Shipment'
|
19
|
+
content:
|
20
|
+
type: 'content'
|
21
|
+
label:
|
22
|
+
es: 'Contenido'
|
23
|
+
en: 'Content'
|
24
|
+
help:
|
25
|
+
es: 'Podés agregar instrucciones, demora en las entregas, etc. aquí'
|
26
|
+
en: 'You can add instructions, shipping delay announcements, etc. here'
|
27
|
+
user:
|
28
|
+
type: 'string'
|
29
|
+
required: true
|
30
|
+
label:
|
31
|
+
es: 'Cuenta'
|
32
|
+
en: 'User'
|
33
|
+
help:
|
34
|
+
es: 'Subtítulo de contacto'
|
35
|
+
en: 'Contact subtitle'
|
36
|
+
default:
|
37
|
+
es: 'Contacto'
|
38
|
+
en: 'Contact'
|
39
|
+
shipping_address:
|
40
|
+
type: 'string'
|
41
|
+
required: true
|
42
|
+
label:
|
43
|
+
es: 'Subtítulo de la dirección de envío'
|
44
|
+
en: 'Shipping address subtitle'
|
45
|
+
help:
|
46
|
+
es: 'Texto para subtítulo de Dirección de envío'
|
47
|
+
en: 'Text for Shipping address subtitle'
|
48
|
+
default:
|
49
|
+
es: 'Dirección de envío'
|
50
|
+
en: 'Shipping address'
|
51
|
+
shipping_methods:
|
52
|
+
type: 'string'
|
53
|
+
required: true
|
54
|
+
label:
|
55
|
+
es: 'Subtítulo de métodos de envío'
|
56
|
+
en: 'Shipping options subtitle'
|
57
|
+
help:
|
58
|
+
es: 'Texto para subtítulo de métodos de envío'
|
59
|
+
en: 'Text for shipping options subtitle'
|
60
|
+
default:
|
61
|
+
es: 'Métodos de envío'
|
62
|
+
en: 'Shipping options'
|
63
|
+
shipping_methods_help:
|
64
|
+
type: 'text'
|
65
|
+
required: true
|
66
|
+
label:
|
67
|
+
es: 'Ayuda para los métodos de envío'
|
68
|
+
en: 'Help text for shipping options'
|
69
|
+
help:
|
70
|
+
es: 'El texto de la sección'
|
71
|
+
en: 'Help the client choose a shipping method'
|
72
|
+
default:
|
73
|
+
es: 'Completa la dirección de entrega para calcular los métodos de envío.'
|
74
|
+
en: 'Complete your shipping address to calculate available shipping methods.'
|
75
|
+
back:
|
76
|
+
type: 'string'
|
77
|
+
required: true
|
78
|
+
label:
|
79
|
+
es: 'Volver al carrito'
|
80
|
+
en: 'Back to cart'
|
81
|
+
help:
|
82
|
+
es: 'Nombre del botón para volver al carrito'
|
83
|
+
en: 'Text for Back to cart button'
|
84
|
+
default:
|
85
|
+
es: 'Volver al carrito'
|
86
|
+
en: 'Back to cart'
|
87
|
+
next_step:
|
88
|
+
type: 'string'
|
89
|
+
required: true
|
90
|
+
label:
|
91
|
+
es: 'Siguiente paso'
|
92
|
+
en: 'Next step'
|
93
|
+
help:
|
94
|
+
es: 'Texto del botón de pasar al siguiente paso de la compra (el pago)'
|
95
|
+
en: 'Text for next step button'
|
96
|
+
default:
|
97
|
+
es: 'Pagar'
|
98
|
+
en: 'Payment'
|
99
|
+
permalink:
|
100
|
+
type: 'permalink'
|
101
|
+
required: true
|
102
|
+
label:
|
103
|
+
es: 'Dirección de la página'
|
104
|
+
en: 'Shipment page address'
|
105
|
+
help:
|
106
|
+
es: 'La dirección de la página del carrito dentro del sitio'
|
107
|
+
en: 'The address this page has inside the site url'
|
108
|
+
default:
|
109
|
+
es: 'envio/'
|
110
|
+
en: 'shipment/'
|
111
|
+
draft:
|
112
|
+
type: 'boolean'
|
113
|
+
label:
|
114
|
+
es: 'Borrador'
|
115
|
+
en: 'Draft'
|
116
|
+
help:
|
117
|
+
es: 'Este artículo aun no está listo para publicar'
|
118
|
+
en: "This post isn't ready to be published yet"
|
119
|
+
order:
|
120
|
+
type: 'order'
|
121
|
+
label:
|
122
|
+
es: 'Orden'
|
123
|
+
en: 'Order'
|
124
|
+
help:
|
125
|
+
es: 'La posición del artículo en la lista de artículos'
|
126
|
+
en: 'The post position in the posts list'
|