Projet

Général

Profil

0001-attribute_kinds-fix-title-choices-7191.patch

Thomas Noël, 12 mai 2015 15:17

Télécharger (867 octets)

Voir les différences:

Subject: [PATCH] attribute_kinds: fix title choices (#7191)

 src/authentic2/attribute_kinds.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
src/authentic2/attribute_kinds.py
16 16
capfirst = allow_lazy(capfirst, unicode)
17 17

  
18 18
DEFAULT_TITLE_CHOICES = (
19
    pgettext_lazy('title', 'Mrs'),
20
    pgettext_lazy('title', 'Mr'),
19
    (pgettext_lazy('title', 'Mrs'), pgettext_lazy('title', 'Mrs')),
20
    (pgettext_lazy('title', 'Mr'), pgettext_lazy('title', 'Mr')),
21 21
)
22 22

  
23 23
def get_title_choices():
24
-