1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-18 05:32:23 -05:00

Add trans in templates

This commit is contained in:
Vincent Jousse 2013-12-13 23:12:08 +01:00
parent dfefa7016d
commit be8199de02

View File

@ -3,7 +3,7 @@
{% block content %}
{% if entries is empty %}
<div class="messages warning"><p>No link available here!</p></div>
<div class="messages warning"><p>{{ 'No link available here!'|trans }}</p></div>
{% else %}
{% for entry in entries %}
@ -12,7 +12,7 @@
<p>{{ entry.content|striptags|slice(0, 300) }}...</p>
{% endfor %}
<p><a href="index.php/add">poche a new link</a></p>
<p><a href="index.php/add">{{ 'poche a new link'|trans }}</a></p>
{% endif %}