diff options
Diffstat (limited to 'theme/templates/website/langs.html')
-rwxr-xr-x | theme/templates/website/langs.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/website/langs.html b/theme/templates/website/langs.html index 7b47fc5..89a075e 100755 --- a/theme/templates/website/langs.html +++ b/theme/templates/website/langs.html @@ -9,12 +9,12 @@ {% block content %} <div class="book-langs-index"> <div class="inner"> - <h3>Choose a language</h3> + <h3>{% i18n "LANGS_CHOOSE" %}Choose a language{% endi18n %}</h3> <ul class="languages"> {% for lang in langs %} <li> - <a href="{{ basePath}}/{{ lang.path|pathJoin("/index.html") }}">{{ lang.title }}</a> + <a href="{{ basePath}}/{{ lang.lang }}/index.html">{{ lang.title }}</a> </li> {% endfor %} </ul> |