Commit 27b7e35b by Frances Botsford

i18n the PDF prev/next button text

parent 08fe23ac
<%! from django.utils.translation import ugettext as _ %>
<%inherit file="main.html" /> <%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/> <%namespace name='static' file='static_content.html'/>
<%block name="title"> <%block name="title">
...@@ -116,10 +117,10 @@ ...@@ -116,10 +117,10 @@
<nav> <nav>
<ul> <ul>
<li class="last"> <li class="last">
<a id="previous">Previous page</a> <a id="previous">${_("Previous page")}</a>
</li> </li>
<li class="next"> <li class="next">
<a id="next">Next page</a> <a id="next">${_("Next page")}</a>
</li> </li>
</ul> </ul>
</nav> </nav>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment