Translations fix

This commit is contained in:
Antoine Bartuccio 2017-08-15 18:57:50 +02:00
parent 0f408d9d89
commit f49f889d5b
2 changed files with 7 additions and 3 deletions

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-15 18:05+0200\n"
"POT-Creation-Date: 2017-08-15 18:57+0200\n"
"PO-Revision-Date: 2016-07-18\n"
"Last-Translator: Skia <skia@libskia.so>\n"
"Language-Team: AE info <ae.info@utbm.fr>\n"
@ -3927,7 +3927,7 @@ msgstr "Utilisateur trouvé"
#: matmat/templates/matmat/search_form.jinja:38
msgid "Search by profile"
msgstr "Recherche par profile"
msgstr "Recherche par profil"
#: matmat/templates/matmat/search_form.jinja:52
msgid "Inverted search"
@ -3941,6 +3941,10 @@ msgstr "Recherche rapide"
msgid "Indifferent"
msgstr "Indifferent"
#: matmat/views.py:76
msgid "Sex"
msgstr "Sexe"
#: matmat/views.py:78
msgid "Last/First name or nickname"
msgstr "Nom de famille, prénom ou surnom"

View File

@ -73,7 +73,7 @@ class SearchForm(forms.ModelForm):
("MAN", _("Man")),
("WOMAN", _("Woman")),
("INDIFFERENT", _("Indifferent"))
], widget=forms.RadioSelect, initial="INDIFFERENT")
], widget=forms.RadioSelect, initial="INDIFFERENT", label=_('Sex'))
quick = forms.CharField(label=_('Last/First name or nickname'), max_length=255)