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