Browse Source

[enh] displaying language_code in preferences

asciimoo 11 years ago
parent
commit
c075420eb7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/templates/preferences.html

+ 1
- 1
searx/templates/preferences.html View File

@@ -17,7 +17,7 @@
17 17
         <select name='language'>
18 18
             <option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Automatic') }}</option>
19 19
             {% for lang_id,lang_name,country_name in language_codes %}
20
-            <option value={{ lang_id }} {% if lang_id == current_language %}selected="selected"{% endif %}>{{ lang_name}} ({{ country_name }})</option>
20
+            <option value={{ lang_id }} {% if lang_id == current_language %}selected="selected"{% endif %}>{{ lang_name}} ({{ country_name }}) - {{ lang_id }}</option>
21 21
             {% endfor %}
22 22
         </select>
23 23
         </p>