Commit 44390aeb authored by Jannis Leidel's avatar Jannis Leidel
Browse files

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
parent 7989a78b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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 = ''
+7 −2
Original line number Diff line number Diff line
@@ -249,8 +249,13 @@ Format localization

.. versionadded:: 1.2

Django's formatting system is disabled by default. To enable it, it's necessary
to set :setting:`USE_L10N = True <USE_L10N>` in your settings file.
Django's formatting system is disabled by default. To enable it, it's
necessary to set :setting:`USE_L10N = True <USE_L10N>` in your settings file.

.. note::
    The default :file:`settings.py` file created by
    :djadmin:`django-admin.py startproject <startproject>` includes
    :setting:`USE_L10N = True <USE_L10N>` for convenience.

When using Django's formatting system, dates and numbers on templates will be
displayed using the format specified for the current locale. Two users