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
- Browser-native date input field by kytta 1 month, 1 week ago
- Generate and render HTML Table by LLyaudet 1 month, 2 weeks ago
- My firs Snippets by GutemaG 1 month, 2 weeks ago
- FileField having auto upload_to path by junaidmgithub 2 months, 3 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 3 months ago
Comments
Please login first before commenting.