This snippet holds your Django project from automatically changing language of the page to the best fitting one by discovering the client browser language.
I personally needed to show the page to the user for the first time in the default language (English), although there were some translations. User can still change the language (via session cookies).
Insert this middleware BEFORE the Django's django.middleware.locale.LocaleMiddleware
in settings.
1 2 3 | class NoAutoLocaleMiddleware(object):
def process_request(self,request):
request.META['HTTP_ACCEPT_LANGUAGE'] = ''
|
More like this
- FileField having auto upload_to path by junaidmgithub 14 hours, 28 minutes ago
- LazyPrimaryKeyRelatedField by LLyaudet 1 week, 1 day ago
- CacheInDictManager by LLyaudet 1 week, 1 day ago
- MYSQL Full Text Expression by Bidaya0 1 week, 2 days ago
- Custom model manager chaining (Python 3 re-write) by Spotted1270 2 weeks, 1 day ago
Comments
Please login first before commenting.