mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
[enh] i18n support
This commit is contained in:
parent
a1f945d227
commit
2b1d2dbc84
6 changed files with 29 additions and 20 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue