diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-03-15 12:16:21 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-03-15 12:16:21 +0000 |
| commit | 44390aeb5de635afaa48025db774fe8b2c048467 (patch) | |
| tree | 3e87fe65c9232ac345b68378d1e7548d9725f46f /django/conf/project_template | |
| parent | 7989a78baf2c613cc3b75b923f12d178c9bbeb08 (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')
| -rw-r--r-- | django/conf/project_template/settings.py | 4 |
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 = '' |
