summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/templates/preferences.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/preferences.html b/searx/templates/preferences.html
index 1c370ca13..590515e26 100644
--- a/searx/templates/preferences.html
+++ b/searx/templates/preferences.html
@@ -17,7 +17,7 @@
<select name='language'>
<option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Automatic') }}</option>
{% for lang_id,lang_name,country_name in language_codes %}
- <option value={{ lang_id }} {% if lang_id == current_language %}selected="selected"{% endif %}>{{ lang_name}} ({{ country_name }})</option>
+ <option value={{ lang_id }} {% if lang_id == current_language %}selected="selected"{% endif %}>{{ lang_name}} ({{ country_name }}) - {{ lang_id }}</option>
{% endfor %}
</select>
</p>