traducciones del sitio

This commit is contained in:
f 2021-06-02 15:39:45 -03:00
parent 7f9d24cbd2
commit 30028361b7

25
assets/data/site.json Normal file
View file

@ -0,0 +1,25 @@
---
---
{% comment %}
Genera un site.json con las traducciones del sitio y los datos de los
pasos del carrito. No los extraemos directamente con el filtro
`jsonify` porque extraen demasiada información y el JSON se rompe.
TODO: El contenido de los pasos del carrito no aparece.
{% endcomment %}
{%- assign steps = 'cart,shipment,payment,confirmation' | split: ',' -%}
{
{%- for step in steps %}
{%- assign step_page = site.posts | find: 'layout', step -%}
"{{ step }}": {
{%- for attribute in site.data.layouts[step] -%}
{%- assign attribute_key = attribute[0] -%}
"{{ attribute_key }}": {{ step_page[attribute_key] | jsonify }}{% unless forloop.last %},{% endunless %}
{%- endfor -%}
},
{% endfor %}
"i18n": {{ site.i18n | jsonify }}
}