summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/language.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/simple/preferences/language.html')
-rw-r--r--searx/templates/simple/preferences/language.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences/language.html b/searx/templates/simple/preferences/language.html
new file mode 100644
index 000000000..809c516df
--- /dev/null
+++ b/searx/templates/simple/preferences/language.html
@@ -0,0 +1,27 @@
+<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>{{- '' -}}