summaryrefslogtreecommitdiff
path: root/searx/templates/engines.html
diff options
context:
space:
mode:
authorpw3t <romain@berthor.fr>2014-01-23 22:11:36 +0100
committerpw3t <romain@berthor.fr>2014-01-23 22:11:36 +0100
commit132681b3aaf5b330d9d19624038b51fe2ebfd8d5 (patch)
tree393114f41b487eea4b71dd4073903726310a1257 /searx/templates/engines.html
parentd6b017efb5b51623a02c85690c7335cfc6674092 (diff)
parent59eeeaab87951fd6fa3302ec240db98902a20b2c (diff)
Merge branch 'master' of https://github.com/asciimoo/searx
Diffstat (limited to 'searx/templates/engines.html')
-rw-r--r--searx/templates/engines.html9
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 %}