diff options
| author | Tim Graham <timograham@gmail.com> | 2013-07-19 03:35:46 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-19 03:35:46 -0700 |
| commit | e1c737b62fed5b77cb22c2abe01c304bf5aef6f7 (patch) | |
| tree | f19a2229600bb2de79fae0bacc1410d6d004f7ff | |
| parent | 4aa006efd0f7402f795bb0cf893d0747802d93f8 (diff) | |
| parent | cf6c754629a6348847cf0e83a0ffbc8a74547641 (diff) | |
Merge pull request #1374 from seocam/fix_i18n_docs
LocaleMiddleware isn't default anymore (corrected docs)
| -rw-r--r-- | docs/topics/i18n/translation.txt | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt index 0d51bac504..e724837ce1 100644 --- a/docs/topics/i18n/translation.txt +++ b/docs/topics/i18n/translation.txt @@ -29,9 +29,7 @@ use internationalization, you should take the two seconds to set :setting:`USE_I18N = False <USE_I18N>` in your settings file. Then Django will make some optimizations so as not to load the internationalization machinery. You'll probably also want to remove ``'django.core.context_processors.i18n'`` -from your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting and -``'django.middleware.locale.LocaleMiddleware'`` from your -:setting:`MIDDLEWARE_CLASSES` setting. +from your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting. .. note:: @@ -1563,15 +1561,9 @@ If you want to let each individual user specify which language he or she prefers, use ``LocaleMiddleware``. ``LocaleMiddleware`` enables language selection based on data from the request. It customizes content for each user. -``LocaleMiddleware`` is enabled in the default settings file: the -:setting:`MIDDLEWARE_CLASSES` setting contains -``'django.middleware.locale.LocaleMiddleware'``. - -.. versionchanged:: 1.6 - - In previous versions, ``LocaleMiddleware`` wasn't enabled by default. - -Because middleware order matters, you should follow these guidelines: +To use ``LocaleMiddleware``, add ``'django.middleware.locale.LocaleMiddleware'`` +to your :setting:`MIDDLEWARE_CLASSES` setting. Because middleware order +matters, you should follow these guidelines: * Make sure it's one of the first middlewares installed. * It should come after ``SessionMiddleware``, because ``LocaleMiddleware`` |
