summaryrefslogtreecommitdiff
path: root/templates/main.html
diff options
context:
space:
mode:
authoretienne2008-08-20 00:01:23 +0000
committeretienne2008-08-20 00:01:23 +0000
commit91ecaf80b3959bc902c713bd8556757b296a2bd0 (patch)
tree48ad13ef81c0eaec18804045c73a59278bbe89e0 /templates/main.html
parentb638469a22df4fb92da63a54295347024cb55eb4 (diff)
Internationalization of the application
Diffstat (limited to 'templates/main.html')
-rw-r--r--templates/main.html6
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 %}
-