Skip to content

Commit

Permalink
Enable localization of strings in relations.html
Browse files Browse the repository at this point in the history
sphinx-doc#104

Co-authored-by: bitfidus <155338+bitfidus@users.noreply.github.com>
  • Loading branch information
introt and bitfidus committed Apr 21, 2022
1 parent 8633ce2 commit f930ad6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions alabester/relations.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<div class="relations">
<h3>Related Topics</h3>
<h3>{{ _('Related Topics') }}</h3>
<ul>
<li><a href="{{ pathto(master_doc) }}">Documentation overview</a><ul>
<li><a href="{{ pathto(master_doc) }}">{{ _('Documentation overview') }}</a><ul>
{%- for parent in parents %}
<li><a href="{{ parent.link|e }}">{{ parent.title }}</a><ul>
{%- endfor %}
{%- if prev %}
<li>Previous: <a href="{{ prev.link|e }}" title="{{ _('previous chapter')
<li>{{ _('Previous') }}: <a href="{{ prev.link|e }}" title="{{ _('previous chapter')
}}">{{ prev.title }}</a></li>
{%- endif %}
{%- if next %}
<li>Next: <a href="{{ next.link|e }}" title="{{ _('next chapter')
<li>{{ _('Next') }}: <a href="{{ next.link|e }}" title="{{ _('next chapter')
}}">{{ next.title }}</a></li>
{%- endif %}
{%- for parent in parents %}
Expand Down

0 comments on commit f930ad6

Please sign in to comment.