diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-22 00:17:49 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-22 00:17:49 +0100 |
| commit | 2b1d2dbc841d970ed369e6479693dcc80fa01233 (patch) | |
| tree | 9ba34013b400d66502e161edbd93d11d51a61aab /searx/templates/engines.html | |
| parent | a1f945d227577993b0d13e0230356d7462ccc840 (diff) | |
[enh] i18n support
Diffstat (limited to 'searx/templates/engines.html')
| -rw-r--r-- | searx/templates/engines.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/searx/templates/engines.html b/searx/templates/engines.html index 1f52dc09f..008e860f1 100644 --- a/searx/templates/engines.html +++ b/searx/templates/engines.html @@ -1,12 +1,12 @@ {% extends 'base.html' %} {% block content %} <div class="row"> -<h2>Currently used search engines</h2> + <h2>{{ _('Currently used search engines') }}</h2> <table style="width: 80%;"> <tr> - <th>Engine name</th> - <th>Category</th> + <th>{{ _('Engine name') }}</th> + <th>{{ _('Category') }}</th> </tr> {% for (categ,search_engines) in categs %} {% for search_engine in search_engines %} @@ -20,7 +20,6 @@ {% endfor %} {% endfor %} </table> -<p>Please add more engines to this list, pull requests are welcome!</p> -<p class="right"><a href="/">back</a></p> +<p class="right"><a href="/">{{ _('back') }}</a></p> </div> {% endblock %} |