Projet

Général

Profil

0001-change-a2-account-wording-23567.patch

Emmanuel Cazenave, 07 mai 2018 14:50

Télécharger (1,92 ko)

Voir les différences:

Subject: [PATCH] change a2 account wording (#23567)

 templates/authentic2/accounts.html | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
templates/authentic2/accounts.html
33 33
    <h2>Gestion du compte</h2>
34 34
    <ul class="account-management">
35 35
      {% if allow_email_change %}
36
      <li><a href="{% url 'email-change' %}">Modifier le courriel associé</a></li>
36
      <li><a href="{% url 'email-change' %}">Modifier mon adresse de courriel</a></li>
37 37
      {% endif %}
38 38
      {% if allow_password_change %}
39 39
        {% if user.has_usable_password %}
40
        <li><a href="{% url 'password_change' %}">Modifier le mot de passe</a></li>
40
        <li><a href="{% url 'password_change' %}">Modifier mon mot de passe</a></li>
41 41
        {% else %}
42
        <li><a href="{% url 'password_change' %}">Définir un mot de passe</a></li>
42
        <li><a href="{% url 'password_change' %}">Définir mon mot de passe</a></li>
43 43
        {% endif %}
44 44
      {% endif %}
45 45
      {% if profile_edit_url %}
46
      <li><a href="{{ profile_edit_url }}">Éditer les données du compte</a></li>
46
      <li><a href="{{ profile_edit_url }}">Éditer mon profil</a></li>
47 47
      {% elif allow_profile_edit %}
48
      <li><a href="{% url 'profile_edit' %}">Éditer les données du compte</a></li>
48
      <li><a href="{% url 'profile_edit' %}">Éditer mon profil</a></li>
49 49
      {% endif %}
50 50
      {% if allow_account_deletion %}
51
      <li><a href="{% url 'delete_account' %}">Supprimer le compte</a></li>
51
      <li><a href="{% url 'delete_account' %}">Supprimer mon compte</a></li>
52 52
      {% endif %}
53 53
    </ul>
54 54
  </div>
55
-