mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
18 lines
No EOL
707 B
HTML
18 lines
No EOL
707 B
HTML
<fieldset>{{- '' -}}
|
|
<legend id="pref_spellcheck">{{- _('Spell Check') -}}</legend>{{- '' -}}
|
|
<div class="value">{{- '' -}}
|
|
<select name='spellcheck' aria-labelledby="pref_spellcheck">{{- '' -}}
|
|
<option value="1"
|
|
{%- if spellcheck == '1' %} selected="selected" {%- endif -%}>
|
|
{{- _('On') -}}
|
|
</option>{{- '' -}}
|
|
<option value="0"
|
|
{%- if spellcheck == '0' %} selected="selected" {%- endif -%}>
|
|
{{- _('Off') -}}
|
|
</option>{{- '' -}}
|
|
</select>{{- '' -}}
|
|
</div>{{- '' -}}
|
|
<div class="description">
|
|
{{- _('Spell check search queries') -}}
|
|
</div>{{- '' -}}
|
|
</fieldset>{{- '' -}} |