Skip to content

Commit

Permalink
[#2375] Fix i18n template error
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Aug 6, 2012
1 parent 493324f commit e269d00
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ckan/templates/footer.html
Expand Up @@ -5,14 +5,14 @@
{% block footer_nav %}
<ul class="unstyled row-fluid">
{% block footer_links %}
<li><a href="#">_('Terms and Conditions')</a></li>
<li><a href="#">_('Accessibility')</a></li>
<li><a href="#">_('Code of conduct')</a></li>
<li><a href="#">_('Moderation policy')</a></li>
<li><a href="#">_('FAQ')</a></li>
<li><a href="#">_('Privacy')</a></li>
<li><a href="#">_('Contact us')</a></li>
<li><a href="#">_('Consultation')</a></li>
<li><a href="#">{{ _('Terms and Conditions') }}</a></li>
<li><a href="#">{{ _('Accessibility') }}</a></li>
<li><a href="#">{{ _('Code of conduct') }}</a></li>
<li><a href="#">{{ _('Moderation policy') }}</a></li>
<li><a href="#">{{ _('FAQ') }}</a></li>
<li><a href="#">{{ _('Privacy') }}</a></li>
<li><a href="#">{{ _('Contact us') }}</a></li>
<li><a href="#">{{ _('Consultation') }}</a></li>
{% endblock %}
</ul>
{% endblock %}
Expand Down

0 comments on commit e269d00

Please sign in to comment.