summaryrefslogtreecommitdiff
path: root/django/conf/project_template/settings.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-03-15 12:16:21 +0000
committerJannis Leidel <jannis@leidel.info>2010-03-15 12:16:21 +0000
commit44390aeb5de635afaa48025db774fe8b2c048467 (patch)
tree3e87fe65c9232ac345b68378d1e7548d9725f46f /django/conf/project_template/settings.py
parent7989a78baf2c613cc3b75b923f12d178c9bbeb08 (diff)
Fixed #13045 - Add USE_L10N to the project skeleton settings.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12786 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/conf/project_template/settings.py')
-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 ee08e9712b..ee4c9b5e96 100644
--- a/django/conf/project_template/settings.py
+++ b/django/conf/project_template/settings.py
@@ -39,6 +39,10 @@ SITE_ID = 1
# to load the internationalization machinery.
USE_I18N = True
+# If you set this to False, Django will not format dates, numbers and
+# calendars according to the current locale
+USE_L10N = True
+
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = ''