diff options
Diffstat (limited to 'searx/templates/simple')
| -rw-r--r-- | searx/templates/simple/base.html | 2 | ||||
| -rw-r--r-- | searx/templates/simple/preferences.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html index ac6a09822..108d2fcf5 100644 --- a/searx/templates/simple/base.html +++ b/searx/templates/simple/base.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html class="no-js" lang="en" {% if rtl %} dir="rtl"{% endif %}> +<html class="no-js" lang="{{ locale_rfc5646 }}" {% if rtl %} dir="rtl"{% endif %}> <head> <meta charset="UTF-8" /> <meta name="description" content="SearXNG — a privacy-respecting, hackable metasearch engine"> diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index f417d6338..90d01d2b6 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -186,7 +186,7 @@ {% endif %} {% if 'theme' not in locked_preferences %} <fieldset> - <legend>{{ _('Themes') }}</legend> + <legend>{{ _('Theme') }}</legend> <p class="value"> <select name="theme"> {%- for name in themes -%} @@ -256,7 +256,7 @@ <th>{{ _("Time range") }}</th> <th>{{ _("Response time") }}</th> <th>{{ _("Max time") }}</th> - <th>{{ _("Reliablity") }}</th> + <th>{{ _("Reliability") }}</th> </tr> {% for search_engine in engines_by_category[categ] %} {% if not search_engine.private %} |