From 901d227ec97d13f898ed35936878b278ea487258 Mon Sep 17 00:00:00 2001 From: mahsem <137205921+mahsem@users.noreply.github.com> Date: Sun, 23 Jun 2024 13:48:37 +0200 Subject: [PATCH] fix: filter translation in index.html fix: filter translation in index.html --- webshop/www/all-products/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webshop/www/all-products/index.html b/webshop/www/all-products/index.html index 026bf38f26..cbd76632b6 100644 --- a/webshop/www/all-products/index.html +++ b/webshop/www/all-products/index.html @@ -1,9 +1,9 @@ {% from "webshop/templates/includes/macros.html" import attribute_filter_section, field_filter_section, discount_range_filters %} {% extends "templates/web.html" %} -{% block title %}{{ _('All Products') }}{% endblock %} +{% block title %}{{ _("All Products") }}{% endblock %} {% block header %} -
{{ _('All Products') }}
+
{{ _("All Products") }}
{% endblock header %} {% block page_content %} @@ -22,12 +22,12 @@ {% if field_filters %} - {{ field_filter_section(field_filters) }} + {{ _(field_filter_section(field_filters)) }} {% endif %} {% if attribute_filters %} - {{ attribute_filter_section(attribute_filters) }} + {{ _(attribute_filter_section(attribute_filters)) }} {% endif %}