diff options
author | Adrian Holovaty <adrian@holovaty.com> | 2006-08-18 03:43:55 +0000 |
---|---|---|
committer | Adrian Holovaty <adrian@holovaty.com> | 2006-08-18 03:43:55 +0000 |
commit | e7a91d3e0666a0b2a7a518325eff623e46e345b3 (patch) | |
tree | abfa4ce59fb41eb2b0668724fc5fe4801f6dab58 | |
parent | 53348672c9da15d29fd19ab3b1977e819fd9c614 (diff) | |
download | django-e7a91d3e0666a0b2a7a518325eff623e46e345b3.tar.gz |
Added note to 'If you don't need internationalization' section of docs/i18n.txt about removing the i18n context processor
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r-- | docs/i18n.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/i18n.txt b/docs/i18n.txt index e12900c2f9..4d0d92b082 100644 --- a/docs/i18n.txt +++ b/docs/i18n.txt @@ -48,9 +48,10 @@ bit of i18n-related overhead in certain places of the framework. If you don't use internationalization, you should take the two seconds to set ``USE_I18N = False`` in your settings file. If ``USE_I18N`` is set to ``False``, then Django will make some optimizations so as not to load the -internationalization machinery. +internationalization machinery. See the `documentation for USE_I18N`_. -See the `documentation for USE_I18N`_. +You'll probably also want to remove ``'django.core.context_processors.i18n'`` +from your ``TEMPLATE_CONTEXT_PROCESSORS`` setting. .. _documentation for USE_I18N: http://www.djangoproject.com/documentation/settings/#use-i18n |