[1.4.X] Fixed #17183 - Added a note regarding LocaleMiddleware at the top of the i18n docs. Thanks krzysiumed for the patch.

Backport of b1f18e95a5 from master
This commit is contained in:
Tim Graham 2012-08-16 16:13:45 -04:00
parent 01b0231717
commit e4b7e7d86d
1 changed files with 7 additions and 0 deletions

View File

@ -37,6 +37,13 @@ from your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting.
controls if Django should implement format localization. See
:doc:`/topics/i18n/formatting` for more details.
.. note::
Make sure you've activated translation for your project (the fastest way is
to check if :setting:`MIDDLEWARE_CLASSES` includes
:mod:`django.middleware.locale.LocaleMiddleware`). If you haven't yet,
see :ref:`how-django-discovers-language-preference`.
Internationalization: in Python code
====================================