mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
Fix twig tags
This commit is contained in:
@@ -10,12 +10,12 @@
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1 style="text-align:center">{% trans "Download of documents" %}</h1>
|
||||
<h1 style="text-align:center">{{ "Download of documents" | trans }}</h1>
|
||||
|
||||
<div class="well-small">
|
||||
{% if (list['complete'] is not defined or not list['complete']) and list['count'] > 1%}
|
||||
<div class="alert alert-info">
|
||||
{% trans "Please wait while your files are being gathered for the download, this operation may take a few minutes." %}
|
||||
{{ "Please wait while your files are being gathered for the download, this operation may take a few minutes." | trans }}
|
||||
</div>
|
||||
{% elseif list['complete'] is defined and list['complete'] %}
|
||||
<div class="alert alert-success">
|
||||
@@ -32,15 +32,15 @@
|
||||
<div class="well-small">
|
||||
<table class="table table-bordered table-condensed">
|
||||
<caption>
|
||||
<h3>{% trans "The file contains the following elements" %}</h3>
|
||||
<h3>{{ "The file contains the following elements" | trans }}</h3>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans "Base" %}</th>
|
||||
<th>{% trans "Name" %}</th>
|
||||
<th>{% trans "Sub definition" %}</th>
|
||||
<th>{% trans "Size" %}</th>
|
||||
<th>{% trans "Thumbnail" %}</th>
|
||||
<th>{{ "Base" | trans }}</th>
|
||||
<th>{{ "Name" | trans }}</th>
|
||||
<th>{{ "Sub definition" | trans }}</th>
|
||||
<th>{{ "Size" | trans }}</th>
|
||||
<th>{{ "Thumbnail" | trans }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
Reference in New Issue
Block a user