Commit 25c3aeb0511671c7ac9daffb3965fa9219f4bb08

Authored by Sergio Oliveira
1 parent 2af7a951

Fixing translation mistakes

src/super_archives/templates/message-preview.html
... ... @@ -44,7 +44,7 @@
44 44  
45 45 <span class="right">
46 46 {{ doc.modified|timesince }}
47   - {% trans "back" %}
  47 + {% trans "ago" %}
48 48 </span>
49 49 </div>
50 50 </li>
... ...
src/super_archives/templates/message-thread.html
... ... @@ -47,7 +47,7 @@
47 47 <h4><b>{% trans "Order by" %}:</b></h4>
48 48 <ul>
49 49 <li><a href="{% append_to_get order='voted' %}">{% trans "Votes" %}</a></li>
50   - <li><a href="{% append_to_get order='date' %}">{% trans "Data" %}</a></li>
  50 + <li><a href="{% append_to_get order='date' %}">{% trans "Date" %}</a></li>
51 51 </ul>
52 52  
53 53 <hr class="space"/>
... ... @@ -56,7 +56,7 @@
56 56  
57 57 <ul>
58 58 <li class="quiet">{% trans "started at" %}
59   - <h4>{{ first_msg.received_time|timesince }} {% trans "back" %}</h4>
  59 + <h4>{{ first_msg.received_time|timesince }} {% trans "ago" %}</h4>
60 60 </li>
61 61 <li class="quiet">{% trans "viewed" %}
62 62 <h4>{{ pagehits }} {% trans "times" %}</h4>
... ...