summaryrefslogtreecommitdiff
path: root/searx/templates
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-02-09 11:14:13 +0100
committerasciimoo <asciimoo@gmail.com>2014-02-09 11:14:13 +0100
commitc075420eb7dc8c3b4844d15eccd2f2833fa4a31b (patch)
treed2ce7bcb850f65120c288456791206be92146ca4 /searx/templates
parent7c031a3ea6393e520a04ed56d6f6e1d6b0fcf76b (diff)
downloadsearxng-c075420eb7dc8c3b4844d15eccd2f2833fa4a31b.tar.gz
searxng-c075420eb7dc8c3b4844d15eccd2f2833fa4a31b.zip
[enh] displaying language_code in preferences
Diffstat (limited to 'searx/templates')
-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>