Ticket #17183: 17183.diff

File 17183.diff, 749 bytes (added by Christopher Medrela, 13 years ago)
  • docs/topics/i18n/translation.txt

    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.  
    3737    controls if Django should implement format localization. See
    3838    :doc:`/topics/i18n/formatting` for more details.
    3939
     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
    4047Internationalization: in Python code
    4148====================================
    4249
Back to Top