diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index 8826f6d..d39877a 100644
a
|
b
|
from your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting.
|
37 | 37 | controls if Django should implement format localization. See |
38 | 38 | :doc:`/topics/i18n/formatting` for more details. |
39 | 39 | |
| 40 | .. note:: |
| 41 | |
| 42 | Make sure you've activated translation for your apps (the fastest way is to |
| 43 | check if :setting:`MIDDLEWARE_CLASSES` includes |
| 44 | :mod:`django.middleware.locale.LocaleMiddleware`). If you haven't yet, |
| 45 | see :ref:`how-django-discovers-language-preference`. |
| 46 | |
40 | 47 | Internationalization: in Python code |
41 | 48 | ==================================== |
42 | 49 | |