Projet

Général

Profil

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

Thomas Noël, 25 mai 2018 12:00

Télécharger (2,29 ko)

Voir les différences:

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

 hobo/agent/authentic2/locale/fr/LC_MESSAGES/django.po | 8 ++++----
 hobo/agent/authentic2/role_forms.py                   | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
hobo/agent/authentic2/locale/fr/LC_MESSAGES/django.po
7 7
msgstr ""
8 8
"Project-Id-Version: hobo 0\n"
9 9
"Report-Msgid-Bugs-To: \n"
10
"POT-Creation-Date: 2017-05-21 11:50+0000\n"
10
"POT-Creation-Date: 2018-05-25 09:58+0000\n"
11 11
"PO-Revision-Date: 2016-01-23 15:06+0100\n"
12 12
"Last-Translator: Frederic Peters <fpeters@entrouvert.com>\n"
13 13
"Language: French\n"
......
16 16
"Content-Transfer-Encoding: 8bit\n"
17 17
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
18 18

  
19
#: hobo/agent/authentic2/management/commands/hobo_deploy.py:176
19
#: hobo/agent/authentic2/management/commands/hobo_deploy.py:174
20 20
#, python-format
21 21
msgid "Superuser of %s"
22 22
msgstr "Administrateur de %s"
......
31 31
msgstr "L'élément {0} est invalide: {1}"
32 32

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

  
37 37
#: hobo/agent/authentic2/role_forms.py:82
38 38
msgid "Emails"
hobo/agent/authentic2/role_forms.py
77 77

  
78 78

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