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/preferences.html | |
| parent | a1f945d227577993b0d13e0230356d7462ccc840 (diff) | |
[enh] i18n support
Diffstat (limited to 'searx/templates/preferences.html')
| -rw-r--r-- | searx/templates/preferences.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/searx/templates/preferences.html b/searx/templates/preferences.html index 705139e58..d47dd4834 100644 --- a/searx/templates/preferences.html +++ b/searx/templates/preferences.html @@ -2,18 +2,18 @@ {% block head %} {% endblock %} {% block content %} <div class="row"> - <h2>Preferences</h2> + <h2>{{ _('Preferences') }}</h2> <fieldset> - <legend>Default categories</legend> + <legend>{{ _('Default categories') }}</legend> <form method="post" action="/preferences" id="search_form"> <p> {% include 'categories.html' %} </p> - <input type="submit" value="save" /> + <input type="submit" value="{{ _('save') }}" /> </form> </fieldset> - <div class="right"><a href="/">back</a></div> + <div class="right"><a href="/">{{ _('back') }}</a></div> </div> {% endblock %} |