Projet

Général

Profil

0006-managers-templates-add-missing-l10n.patch

Benjamin Dauvergne, 14 août 2014 10:37

Télécharger (1,81 ko)

Voir les différences:

Subject: [PATCH 06/11] managers/templates: add missing l10n

 authentic2/manager/templates/authentic2/manager/roles.html |    5 ++---
 authentic2/manager/templates/authentic2/manager/users.html |    2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)
authentic2/manager/templates/authentic2/manager/roles.html
42 42

  
43 43
{% block main %}
44 44
   <div class="big-msg-info">
45
     Utilisez les filtres sur sur la gauche de l'écran pour afficher
46
     les membres du rôle correspondant.
45
     {% trans "Use filters on the left of the screen to display role's members." %}
47 46
   </div>
48 47
{% endblock %}
49 48

  
50 49
{% block page-end %}
51 50
  <div id="role-edit" style="display: none;">
52 51
   <form>
53
    <label><span>Nom :</span> <input type="text" size="30" value="Foo"/></label></br>
52
     <label><span>{% trans "Name:" %}</span> <input type="text" size="30" value="Foo"/></label></br>
54 53
   </form>
55 54
  </div>
56 55

  
authentic2/manager/templates/authentic2/manager/users.html
18 18
       <button>{% trans "Search" %}</button>
19 19
     </div>
20 20
  </div>
21
  <p>{{ users.count }} users</p>
21
  <p>{% blocktrans with count=users.count %}{{ count }} users{% endblocktrans %}</p>
22 22
{% endblock %}
23 23

  
24 24
{% block main %}
25
-