diff options
author | Alexandre Flament <alex@al-f.net> | 2022-12-16 20:28:57 +0000 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2023-02-17 15:17:36 +0000 |
commit | 6748e8e2d5eff3c2202b2a714afb5534b1573101 (patch) | |
tree | 57f6fcf3d5b9bb5ee3b4a03aaf8aac2a53ee7106 /searx/templates | |
parent | 54389a29feb3feea5a868f7b3b83c9718fb71014 (diff) | |
download | searxng-6748e8e2d5eff3c2202b2a714afb5534b1573101.tar.gz searxng-6748e8e2d5eff3c2202b2a714afb5534b1573101.zip |
Add "Auto-detected" as a language.
When the user choose "Auto-detected", the choice remains on the following queries.
The detected language is displayed.
For example "Auto-detected (en)":
* the next query language is going to be auto detected
* for the current query, the detected language is English.
This replace the autodetect_search_language plugin.
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/simple/filters/languages.html | 4 | ||||
-rw-r--r-- | searx/templates/simple/preferences.html | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/searx/templates/simple/filters/languages.html b/searx/templates/simple/filters/languages.html index e9e4d47ce..54e07e209 100644 --- a/searx/templates/simple/filters/languages.html +++ b/searx/templates/simple/filters/languages.html @@ -1,5 +1,9 @@ <select class="language" id="language" name="language" aria-label="{{ _('Search language') }}">{{- '' -}} <option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option> + <option value="auto" {% if current_language == 'auto' %}selected="selected"{% endif %}> + {{- _('Auto-detect') -}} + {%- if current_language == 'auto' %} ({{ search_language }}){%- endif -%} + </option> {%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%} <option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}> {% if flag %}{{ flag }} {% endif%} {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %} diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 4aef7f986..9626b04d4 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -116,12 +116,15 @@ <p class="value">{{- '' -}} <select name='language' aria-labelledby="pref_language" aria-describedby="desc_language">{{- '' -}} <option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option> + <option value="auto" {% if current_language == 'auto' %}selected="selected"{% endif %}>{{ _('Auto-detect') }}</option> {%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%} <option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>{% if flag %}{{ flag }} {% endif%} {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}</option> {%- endfor -%} </select>{{- '' -}} </p> - <div class="description" id="desc_language">{{ _('What language do you prefer for search?') }}</div> + <div class="description" id="desc_language"> + {{- _('What language do you prefer for search?') }} {{ _('Choose Auto-detect to let SearXNG detect the language of your query.') -}} + </div> </fieldset> {% endif %} {% if 'autocomplete' not in locked_preferences %} |