Merge branch 'matmatronch' into 'master'

Translations fix for matmatronch

See merge request !94
This commit is contained in:
Antoine Bartuccio 2017-08-15 19:11:12 +02:00
commit d864c00472
2 changed files with 7 additions and 3 deletions

View File

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

View File

@ -73,7 +73,7 @@ class SearchForm(forms.ModelForm):
("MAN", _("Man")), ("MAN", _("Man")),
("WOMAN", _("Woman")), ("WOMAN", _("Woman")),
("INDIFFERENT", _("Indifferent")) ("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) quick = forms.CharField(label=_('Last/First name or nickname'), max_length=255)