diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 654ad066..660f7b12 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: AE info \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" diff --git a/matmat/views.py b/matmat/views.py index 46b46013..83961796 100644 --- a/matmat/views.py +++ b/matmat/views.py @@ -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)