0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Fix LocaleMiddleware path in i18n docs

This commit is contained in:
Benedikt Breinbauer 2015-08-21 15:25:48 +02:00
parent ee61839fd5
commit 0d040564d6

View File

@ -43,14 +43,14 @@ Enabling multiple language support
Firstly, make sure the `USE_I18N <https://docs.djangoproject.com/en/1.8/ref/settings/#use-i18n>`_ Django setting is set to ``True``.
To enable multi-language support, add ``django.middleware.i18n.LocaleMiddleware`` to your ``MIDDLEWARE_CLASSES``:
To enable multi-language support, add ``django.middleware.locale.LocaleMiddleware`` to your ``MIDDLEWARE_CLASSES``:
.. code-block:: python
MIDDLEWARE_CLASSES = (
...
'django.middleware.i18n.LocaleMiddleware',
'django.middleware.locale.LocaleMiddleware',
)
This middleware class looks at the users browser language and sets the `language of the site accordingly <https://docs.djangoproject.com/en/1.8/topics/i18n/translation/#how-django-discovers-language-preference>`_.