Skip to content

Commit

Permalink
Allow translations for strings in relations.html (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
  • Loading branch information
bitfidus and AA-Turner authored Jul 15, 2024
1 parent eb522b8 commit 73be878
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions alabaster/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 73be878

Please sign in to comment.