mirror of
https://github.com/searxng/searxng.git
synced 2024-11-04 20:30:11 +01:00
2149e88bdd
HINT: this patch has no functional change / it is the preparation for following changes and bugfixes Over the years, the preferences template became an unmanageable beast. To make the source code more readable the monolith is splitted into elements. The splitting into elements also has the advantage that a new template can make use of them. The reversed checkbox is a quirk that is only used in the prefereces and must be eliminated in the long term. For this the macro 'checkbox_onoff_reversed' was added to the preferences.html template. The 'checkbox' macro is also a quirk of the preferences.html we don't want to use in other templates (it is an input-checkbox in a HTML form that was misused for status display). Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
28 lines
1.3 KiB
HTML
28 lines
1.3 KiB
HTML
<fieldset>{{- '' -}}
|
|
<legend id="pref_language">{{- _('Search language') -}}</legend>{{- '' -}}
|
|
<div 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') }} [all] {{- '' -}}
|
|
</option>{{- '' -}}
|
|
<option value="auto"
|
|
{%- if current_language == 'auto' %} selected="selected" {%- endif -%}>
|
|
{{- _('Auto-detect') }} [auto] {{- '' -}}
|
|
</option>{{- '' -}}
|
|
{% for sxng_tag,lang_name,country_name,english_name,flag in sxng_locales | sort(attribute=1) -%}
|
|
<option value="{{ sxng_tag }}"
|
|
{%- if sxng_tag == current_language %} selected="selected" {%- endif -%}>
|
|
{%- if flag -%}{{ flag }} {% endif -%}
|
|
{{ lang_name }}{%- if country_name -%}-{{ country_name }}{%- endif -%}
|
|
{{- ' ' -}}[{{sxng_tag}}]{{- '' -}}
|
|
</option>
|
|
{%- endfor -%}
|
|
</select>{{- '' -}}
|
|
</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>{{- '' -}}
|