]> git.parisson.com Git - telemeta.git/commitdiff
translate again
authoryomguy <yomguy@parisson.com>
Tue, 15 Mar 2011 23:02:36 +0000 (00:02 +0100)
committeryomguy <yomguy@parisson.com>
Tue, 15 Mar 2011 23:02:36 +0000 (00:02 +0100)
telemeta/templates/telemeta_default/base.html
telemeta/templates/telemeta_default/home.html

index 63953f453fdf4361641c51458f40f7b743485f7c..b2e1a06956276315613ecd84dd78c10e32466f99 100644 (file)
@@ -43,7 +43,7 @@
 <a href="{% url telemeta-logout %}">{% trans "Sign out" %}
 <img src="images/logout.png" style="vertical-align:middle" /></a>
 {% else %}
-Help |
+{% trans "Help" %} |
 <a href="{% url telemeta-login %}?next={{ request.path|urlencode }}">{% trans "Sign in" %}</a>
 {% endif %}
 </div>
index ce924d1b176c8c29327a81e529bd2cc76fda9fd3..d4a78ca88dae7f7233830b1996d3c37004d7ef38 100644 (file)
       {% trans "Last changes" %}</h3>
     <table class="listing" bgcolor="#FFFFFF" width="390px">
       <tr>
-        <th class="highlight">Date</th>
-        <th>Type</th>
+        <th class="highlight">{% trans "Date" %}</th>
         <th>{% trans "Title" %}</th>
-        <th>User</th>
+        <th>{% trans "Type" %}</th>
+        <th>{% trans "User" %}</th>
       </tr>
     {% for r in revisions %}
      <tr {% if not forloop.counter0|divisibleby:"2" %}class="odd"{% endif %}>
         <td>{{ r.revision.time }}</td>
-        <td>{{ r.revision.element_type }}</td>
         <td>
         {% if r.revision.element_type == "collection" %}
           <a href="{% url telemeta-collection-detail r.element.public_id %}">{{ r.element.title }}</a>
@@ -37,7 +36,8 @@
           {{ r.element.title }}
         {% endif %}
         </td>
-         <td>{{ r.revision.user.username }}</td>
+        <td>{{ r.revision.element_type }}</td>
+        <td>{{ r.revision.user.username }}</td>
      </tr>
     {% endfor %}
     </table>