summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-08-18 03:42:28 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-08-18 03:42:28 +0000
commit53348672c9da15d29fd19ab3b1977e819fd9c614 (patch)
treebf33ef93514d9c6c2777422234e138b29368762d
parent0a9a59f4d13abbbc0919199a255daf16b2ebc84b (diff)
downloaddjango-53348672c9da15d29fd19ab3b1977e819fd9c614.tar.gz
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
-rw-r--r--django/conf/project_template/settings.py4
1 files changed, 4 insertions, 0 deletions
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 = ''