From f22bc0255e378c421c865cd0fd67eebbf61395e1 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 17 Oct 2023 19:50:13 +0100 Subject: [PATCH] Consistently use blocktranslate --- .../pages/listing/_page_title_column_header.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wagtail/admin/templates/wagtailadmin/pages/listing/_page_title_column_header.html b/wagtail/admin/templates/wagtailadmin/pages/listing/_page_title_column_header.html index 314e89acee..fd1c0db040 100644 --- a/wagtail/admin/templates/wagtailadmin/pages/listing/_page_title_column_header.html +++ b/wagtail/admin/templates/wagtailadmin/pages/listing/_page_title_column_header.html @@ -13,17 +13,17 @@ {% blocktranslate trimmed with title=parent_page.get_admin_display_title %}Search within '{{ title }}'{% endblocktranslate %} {% else %} - {% blocktrans trimmed with title=parent_page.get_admin_display_title %} + {% blocktranslate trimmed with title=parent_page.get_admin_display_title %} {{ start_index }}-{{ end_index }} of {{ result_count }} within '{{ title }}'. - {% endblocktrans %} + {% endblocktranslate %} {% translate "Search the whole site" %} {% endif %} {% else %} - {% blocktrans trimmed %} + {% blocktranslate trimmed %} {{ start_index }}-{{ end_index }} of {{ result_count }} - {% endblocktrans %} + {% endblocktranslate %} {% endif %} {% endwith %} {% endif %}