Browse Source

Set English for default language, even when not in Accept-Language

Gu1 11 years ago
parent
commit
6d36109207
2 changed files with 2 additions and 2 deletions
  1. 1 1
      ffdnispdb/__init__.py
  2. 1 1
      ffdnispdb/templates/index.html

+ 1 - 1
ffdnispdb/__init__.py

@@ -17,7 +17,7 @@ mail = Mail()
 def get_locale():
     if request.cookies.get('locale') in current_app.config['LANGUAGES'].keys():
         return request.cookies.get('locale')
-    return request.accept_languages.best_match(current_app.config['LANGUAGES'].keys())
+    return request.accept_languages.best_match(current_app.config['LANGUAGES'].keys(), 'en')
 
 
 def create_app(config={}):

+ 1 - 1
ffdnispdb/templates/index.html

@@ -14,4 +14,4 @@
       </div>
     </div>
   </div>
-{% endblock %}
+{%- endblock %}