Audit all uses of localized/unlocalized numbers in templates

Address bugs caused by the `USE_THOUSAND_SEPARATOR=True` setting inserting commas where they are invalid, such as image width/height attributes. All numbers output on templates are now passed through one of `|unlocalize` (for numbers that must never have separators), `|intcomma` (for numbers displayed to users which should always include separators) or `|localize` (for when the choice is delegated to the project-wide setting).
pull/12216/head
Matt Westcott 2024-08-22 12:19:01 +01:00
rodzic cbf06df4eb
commit 85c0047268
48 zmienionych plików z 253 dodań i 153 usunięć

Wyświetl plik

@ -1,2 +1,2 @@
{% load i18n %}
<input {% if parent %}data-bulk-action-parent-id="{{ parent }}"{% endif %} data-bulk-action-select-all-checkbox type="checkbox" aria-label="{{ _('Select all') }}"/>
{% load i18n l10n %}
<input {% if parent %}data-bulk-action-parent-id="{{ parent|unlocalize }}"{% endif %} data-bulk-action-select-all-checkbox type="checkbox" aria-label="{{ _('Select all') }}"/>

Wyświetl plik

@ -1,11 +1,13 @@
{% load i18n wagtailadmin_tags %}
<h2 role="alert">
{% blocktrans trimmed count counter=pages.paginator.count %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches
{% endblocktrans %}
{% with counter_val=pages.paginator.count %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches
{% endblocktrans %}
{% endwith %}
</h2>
{% if pages %}

Wyświetl plik

@ -4,11 +4,13 @@
{% if is_searching %}
{% block search_results_count %}
<h2 role="alert">
{% blocktrans trimmed count counter=results.paginator.count %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches
{% endblocktrans %}
{% with result_count=results.paginator.count %}
{% blocktrans trimmed with counter=result_count|intcomma count counter_val=result_count %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches
{% endblocktrans %}
{% endwith %}
</h2>
{% endblock %}
{% else %}

Wyświetl plik

@ -15,7 +15,7 @@
{% elif is_searching or is_filtering %}
<div class="nice-padding">
<h2 role="alert">
{% blocktrans trimmed count counter=items_count %}
{% blocktrans trimmed with counter=items_count|intcomma count counter_val=items_count %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches

Wyświetl plik

@ -1,5 +1,5 @@
{% extends "wagtailadmin/generic/base.html" %}
{% load i18n wagtailadmin_tags %}
{% load i18n wagtailadmin_tags l10n %}
{% block main_content %}
{% block fields_output %}
@ -11,7 +11,7 @@
{% if field.component %}
{% component field.component %}
{% else %}
{{ field.value }}
{{ field.value|localize }}
{% endif %}
</dd>
{% endfor %}

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Delete 1 page {% plural %}Delete {{ counter }} pages{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Delete 1 page {% plural %}Delete {{ counter }} pages{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% include "wagtailadmin/shared/header.html" with title=_("Delete") icon="doc-empty-inverse" %}
@ -16,11 +20,13 @@
<a href="{% url 'wagtailadmin_pages:edit' page.item.id %}" target="_blank" rel="noreferrer">{{ page.item.get_admin_display_title }}</a>
{% if page.descendant_count %}
<p>
{% blocktrans trimmed count counter=page.descendant_count %}
This will also delete one more subpage.
{% plural %}
This will also delete {{ counter }} more subpages.
{% endblocktrans %}
{% with counter_val=page.descendant_count %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}
This will also delete one more subpage.
{% plural %}
This will also delete {{ counter }} more subpages.
{% endblocktrans %}
{% endwith %}
</p>
{% endif %}
</li>

Wyświetl plik

@ -1,7 +1,10 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Move 1 page{% plural %}Move {{ counter }} pages{% endblocktrans %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Move 1 page{% plural %}Move {{ counter }} pages{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
@ -17,11 +20,13 @@
<a href="{% url 'wagtailadmin_pages:edit' page.item.id %}" target="_blank" rel="noreferrer">{{ page.item.get_admin_display_title }}</a>
{% if not page.item.is_leaf %}
<p>
{% blocktrans trimmed count counter=page.child_pages %}
This page has one child page
{% plural %}
This page has {{ counter }} child pages
{% endblocktrans %}
{% with counter_val=page.child_pages %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}
This page has one child page
{% plural %}
This page has {{ counter }} child pages
{% endblocktrans %}
{% endwith %}
</p>
{% endif %}
</li>

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Publish 1 page {% plural %}Publish {{ counter }} pages{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Publish 1 page {% plural %}Publish {{ counter }} pages{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% include "wagtailadmin/shared/header.html" with title=_("Publish") icon="doc-empty-inverse" %}
@ -14,15 +18,17 @@
{% for page in items %}
<li>
<a href="{% url 'wagtailadmin_pages:edit' page.item.id %}" target="_blank" rel="noreferrer">{{ page.item.get_admin_display_title }}</a>
{% if page.draft_descendant_count %}
<p>
{% blocktrans trimmed count counter=page.draft_descendant_count %}
This page has one unpublished subpage
{% plural %}
This page has {{ counter }} unpublished subpages
{% endblocktrans %}
</p>
{% endif %}
{% with draft_descendant_count=page.draft_descendant_count %}
{% if draft_descendant_count %}
<p>
{% blocktrans trimmed with counter=draft_descendant_count|intcomma count counter_val=draft_descendant_count %}
This page has one unpublished subpage
{% plural %}
This page has {{ counter }} unpublished subpages
{% endblocktrans %}
</p>
{% endif %}
{% endwith %}
</li>
{% endfor %}
</ul>

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Unpublish 1 page {% plural %}Unpublish {{ counter }} pages{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Unpublish 1 page {% plural %}Unpublish {{ counter }} pages{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% include "wagtailadmin/shared/header.html" with title=_("Unpublish") icon="doc-empty-inverse" %}
@ -15,13 +19,15 @@
<li>
<a href="{% url 'wagtailadmin_pages:edit' page.item.id %}" target="_blank" rel="noreferrer">{{ page.item.get_admin_display_title }}</a>
<p>
{% if page.live_descendant_count %}
{% blocktrans trimmed count counter=page.live_descendant_count %}
This page has one subpage
{% plural %}
This page has {{ counter }} subpages
{% endblocktrans %}
{% endif %}
{% with live_descendant_count=page.live_descendant_count %}
{% if live_descendant_count %}
{% blocktrans trimmed with counter=live_descendant_count|intcomma count counter_val=live_descendant_count %}
This page has one subpage
{% plural %}
This page has {{ counter }} subpages
{% endblocktrans %}
{% endif %}
{% endwith %}
</p>
</li>
{% endfor %}

Wyświetl plik

@ -12,7 +12,7 @@
{% trans 'Are you sure you want to delete this page?' %}
{% if descendant_count %}
{% blocktrans trimmed count counter=descendant_count %}
{% blocktrans trimmed with counter=descendant_count descendant_count=descendant_count|intcomma count counter=counter %}
Deleting this page will also delete {{ descendant_count }} child page.
{% plural %}
Deleting this page will also delete {{ descendant_count }} more child pages.
@ -21,20 +21,20 @@
{% if translation_count %} {# has translations #}
{% if translation_descendant_count %} {# has translations with descendants #}
{% if translation_count == 1 %}
{% blocktrans trimmed count counter=translation_descendant_count %}
{% blocktrans trimmed with counter=translation_descendant_count translation_descendant_count=translation_descendant_count|intcomma count counter=counter %}
It will also delete 1 translation and its combined {{ translation_descendant_count }} translated child page.
{% plural %}
It will also delete 1 translation and its combined {{ translation_descendant_count }} translated child pages.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed count counter=translation_descendant_count %}
{% blocktrans trimmed with counter=translation_descendant_count translation_count=translation_count|intcomma translation_descendant_count=translation_descendant_count|intcomma count counter=counter %}
It will also delete {{ translation_count }} translations and their combined {{ translation_descendant_count }} translated child page.
{% plural %}
It will also delete {{ translation_count }} translations and their combined {{ translation_descendant_count }} translated child pages.
{% endblocktrans %}
{% endif %}
{% else %}
{% blocktrans trimmed count counter=translation_count %}
{% blocktrans trimmed with counter=translation_count translation_count=translation_count|intcomma count counter=counter %}
It will also delete {{ translation_count }} translation.
{% plural %}
It will also delete {{ translation_count }} translations.
@ -44,20 +44,20 @@
{% elif translation_count %} {# no descendants #}
{% if translation_descendant_count %} {# has translations with descendants #}
{% if translation_count == 1 %}
{% blocktrans trimmed count counter=translation_descendant_count %}
{% blocktrans trimmed with counter=translation_descendant_count translation_descendant_count=translation_descendant_count|intcomma count counter=counter %}
Deleting this page will also delete 1 translation and its combined {{ translation_descendant_count }} translated child page.
{% plural %}
Deleting this page will also delete 1 translation and its combined {{ translation_descendant_count }} translated child pages.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed count counter=translation_descendant_count %}
{% blocktrans trimmed with counter=translation_descendant_count translation_count=translation_count|intcomma translation_descendant_count=translation_descendant_count|intcomma count counter=counter%}
Deleting this page will also delete {{ translation_count }} translations and their combined {{ translation_descendant_count }} translated child page.
{% plural %}
Deleting this page will also delete {{ translation_count }} translations and their combined {{ translation_descendant_count }} translated child pages.
{% endblocktrans %}
{% endif %}
{% else %}
{% blocktrans trimmed count counter=translation_count %}
{% blocktrans trimmed with counter=translation_count descendant_count=descendant_count|intcomma translation_count=translation_count|intcomma count counter=counter %}
Deleting this page will also delete {{ translation_count }} translation of this page.
{% plural %}
This will also delete {{ descendant_count }} more child pages.
@ -71,7 +71,7 @@
{% csrf_token %}
{% if confirm_before_delete %}
<p id="id_confirm_site_name-warning" class="status-msg warning">
{% blocktrans trimmed with total_pages=descendant_count|add:1 %}
{% blocktrans trimmed with total_pages=descendant_count|add:1|intcomma %}
This action will delete total <b>{{ total_pages }}</b> pages.
{% endblocktrans %}
</p>

Wyświetl plik

@ -1,5 +1,5 @@
{% extends "wagtailadmin/base.html" %}
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed with title=page_to_move.get_admin_display_title %}Move {{ title }}{% endblocktrans %}{% endblock %}
{% block content %}
{% include "wagtailadmin/shared/header.html" with title=_("Move") subtitle=page_to_move.get_admin_display_title icon="doc-empty-inverse" %}
@ -12,7 +12,7 @@
{% blocktrans trimmed with title=destination.get_admin_display_title %}Are you sure you want to move this page and all of its children into '{{ title }}'?{% endblocktrans %}
{% endif %}
{% if translations_to_move_count %}
{% blocktrans trimmed count counter=translations_to_move_count %}
{% blocktrans trimmed with counter=translations_to_move_count translations_to_move_count=translations_to_move_count|intcomma count counter=counter %}
This will also move one translation of this page and its child pages
{% plural %}
This will also move {{ translations_to_move_count }} translations of this page and their child pages

Wyświetl plik

@ -5,7 +5,7 @@
<p>
{% trans "Are you sure you want to unpublish this page?" %}
{% if translation_count %}
{% blocktrans trimmed with translation_count=translation_count count counter=translation_count %}
{% blocktrans trimmed with counter=translation_count translation_count=translation_count|intcomma count counter=counter %}
This will also unpublish one translation of the page.
{% plural %}
This will also unpublish all {{ translation_count }} translations of the page.
@ -21,20 +21,20 @@
{% fragment as text %}
{% if translation_descendant_count %}
{% if translation_descendant_count == 1 %}
{% blocktrans trimmed count counter=live_descendant_count %}
{% blocktrans trimmed with counter=live_descendant_count live_descendant_count=live_descendant_count|intcomma count counter=counter %}
This page has one subpage and its translations have a combined one translated child page. Unpublish these too
{% plural %}
This page has {{ live_descendant_count }} child pages and its translations have a combined one translated child page. Unpublish these too
{% endblocktrans %}
{% else %}
{% blocktrans trimmed count counter=live_descendant_count %}
{% blocktrans trimmed with counter=live_descendant_count live_descendant_count=live_descendant_count|intcomma translation_descendant_count=translation_descendant_count|intcomma count counter=counter %}
This page has one child page and its translations have a combined {{ translation_descendant_count }} translated child pages. Unpublish these too
{% plural %}
This page has {{ live_descendant_count }} child pages and its translations have a combined {{ translation_descendant_count }} translated child pages. Unpublish these too
{% endblocktrans %}
{% endif %}
{% else %}
{% blocktrans trimmed count counter=live_descendant_count %}
{% blocktrans trimmed with counter=live_descendant_count live_descendant_count=live_descendant_count|intcomma count counter=counter %}
This page has one subpage. Unpublish this too
{% plural %}
This page has {{ live_descendant_count }} subpages. Unpublish these too

Wyświetl plik

@ -11,7 +11,7 @@
<span class="w-sr-only">
{% trans 'Drag' %}
<span>
{% blocktranslate trimmed with index=row.index|add:1 total=table.row_count %}Item {{ index }} of {{ total }}{% endblocktranslate %}
{% blocktranslate trimmed with index=row.index|add:1|intcomma total=table.row_count|intcomma %}Item {{ index }} of {{ total }}{% endblocktranslate %}
</span>
</span>
</button>

Wyświetl plik

@ -4,7 +4,7 @@
{% block after_label %}
{% if result_scope == "whole_tree" %}
{% if items_count %}
{% blocktranslate trimmed %}
{% blocktranslate trimmed with start_index=start_index|intcomma end_index=end_index|intcomma items_count=items_count|intcomma %}
{{ start_index }}-{{ end_index }} of {{ items_count }} across entire site.
{% endblocktranslate %}
{% else %}
@ -17,7 +17,7 @@
</a>
{% elif result_scope == "parent" %}
{% if items_count %}
{% blocktranslate trimmed with title=parent_page.get_admin_display_title %}
{% blocktranslate trimmed with title=parent_page.get_admin_display_title start_index=start_index|intcomma end_index=end_index|intcomma items_count=items_count|intcomma %}
{{ start_index }}-{{ end_index }} of {{ items_count }} in '<span class="w-title-ellipsis">{{ title }}</span>'.
{% endblocktranslate %}
{% else %}
@ -29,7 +29,7 @@
{% translate "Search the whole site" %}
</a>
{% else %}
{% blocktranslate trimmed %}
{% blocktranslate trimmed with start_index=start_index|intcomma end_index=end_index|intcomma items_count=items_count|intcomma %}
{{ start_index }}-{{ end_index }} of {{ items_count }}
{% endblocktranslate %}
{% endif %}

Wyświetl plik

@ -1,17 +1,17 @@
{% load i18n wagtailadmin_tags %}
{% load i18n wagtailadmin_tags l10n %}
{% comment %}
Pagination for page listings. Used by the `{% paginate %}` template tag.
{% endcomment %}
<nav class="pagination" aria-label="{% trans 'Pagination' %}">
<p>{% blocktrans trimmed with page_number=page.number num_pages=paginator.num_pages %}
<p>{% blocktrans trimmed with page_number=page.number|intcomma num_pages=paginator.num_pages|intcomma %}
Page {{ page_number }} of {{ num_pages }}.
{% endblocktrans %}</p>
<ul>
<li class="prev">
{% if page.has_previous %}
<a data-page="{{ page.previous_page_number }}" href="{{ base_url }}{% pagination_querystring page.previous_page_number page_key=page_key %}" class="{{ classname }}">
<a data-page="{{ page.previous_page_number|unlocalize }}" href="{{ base_url }}{% pagination_querystring page.previous_page_number page_key=page_key %}" class="{{ classname }}">
{% icon name="arrow-left" classname="default" %}
{% trans "Previous" %}
</a>
@ -19,7 +19,7 @@ Pagination for page listings. Used by the `{% paginate %}` template tag.
</li>
<li class="next">
{% if page.has_next %}
<a data-page="{{ page.next_page_number }}" href="{{ base_url }}{% pagination_querystring page.next_page_number page_key=page_key %}" class="{{ classname }}">
<a data-page="{{ page.next_page_number|unlocalize }}" href="{{ base_url }}{% pagination_querystring page.next_page_number page_key=page_key %}" class="{{ classname }}">
{% trans "Next" %}
{% icon name="arrow-right" classname="default" %}
</a>

Wyświetl plik

@ -2,11 +2,13 @@
<div class="nice-padding">
{% if pages %}
<h2 role="alert">
{% blocktrans trimmed count counter=all_pages.count %}
There is one matching page
{% plural %}
There are {{ counter }} matching pages
{% endblocktrans %}
{% with page_count=all_pages.count %}
{% blocktrans trimmed with counter=page_count|intcomma count counter_val=page_count %}
There is one matching page
{% plural %}
There are {{ counter }} matching pages
{% endblocktrans %}
{% endwith %}
</h2>
{% search_other %}
@ -16,16 +18,16 @@
<h3 id="page-types-title" class="filter-title">{% trans "Page types" %}</h3>
<ul class="filter-options">
{% if not selected_content_type %}
<li class="w-bg-border-furniture">{% trans "All" %} ({{ all_pages.count }})</li>
<li class="w-bg-border-furniture">{% trans "All" %} ({{ all_pages.count|intcomma }})</li>
{% else %}
<li><a href="{% url 'wagtailadmin_pages:search' %}?q={{ query_string|urlencode }}">{% trans "All" %} ({{ all_pages.count }})</a></li>
<li><a href="{% url 'wagtailadmin_pages:search' %}?q={{ query_string|urlencode }}">{% trans "All" %} ({{ all_pages.count|intcomma }})</a></li>
{% endif %}
{% for content_type, count in content_types %}
{% if content_type == selected_content_type %}
<li class="w-bg-border-furniture">{{ content_type.model_class.get_verbose_name }} ({{ count }})</li>
<li class="w-bg-border-furniture">{{ content_type.model_class.get_verbose_name }} ({{ count|intcomma }})</li>
{% else %}
<li><a href="{% url 'wagtailadmin_pages:search' %}?q={{ query_string|urlencode }}&amp;content_type={{ content_type.app_label }}.{{ content_type.model|lower }}">{{ content_type.model_class.get_verbose_name }} ({{ count }})</a></li>
<li><a href="{% url 'wagtailadmin_pages:search' %}?q={{ query_string|urlencode }}&amp;content_type={{ content_type.app_label }}.{{ content_type.model|lower }}">{{ content_type.model_class.get_verbose_name }} ({{ count|intcomma }})</a></li>
{% endif %}
{% endfor %}
</ul>

Wyświetl plik

@ -42,9 +42,9 @@
</td>
<td class="count" valign="top">
{% if page_type.count > 0 %}
<a href="{% url 'wagtailadmin_pages:type_use' content_type_app_name=page_type.app_label content_type_model_name=page_type.model %}">{{ page_type.count }}</a>
<a href="{% url 'wagtailadmin_pages:type_use' content_type_app_name=page_type.app_label content_type_model_name=page_type.model %}">{{ page_type.count|intcomma }}</a>
{% else %}
{{ page_type.count }}
{{ page_type.count|intcomma }}
{% endif %}
</td>
<td class="last-edited-page" valign="top">

Wyświetl plik

@ -36,7 +36,7 @@
<input type="checkbox" name="is_editing" value="1" data-w-session-target="unsavedChanges" hidden />
{% if revision_id %}
{# The ID of the latest revision that was known when this module was initially loaded #}
<input type="hidden" name="revision_id" value="{{ revision_id }}" />
<input type="hidden" name="revision_id" value="{{ revision_id|unlocalize }}" />
{% endif %}
<div id="w-editing-sessions">
{% component sessions_list %}

Wyświetl plik

@ -1,5 +1,6 @@
{# Render a single checkbox with text center-aligned. #}
{% load l10n %}
<label class="w-flex w-items-center {{ label_classname }}">
<input type="checkbox" name="{{ name }}"{% if value %} value="{{ value }}"{% endif %} {% if checked %}checked{% endif %} {% include "wagtailadmin/shared/attrs.html" with attrs=attrs %}>
<input type="checkbox" name="{{ name }}"{% if value %} value="{{ value|unlocalize }}"{% endif %} {% if checked %}checked{% endif %} {% include "wagtailadmin/shared/attrs.html" with attrs=attrs %}>
{{ text }}
</label>

Wyświetl plik

@ -9,7 +9,7 @@
{% resolve_url linkurl as url_path %}
<nav class="pagination" aria-label="{% trans 'Pagination' %}">
<p>{% blocktrans trimmed with page_num=items.number total_pages=items.paginator.num_pages %}Page {{ page_num }} of {{ total_pages }}.{% endblocktrans %}</p>
<p>{% blocktrans trimmed with page_num=items.number|intcomma total_pages=items.paginator.num_pages|intcomma %}Page {{ page_num }} of {{ total_pages }}.{% endblocktrans %}</p>
<ul>
<li class="prev">
{% if items.has_previous %}

Wyświetl plik

@ -13,7 +13,7 @@
{% icon name=toggle.icon_name classname=nav_icon_classes %}
{% if toggle.has_counter %}
<div data-side-panel-toggle-counter class="{{ nav_icon_counter_classes }} {{ toggle.counter_classname|default:'w-bg-surface-button-default'}}" {% if not count %}hidden{% endif %}>
{{ count }}
{{ count|intcomma }}
</div>
{% endif %}
</button>

Wyświetl plik

@ -5,7 +5,7 @@
{% trans 'Locale: ' as screen_reader_title_prefix %}
{% if object.pk and translations %}
{% blocktrans trimmed asvar help_text %}
{% blocktrans trimmed with translations_total=translations_total|intcomma asvar help_text %}
Available in {{ translations_total }} locales
{% endblocktrans %}
{% else %}

Wyświetl plik

@ -1,4 +1,4 @@
{% load i18n %}
{% load i18n wagtailadmin_tags %}
<div class="w-py-6 w-space-y-3">
<section class="w-flex w-space-x-3">
<div class="w-flex w-flex-1">
@ -13,7 +13,7 @@
{% if usage_url_text %}
{{ usage_url_text }}
{% else %}
{% blocktrans trimmed count usage_count=usage_count %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}
{% blocktrans trimmed with counter=usage_count usage_count=usage_count|intcomma count counter=counter %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}
{% endif %}
</a>
</div>

Wyświetl plik

@ -1,4 +1,4 @@
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% comment "text/markdown" %}
This shared template is used to display the usage count for an object as a link
to the object's usage page. It is used by the admin's delete and unpublish views.
@ -11,7 +11,7 @@ Variables this template accepts:
{% endcomment %}
<p>
<a href="{{ usage_url }}">
{% blocktrans trimmed with model_name=model_opts.verbose_name count usage_count=usage_count asvar usage_message %}
{% blocktrans trimmed with counter=usage_count model_name=model_opts.verbose_name usage_count=usage_count|intcomma count counter=counter asvar usage_message %}
This {{ model_name }} is referenced {{ usage_count }} time.
{% plural %}
This {{ model_name }} is referenced {{ usage_count }} times.

Wyświetl plik

@ -1,4 +1,4 @@
{% load i18n %}
{% load i18n wagtailadmin_tags %}
<td {% if column.classname %}class="{{ column.classname }}"{% endif %}>
{% for workflow_task in value|slice:":5" %}
<a href="{% url 'wagtailadmin_workflows:edit' workflow_task.workflow.pk %}">{{ workflow_task.workflow.name }}{% if not forloop.last %}, {% endif %}</a>
@ -6,6 +6,8 @@
{% trans "Not used" %}
{% endfor %}
{% if value|length > 5 %}
{% blocktrans trimmed count counter=value|length|add:-5 %}+{{ counter }} more{% plural %}+{{ counter }} more{% endblocktrans %}
{% with counter_val=value|length|add:-5 %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}+{{ counter }} more{% plural %}+{{ counter }} more{% endblocktrans %}
{% endwith %}
{% endif %}
</td>

Wyświetl plik

@ -1,17 +1,17 @@
{% load i18n %}
{% load i18n wagtailadmin_tags %}
<td {% if column.classname %}class="{{ column.classname }}"{% endif %}>
<ul class="workflow-tasks">
{% for task in tasks %}
<a href="{% url 'wagtailadmin_workflows:edit_task' task.task_id %}">
<li class="workflow-tasks__task" data-controller="w-tooltip" data-w-tooltip-content-value="{% blocktrans trimmed with forloop.counter as step_number %}Step {{ step_number }}{% endblocktrans %}: {{ task.task.name }}">
<div class="workflow-tasks__step">{% blocktrans trimmed with forloop.counter as step_number %}Step {{ step_number }}{% endblocktrans %}</div>
<li class="workflow-tasks__task" data-controller="w-tooltip" data-w-tooltip-content-value="{% blocktrans trimmed with forloop.counter|intcomma as step_number %}Step {{ step_number }}{% endblocktrans %}: {{ task.task.name }}">
<div class="workflow-tasks__step">{% blocktrans trimmed with forloop.counter|intcomma as step_number %}Step {{ step_number }}{% endblocktrans %}</div>
<h4 class="workflow-tasks__name">{{ task.task.name }}</h4>
</li>
</a>
{% endfor %}
{% if extra_count > 0 %}
<li class="workflow-tasks__extra-tasks">
{% blocktrans trimmed count counter=extra_count %}+{{ counter }} more{% plural %}+{{ counter }} more{% endblocktrans %}
{% blocktrans trimmed with counter=extra_count|intcomma count counter_val=extra_count %}+{{ counter }} more{% plural %}+{{ counter }} more{% endblocktrans %}
</li>
{% endif %}
</ul>

Wyświetl plik

@ -1,13 +1,15 @@
{% extends "wagtailadmin/tables/title_cell.html" %}
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% block title %}
<a href="{{ link_url }}">
{% blocktrans trimmed count counter=instance.all_pages.count %}
1 page
{% plural %}
{{ counter }} pages
{% endblocktrans %}
{% with instance.all_pages.count as counter_val %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}
1 page
{% plural %}
{{ counter }} pages
{% endblocktrans %}
{% endwith %}
</a>
{% endblock %}
@ -15,11 +17,13 @@
{# Only show snippet type count if there's a model with workflows enabled #}
{% if workflow_enabled_models %}
<div>
{% blocktrans trimmed count counter=instance.content_types %}
1 snippet type
{% plural %}
{{ counter }} snippet types
{% endblocktrans %}
{% with instance.content_types as counter_val %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}
1 snippet type
{% plural %}
{{ counter }} snippet types
{% endblocktrans %}
{% endwith %}
</div>
{% endif %}
{% endblock %}

Wyświetl plik

@ -2,11 +2,13 @@
{% if tasks %}
{% if search_form.is_searching %}
<h2 role="alert">
{% blocktrans trimmed count counter=tasks.paginator.count %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches
{% endblocktrans %}
{% with counter_val=tasks.paginator.count %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}
There is {{ counter }} match
{% plural %}
There are {{ counter }} matches
{% endblocktrans %}
{% endwith %}
</h2>
{% else %}
<h2>{% trans "Tasks" %}</h2>

Wyświetl plik

@ -6,6 +6,7 @@ from collections.abc import Mapping
from django.contrib.admin.utils import quote
from django.forms import MediaDefiningClass
from django.template.loader import get_template
from django.templatetags.l10n import unlocalize
from django.urls import reverse
from django.utils.functional import cached_property
from django.utils.text import capfirst
@ -156,7 +157,10 @@ class Column(BaseColumn):
def get_cell_context_data(self, instance, parent_context):
context = super().get_cell_context_data(instance, parent_context)
context["value"] = self.get_value(instance)
value = self.get_value(instance)
if isinstance(value, int) and not isinstance(value, bool):
value = unlocalize(value)
context["value"] = value
return context
@ -272,6 +276,12 @@ class BooleanColumn(Column):
cell_template_name = "wagtailadmin/tables/boolean_cell.html"
def get_value(self, instance):
value = super().get_value(instance)
if value is None:
return None
return bool(value)
class LiveStatusTagColumn(StatusTagColumn):
"""Represents a live/draft status tag"""

Wyświetl plik

@ -1,5 +1,5 @@
{% extends "wagtailadmin/generic/index_results.html" %}
{% load i18n %}
{% load i18n l10n %}
{% block results %}
<form class="w-overflow-auto" data-controller="w-bulk" data-w-bulk-action-inactive-class="w-invisible" action="{% url 'wagtailforms:delete_submissions' form_page.id %}" method="get">
<input type="hidden" value="{{ next_url }}" name="next">
@ -21,7 +21,7 @@
{% for row in data_rows %}
<tr>
<td>
<input type="checkbox" name="selected-submissions" class="select-submission" value="{{ row.model_id }}" data-action="w-bulk#toggle" data-w-bulk-target="item" />
<input type="checkbox" name="selected-submissions" class="select-submission" value="{{ row.model_id|unlocalize }}" data-action="w-bulk#toggle" data-w-bulk-target="item" />
</td>
{% for cell in row.fields %}
<td>

Wyświetl plik

@ -1,8 +1,8 @@
{% load i18n %}
{% load i18n wagtailadmin_tags %}
{% trans "Total submissions" as total %}
{% trans "Latest submission" as latest %}
<p>
<span class="w-label-3">{{ total }}</span> <a href="{% url 'wagtailforms:list_submissions' self.instance.id %}">{{ submission_count }}</a>
<span class="w-label-3">{{ total }}</span> <a href="{% url 'wagtailforms:list_submissions' self.instance.id %}">{{ submission_count|intcomma }}</a>
</p>
<p>
<span class="w-label-3">{{ latest }}</span> {{ last_submit_time }}

Wyświetl plik

@ -8,7 +8,7 @@
<section id="summary" class="nice-padding">
<p class="help-block help-warning">
{% icon name='warning' %}
{% blocktrans trimmed with total=import_summary.total successes=import_summary.successes errors=import_summary.errors_count %}Found {{ total }} redirects, created {{ successes }} and found {{ errors }} errors.{% endblocktrans %}
{% blocktrans trimmed with total=import_summary.total|intcomma successes=import_summary.successes|intcomma errors=import_summary.errors_count|intcomma %}Found {{ total }} redirects, created {{ successes }} and found {{ errors }} errors.{% endblocktrans %}
</p>
<table class="listing">

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load wagtailimages_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Add tags to 1 document {% plural %}Add tags to {{ counter }} documents{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Add tags to 1 document {% plural %}Add tags to {{ counter }} documents{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Add tags to documents" as add_str %}

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load wagtailimages_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Add 1 document to new collection {% plural %}Add {{ counter }} documents to new collection{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Add 1 document to new collection {% plural %}Add {{ counter }} documents to new collection{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Add documents to collection" as add_str %}

Wyświetl plik

@ -1,6 +1,10 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load wagtailadmin_tags i18n %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Delete 1 document {% plural %}Delete {{ counter }} documents{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Delete 1 document {% plural %}Delete {{ counter }} documents{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Delete documents" as del_str %}
@ -18,10 +22,12 @@
</p>
<ul>
{% for document in items %}
<li>
<a href="{% url 'wagtaildocs:edit' document.item.id %}" target="_blank" rel="noreferrer">{{document.item.title}}</a>
(<a href="{{ document.item.usage_url }}">{% blocktrans trimmed count usage_count=document.item.get_usage.count %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>)
</li>
{% with usage_count_val=document.item.get_usage.count %}
<li>
<a href="{% url 'wagtaildocs:edit' document.item.id %}" target="_blank" rel="noreferrer">{{document.item.title}}</a>
(<a href="{{ document.item.usage_url }}">{% blocktrans trimmed with usage_count=usage_count_val|intcomma count usage_count_val=usage_count_val %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>)
</li>
{% endwith %}
{% endfor %}
</ul>
{% endif %}

Wyświetl plik

@ -53,7 +53,9 @@
<dt>{% trans "Usage" %}</dt>
<dd>
<a href="{{ document.usage_url }}">{% blocktrans trimmed count usage_count=document.get_usage.count %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>
{% with usage_count_val=document.get_usage.count %}
<a href="{{ document.usage_url }}">{% blocktrans trimmed with usage_count=usage_count_val|intcomma count usage_count_val=usage_count_val %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>
{% endwith %}
</dd>
</dl>
</div>

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load wagtailimages_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Add tags to 1 image {% plural %}Add tags to {{ counter }} images{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Add tags to 1 image {% plural %}Add tags to {{ counter }} images{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Add tags to images" as add_str %}

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n %}
{% load wagtailimages_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Add 1 image to new collection {% plural %}Add {{ counter }} images to new collection{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Add 1 image to new collection {% plural %}Add {{ counter }} images to new collection{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Add images to collection" as add_str %}

Wyświetl plik

@ -1,6 +1,10 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load wagtailadmin_tags i18n %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Delete 1 image{% plural %}Delete {{ counter }} images{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Delete 1 image{% plural %}Delete {{ counter }} images{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Delete images" as del_str %}
@ -18,10 +22,12 @@
</p>
<ul>
{% for image in items %}
<li>
<a href="{% url 'wagtailimages:edit' image.item.id %}" target="_blank" rel="noreferrer">{{image.item.title}}</a>
(<a href="{{ image.item.usage_url }}">{% blocktrans trimmed count usage_count=image.item.get_usage.count %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>)
</li>
{% with usage_count_val=image.item.get_usage.count %}
<li>
<a href="{% url 'wagtailimages:edit' image.item.id %}" target="_blank" rel="noreferrer">{{image.item.title}}</a>
(<a href="{{ image.item.usage_url }}">{% blocktrans trimmed with usage_count=usage_count_val|intcomma count usage_count_val=usage_count_val %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>)
</li>
{% endwith %}
{% endfor %}
</ul>
{% endif %}

Wyświetl plik

@ -1,8 +1,8 @@
{% load i18n wagtailadmin_tags wagtailimages_tags %}
{% load i18n wagtailadmin_tags wagtailimages_tags l10n %}
{% rawformattedfield field=field %}
{% image image original as original_image %}
<a href="{{ original_image.url }}">{% icon name="image" classname="default" %}{{ image.filename }}</a> ({{ original_image.width }}x{{ original_image.height}})<br /><br />
<a href="{{ original_image.url }}">{% icon name="image" classname="default" %}{{ image.filename }}</a> ({{ original_image.width|unlocalize }}x{{ original_image.height|unlocalize }})<br /><br />
{% trans "Change image file:" %}
{{ field }}

Wyświetl plik

@ -50,7 +50,7 @@
<div
class="focal-point-chooser"
style="max-width: {{ rendition.width }}px; max-height: {{ rendition.height }}px;"
style="max-width: {{ rendition.width|unlocalize }}px; max-height: {{ rendition.height|unlocalize }}px;"
data-focal-point-x="{{ image.focal_point_x|default_if_none:''|unlocalize }}"
data-focal-point-y="{{ image.focal_point_y|default_if_none:''|unlocalize }}"
data-focal-point-width="{{ image.focal_point_width|default_if_none:''|unlocalize }}"
@ -78,13 +78,15 @@
<dl>
<dt>{% trans "Max dimensions" %}</dt>
<dd>{{ original_image.width }}x{{ original_image.height }}</dd>
<dd>{{ original_image.width|unlocalize }}x{{ original_image.height|unlocalize }}</dd>
<dt>{% trans "Filesize" %}</dt>
<dd>{% if filesize %}{{ filesize|filesizeformat }}{% else %}{% trans "File not found" %}{% endif %}</dd>
<dt>{% trans "Usage" %}</dt>
<dd>
<a href="{{ image.usage_url }}">{% blocktrans trimmed count usage_count=image.get_usage.count %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>
{% with image.get_usage.count as usage_count_val %}
<a href="{{ image.usage_url }}">{% blocktrans trimmed with usage_count=usage_count_val|intcomma count usage_count_val=usage_count_val %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>
{% endwith %}
</dd>
</dl>
</div>

Wyświetl plik

@ -1,6 +1,7 @@
{% extends "wagtailadmin/widgets/chooser.html" %}
{% load l10n %}
{% block chosen_icon %}
{# Empty alt because the chosen items title is already displayed next to the image. #}
<img class="chooser__image show-transparency" data-chooser-image alt="" decoding="async" height="{{ preview.height }}" src="{{ preview.url }}" width="{{ preview.width }}">
<img class="chooser__image show-transparency" data-chooser-image alt="" decoding="async" height="{{ preview.height|unlocalize }}" src="{{ preview.url }}" width="{{ preview.width|unlocalize }}">
{% endblock chosen_icon %}

Wyświetl plik

@ -12,6 +12,7 @@ from wagtail.images.tests.utils import (
LIBRARIES = {
"wagtailimages_tags": "wagtail.images.templatetags.wagtailimages_tags",
"l10n": "django.templatetags.l10n",
}
@ -123,7 +124,10 @@ class ImagesTestCase(TestCase):
cls.engine = Engine(
app_dirs=True,
libraries=LIBRARIES,
builtins=[LIBRARIES["wagtailimages_tags"]],
builtins=[
LIBRARIES["wagtailimages_tags"],
LIBRARIES["l10n"],
],
)
@classmethod
@ -275,8 +279,8 @@ class SrcsetImageTagTestCase(ImagesTestCase):
def test_srcset_image_assignment(self):
template = (
"{% srcset_image myimage width-{30,60} as bg %}"
"width: {{ bg.renditions.0.width }}, url: {{ bg.renditions.0.url }} "
"width: {{ bg.renditions.1.width }}, url: {{ bg.renditions.1.url }} "
"width: {{ bg.renditions.0.width|unlocalize }}, url: {{ bg.renditions.0.url }} "
"width: {{ bg.renditions.1.width|unlocalize }}, url: {{ bg.renditions.1.url }} "
)
rendered = self.render(template, {"myimage": self.image})
expected = f"""
@ -403,10 +407,10 @@ class PictureTagTestCase(ImagesTestCase):
def test_picture_assignment(self):
template = (
"{% picture myimage width-{550,600} format-{jpeg,webp} as bg %}"
"width: {{ bg.formats.jpeg.0.width }}, url: {{ bg.formats.jpeg.0.url }} "
"width: {{ bg.formats.jpeg.1.width }}, url: {{ bg.formats.jpeg.1.url }} "
"width: {{ bg.formats.webp.0.width }}, url: {{ bg.formats.webp.0.url }} "
"width: {{ bg.formats.webp.1.width }}, url: {{ bg.formats.webp.1.url }} "
"width: {{ bg.formats.jpeg.0.width|unlocalize }}, url: {{ bg.formats.jpeg.0.url }} "
"width: {{ bg.formats.jpeg.1.width|unlocalize }}, url: {{ bg.formats.jpeg.1.url }} "
"width: {{ bg.formats.webp.0.width|unlocalize }}, url: {{ bg.formats.webp.0.url }} "
"width: {{ bg.formats.webp.1.width|unlocalize }}, url: {{ bg.formats.webp.1.url }} "
)
rendered = self.render(template, {"myimage": self.image})
expected = f"""

Wyświetl plik

@ -5,7 +5,7 @@
{% if items|length == 1 %}
{% blocktrans trimmed with snippet_type_name=model_opts.verbose_name %}Delete {{ snippet_type_name }}{% endblocktrans %} - {{ items.0.item }}
{% else %}
{{ items|length }} {{ model_opts.verbose_name_plural|capfirst }}
{{ items|length|intcomma }} {{ model_opts.verbose_name_plural|capfirst }}
{% endif %}
{% endblock %}
@ -22,11 +22,13 @@
{% if items %}
{% if items|length == 1 %}
<div class="usagecount">
<a href="{{ items.0.usage_url }}">{% blocktrans trimmed count usage_count=items.0.usage_count %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>
{% with usage_count_val=items.0.usage_count %}
<a href="{{ items.0.usage_url }}">{% blocktrans trimmed with usage_count=usage_count_val|intcomma count usage_count_val=usage_count_val %}Used {{ usage_count }} time{% plural %}Used {{ usage_count }} times{% endblocktrans %}</a>
{% endwith %}
</div>
<p>{% blocktrans trimmed with snippet_type_name=model_opts.verbose_name %}Are you sure you want to delete this {{ snippet_type_name }}?{% endblocktrans %}</p>
{% else %}
<p>{% blocktrans trimmed with snippet_type_name=model_opts.verbose_name_plural count=items|length %}Are you sure you want to delete {{ count }} {{ snippet_type_name }}?{% endblocktrans %}</p>
<p>{% blocktrans trimmed with snippet_type_name=model_opts.verbose_name_plural count=items|length|intcomma %}Are you sure you want to delete {{ count }} {{ snippet_type_name }}?{% endblocktrans %}</p>
<ul>
{% for snippet in items %}
<li>

Wyświetl plik

@ -1,4 +1,5 @@
{% extends "tests/base.html" %}
{% load l10n %}
{% block content %}
<p>{{ greeting }}</p>
@ -6,7 +7,7 @@
<ul>
{% for key, value in form_submission.get_data.items %}
<li>{{ key }}: {{ value }}</li>
<li>{{ key }}: {{ value|unlocalize }}</li>
{% endfor %}
</ul>
{% endblock %}

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n wagtailusers_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Assign role to 1 user {% plural %}Assign role to {{ counter }} users{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Assign role to 1 user {% plural %}Assign role to {{ counter }} users{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Assign role" as header_str %}

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n wagtailusers_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Delete 1 user {% plural %}Delete {{ counter }} users{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Delete 1 user {% plural %}Delete {{ counter }} users{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Delete" as del_str %}

Wyświetl plik

@ -1,7 +1,11 @@
{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %}
{% load i18n wagtailusers_tags wagtailadmin_tags %}
{% block titletag %}{% blocktrans trimmed count counter=items|length %}Change active state for 1 user {% plural %}Change active state for {{ counter }} users{% endblocktrans %}{% endblock %}
{% block titletag %}
{% with counter_val=items|length %}
{% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Change active state for 1 user {% plural %}Change active state for {{ counter }} users{% endblocktrans %}
{% endwith %}
{% endblock %}
{% block header %}
{% trans "Set active state" as header_str %}