First attempt
[fnp-django-template.git] / project_name / settings.d / 30-locale.py
1 # -*- coding: utf-8 -*-
2
3 LANGUAGES = (
4     ('pl', u'polski'),
5 #    ('en', u'English'),
6 )
7
8 # Local time zone for this installation. Choices can be found here:
9 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
10 # although not all choices may be available on all operating systems.
11 # On Unix systems, a value of None will cause Django to use the same
12 # timezone as the operating system.
13 # If running in a Windows environment this must be set to the same as your
14 # system time zone.
15 TIME_ZONE = None
16
17 # Language code for this installation. All choices can be found here:
18 # http://www.i18nguy.com/unicode/language-identifiers.html
19 LANGUAGE_CODE = 'pl'
20
21 # If you set this to False, Django will make some optimizations so as not
22 # to load the internationalization machinery.
23 USE_I18N = True
24
25 # If you set this to False, Django will not format dates, numbers and
26 # calendars according to the current locale.
27 USE_L10N = True
28
29 # If you set this to False, Django will not use timezone-aware datetimes.
30 USE_TZ = True