diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-09-04 18:38:25 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2016-09-04 18:38:25 +0200 |
commit | c2f4d4449ddba0a3899a5d4098e2c5e451c83ac8 (patch) | |
tree | 2618ae8d893fc532cac05de0ba045cac05f73ce8 /searx/templates | |
parent | b4b02316173c911f2b12d7c41b9729b28bc9c32c (diff) | |
download | searxng-c2f4d4449ddba0a3899a5d4098e2c5e451c83ac8.tar.gz searxng-c2f4d4449ddba0a3899a5d4098e2c5e451c83ac8.zip |
[fix] 404 page localization
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/courgette/404.html | 4 | ||||
-rw-r--r-- | searx/templates/default/404.html | 4 | ||||
-rw-r--r-- | searx/templates/oscar/404.html | 4 | ||||
-rw-r--r-- | searx/templates/pix-art/404.html | 4 |
4 files changed, 12 insertions, 4 deletions
diff --git a/searx/templates/courgette/404.html b/searx/templates/courgette/404.html index 465039e3a..7a317f023 100644 --- a/searx/templates/courgette/404.html +++ b/searx/templates/courgette/404.html @@ -2,6 +2,8 @@ {% block content %} <div class="center"> <h1>{{ _('Page not found') }}</h1> - <p>{{ _('Go to <a href="/">search page</a>.') }}</p> + {% autoescape false %} + <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> + {% endautoescape %} </div> {% endblock %} diff --git a/searx/templates/default/404.html b/searx/templates/default/404.html index 18012f2ac..dc968a109 100644 --- a/searx/templates/default/404.html +++ b/searx/templates/default/404.html @@ -2,6 +2,8 @@ {% block content %} <div class="center"> <h1>{{ _('Page not found') }}</h1> - <p>{{ _('Go to <a href="/">search page</a>.') }}</p> + {% autoescape false %} + <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> + {% endautoescape %} </div> {% endblock %} diff --git a/searx/templates/oscar/404.html b/searx/templates/oscar/404.html index 39836ce0e..cdb31db73 100644 --- a/searx/templates/oscar/404.html +++ b/searx/templates/oscar/404.html @@ -2,6 +2,8 @@ {% block content %} <div class="text-center"> <h1>{{ _('Page not found') }}</h1> - <p>{{ _('Go to <a href="/">search page</a>.') }}</p> + {% autoescape false %} + <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> + {% endautoescape %} </div> {% endblock %} diff --git a/searx/templates/pix-art/404.html b/searx/templates/pix-art/404.html index 27e89ae02..27a614084 100644 --- a/searx/templates/pix-art/404.html +++ b/searx/templates/pix-art/404.html @@ -2,6 +2,8 @@ {% block content %} <div class="center"> <h1>{{ _('Page not found') }}</h1> - <p>{{ _('Go to <a href="/">search page</a>.') }}</p> + {% autoescape false %} + <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> + {% endautoescape %} </div> {% endblock %} |