|
@@ -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>
|