Skip to content

Commit

Permalink
added some i18n love
Browse files Browse the repository at this point in the history
  • Loading branch information
montylounge committed Jan 29, 2010
1 parent a63d827 commit 9df96ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mingus/templates/contact_form/contact_form.html
Expand Up @@ -25,17 +25,17 @@ <h2>{% trans "Contact me" %}</h2>
{% endif %}

<p>
<label for="form.name.label">{{ form.name.label }}</label>
<label for="form.name.label">{% trans "Your name" %}</label>
{{ form.name }}
</p>

<p>
<label for="form.email.label">{{ form.email.label }}</label>
<label for="form.email.label">{% trans "Your email" %}</label>
{{ form.email }}
</p>

<p>
<label for="form.body.label">{{ form.body.label }}</label>
<label for="form.body.label">{% trans "Your message" %}</label>
{{ form.body }}
</p>

Expand Down

0 comments on commit 9df96ca

Please sign in to comment.