diff options
Diffstat (limited to 'templates/main.html')
-rw-r--r-- | templates/main.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/main.html b/templates/main.html index 34f6609..0ca4536 100644 --- a/templates/main.html +++ b/templates/main.html @@ -1,9 +1,9 @@ +{% load i18n %} {% extends "base.html" %} {% block content %} {% if error %}<p class='error'>{{error}}</p>{%endif%} -<h2><a href='edit/0'>Create a poll</a></h2> -<p>Create a new sondage for take a decision, find a date for a meeting, etc.</p> +<h2><a href='edit/0'>{% trans "Create a poll" %}</a></h2> +<p>{% trans "Create a new sondage for take a decision, find a date for a meeting, etc." %}</p> {% endblock %} - |