Projet

Général

Profil

0001-authentic-clarify-Role-details-frontoffice-usage-240.patch

Thomas Noël, 27 février 2019 14:09

Télécharger (1,69 ko)

Voir les différences:

Subject: [PATCH] authentic: clarify Role details frontoffice usage (#24089)

 hobo/agent/authentic2/locale/fr/LC_MESSAGES/django.po | 4 ++--
 hobo/agent/authentic2/role_forms.py                   | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)
hobo/agent/authentic2/locale/fr/LC_MESSAGES/django.po
31 31
msgstr "L'élément {0} est invalide: {1}"
32 32

  
33 33
#: agent/authentic2/role_forms.py:82
34
msgid "Role details"
35
msgstr "Détail du rôle"
34
msgid "Role details (frontoffice)"
35
msgstr "Détails du rôle, affichés en front-office"
36 36

  
37 37
#: agent/authentic2/role_forms.py:84
38 38
msgid "Emails"
hobo/agent/authentic2/role_forms.py
79 79

  
80 80

  
81 81
class RoleForm(RoleEditForm):
82
    details = forms.CharField(label=_('Role details'), widget=forms.Textarea, initial='',
82
    details = forms.CharField(label=_('Role details (frontoffice)'),
83
                              widget=forms.Textarea, initial='',
83 84
                              required=False)
84 85
    emails = CommaSeparatedCharField(label=_('Emails'),
85 86
                                     item_validators=[EmailValidator()],
86
-