diff --git a/webshop/templates/includes/macros.html b/webshop/templates/includes/macros.html index 566c164bba..b5030019b1 100644 --- a/webshop/templates/includes/macros.html +++ b/webshop/templates/includes/macros.html @@ -298,11 +298,11 @@

{%- set item_field = field_filter[0] %} {%- set values = field_filter[1] %}
-
{{ item_field.label }}
+
{{ _(item_field.label) }}
{% if values | len > 20 %} - + {% endif %} {% if values %} @@ -316,7 +316,7 @@

data-filter-name="{{ item_field.fieldname }}" data-filter-value="{{ value }}" style="width: 14px !important"> - {{ value }} + {{ _(value) }}

{% endfor %} @@ -331,10 +331,10 @@

{%- macro attribute_filter_section(filters)-%} {% for attribute in filters %}
-
{{ attribute.name }}
+
{{ _(attribute.name) }}
{% if attribute.item_attribute_values | len > 20 %} - + {% endif %} {% if attribute.item_attribute_values %} @@ -349,7 +349,7 @@

data-attribute-value="{{ attr_value }}" style="width: 14px !important" {% if attr_value.checked %} checked {% endif %}> - {{ attr_value }} + {{ _(attr_value) }}

{% endfor %}