From 53348672c9da15d29fd19ab3b1977e819fd9c614 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 18 Aug 2006 03:42:28 +0000 Subject: [PATCH] Added USE_I18N setting to default settings.py created for startproject command git-svn-id: http://code.djangoproject.com/svn/django/trunk@3607 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/project_template/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py index 63e07c061a..d6f34a28db 100644 --- a/django/conf/project_template/settings.py +++ b/django/conf/project_template/settings.py @@ -27,6 +27,10 @@ LANGUAGE_CODE = 'en-us' SITE_ID = 1 +# If you set this to False, Django will make some optimizations so as not +# to load the internationalization machinery. +USE_I18N = True + # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = ''