summaryrefslogtreecommitdiff
path: root/searx/templates/categories.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-01-22 00:59:18 +0100
committerasciimoo <asciimoo@gmail.com>2014-01-22 00:59:18 +0100
commit852dfc77c652fcd5557b097d37a3b5b5543391f9 (patch)
tree324d88ed4f06b5accdcaf1604b5669c73299c2b0 /searx/templates/categories.html
parenta6c31ef7e64f6365192753c938d63eac527cd32a (diff)
[enh] configurable localization
Diffstat (limited to 'searx/templates/categories.html')
-rw-r--r--searx/templates/categories.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/categories.html b/searx/templates/categories.html
index b1fd3d1fc..57e63c85d 100644
--- a/searx/templates/categories.html
+++ b/searx/templates/categories.html
@@ -1,7 +1,7 @@
<div id="categories">
{% for category in categories %}
<div class="checkbox_container">
- <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label>
+ <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label>
</div>
{% endfor %}
</div>