Settings.py constants
TIME_ZONE = \'Europe/Vilnius\' LANGUAGE_CODE = \'lt\' USE_I18N = True USE_L10N = True USE_TZ = True MIDDLEWARE_CLASSES = ( \'django.mi
Well, I have found the answer myself.
I needed to add the following line in settings.py:
settings.py
LOCALE_PATHS = (os.path.join(os.path.dirname(__file__), '../locale/'),)