Re-add missing trimmed for blocktrans (#5735)

This commit is contained in:
Richard Schreiber
2025-12-18 20:28:06 +01:00
committed by GitHub
parent daaae85865
commit 847dc0f992
2 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@
<br>
<span data-time="{{ ev.date_from.isoformat }}" data-timezone="{{ request.event.timezone }}">
{% html_time ev.date_from "TIME_FORMAT" attr_fmt="H:i" as time%}
{% blocktrans with time=time %}
{% blocktrans trimmed with time=time %}
Begin: {{ time }}
{% endblocktrans %}
</span>
@@ -31,7 +31,7 @@
<br>
<span data-time="{{ ev.date_to.isoformat }}" data-timezone="{{ request.event.timezone }}">
{% html_time ev.date_to "TIME_FORMAT" attr_fmt="H:i" as time%}
{% blocktrans with time=time %}
{% blocktrans trimmed with time=time %}
End: {{ time }}
{% endblocktrans %}
</span>

View File

@@ -54,7 +54,7 @@
{% if event.settings.presale_start_show_date %}
<br><span class="text-muted">
{% html_time event.event.effective_presale_start "SHORT_DATE_FORMAT" as date %}
{% blocktrans with date=date %}
{% blocktrans trimmed with date=date %}
Sale starts {{ date }}
{% endblocktrans %}
</span>