aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 11:45:25 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 11:45:25 +0200
commit766316f73de9a6f9a9eac3ce85701c6436f19883 (patch)
tree56a2bce3c7a5e2a540a18bb29a775cc3cb7ccf38 /pyaggr3g470r/views.py
parentAvailable time zonez are defined in conf.py. (diff)
downloadnewspipe-766316f73de9a6f9a9eac3ce85701c6436f19883.tar.gz
newspipe-766316f73de9a6f9a9eac3ce85701c6436f19883.tar.bz2
newspipe-766316f73de9a6f9a9eac3ce85701c6436f19883.zip
Updated translations for the French language.
Diffstat (limited to 'pyaggr3g470r/views.py')
-rw-r--r--pyaggr3g470r/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 76343ead..82c35bb2 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -118,7 +118,7 @@ def get_locale():
Called before each request to give us a chance to choose
the language to use when producing its response.
"""
- return request.accept_languages.best_match(conf.LANGUAGES.keys())
+ return "fr"#request.accept_languages.best_match(conf.LANGUAGES.keys())
@babel.timezoneselector
def get_timezone():
bgstack15