diff options
Diffstat (limited to 'searx/templates/oscar')
| -rw-r--r-- | searx/templates/oscar/base.html | 2 | ||||
| -rw-r--r-- | searx/templates/oscar/preferences.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/searx/templates/oscar/base.html b/searx/templates/oscar/base.html index 01dedc782..de7d05bf6 100644 --- a/searx/templates/oscar/base.html +++ b/searx/templates/oscar/base.html @@ -1,6 +1,6 @@ {% from 'oscar/macros.html' import icon %} <!DOCTYPE html> -<html lang="{{ preferences.get_value('locale') }}" xml:lang="{{ preferences.get_value('locale') }}"{% if rtl %} dir="rtl"{% endif %} class="nojs"> +<html lang="{{ locale_rfc5646 }}" xml:lang="{{ locale_rfc5646 }}"{% if rtl %} dir="rtl"{% endif %} class="nojs"> <head> <meta charset="UTF-8" /> <meta name="description" content="SearXNG - a privacy-respecting, hackable metasearch engine" /> diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index 1fd857c30..944a390ef 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -207,7 +207,7 @@ {% endif %} {% if 'theme' not in locked_preferences %} - {% set theme_label = _('Themes') %} + {% set theme_label = _('Theme') %} {% set theme_info = _('Change SearXNG layout') %} {{ preferences_item_header(theme_info, theme_label, rtl, 'theme') }} <select class="form-control {{ custom_select_class(rtl) }}" name="theme" id="theme"> @@ -324,9 +324,9 @@ <th scope="col" class="col-stat">{{ _("Time range") }}</th> <th scope="col">{{ _("Response time") }}</th> <th scope="col" class="col-stat text-right">{{ _("Max time") }}</th> - <th scope="col" class="col-stat text-right">{{ _("Reliablity") }}</th> + <th scope="col" class="col-stat text-right">{{ _("Reliability") }}</th> {% else %} - <th scope="col" class="col-stat">{{ _("Reliablity") }}</th> + <th scope="col" class="col-stat">{{ _("Reliability") }}</th> <th scope="col" class="col-stat">{{ _("Max time") }}</th> <th scope="col" class="text-right">{{ _("Response time") }}</th> <th scope="col" class="text-right">{{ _("Time range") }}</th> |