Fix trans tag in templates

This commit is contained in:
Nicolas Le Goff
2015-02-05 21:48:28 +01:00
parent 60d228e52a
commit 5ee9bbd33c
4 changed files with 20 additions and 20 deletions

View File

@@ -106,7 +106,7 @@
{% if expiration is not none %}
<tr>
<td height="60" valign="center" align="center" style="font-family: Helvetica, Tahoma, Arial, sans-serif; font-size:13px; line-height:16px; color:#999999;">
{% trans 'Ce lien est valable jusqu\'au' %} {{ app['date-formatter'].getDate(expiration) }} {{ app['date-formatter'].getTime(expiration) }}
{{ 'Ce lien est valable jusqu\'au' | trans }} {{ app['date-formatter'].getDate(expiration) }} {{ app['date-formatter'].getTime(expiration) }}
</td>
</tr>
{% endif %}