Merge branch 'sql/dot-notation'
[mediagoblin.git] / mediagoblin / templates / mediagoblin / utils / prev_next.html
index 74f855ed59a29309ede2e97828543550f691e379..b0c019637ac16c96ef8deb8e7fcba56b299a0ad6 100644 (file)
     {# There are no previous entries for the very first media entry #}
     {% if prev_entry_url %}
       <a class="navigation_button navigation_left" href="{{ prev_entry_url }}">
-        <img src="/mgoblin_static/images/navigation_left.png" alt="Previous image" />
+        &larr; {% trans %}newer{% endtrans %}
       </a>
     {% else %}
       {# This is the first entry. display greyed-out 'previous' image #}
       <p class="navigation_button navigation_left">
-        <img src="/mgoblin_static/images/navigation_end.png" alt="No previous images" />
+        &larr; {% trans %}newer{% endtrans %}
       </p>
     {% endif %}
     {# Likewise, this could be the very last media entry #}
     {% if next_entry_url %}
       <a class="navigation_button" href="{{ next_entry_url }}">
-        <img src="/mgoblin_static/images/navigation_right.png" alt="Next image" />
+        {% trans %}older{% endtrans %} &rarr;
       </a>
     {% else %}
       {# This is the last entry. display greyed-out 'next' image #}
       <p class="navigation_button">
-        <img src="/mgoblin_static/images/navigation_end.png" alt="No following images" />
+        {% trans %}older{% endtrans %} &rarr;
       </p>
     {% endif %}
   </div>