fr_gmail.j2 311 B

123456789101112
  1. {% if unread == 0 %}
  2. Vous n'avez aucun email
  3. {% else %}
  4. Vous avez {{ unread }} email.
  5. {% set count = 1 %}
  6. {% if unread > 0 %}
  7. {% for subject in subjects %}
  8. i-maile {{ count }}. {{ subject }}.
  9. {% set count = count + 1 %}
  10. {% endfor %}
  11. {% endif %}
  12. {% endif %}