X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9c13fb6245a966d5890b11e7e0d8ccb6692cfacd..ba44660a1a87d1c385b3a9e101ce946672fed755:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 888ea34e4..dcf0cc304 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -3,8 +3,9 @@ from os import path PROJECT_DIR = path.abspath(path.dirname(__file__)) -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG +MAINTENANCE_MODE = False ADMINS = [ # ('Your Name', 'your_email@domain.com'), @@ -30,6 +31,19 @@ TIME_ZONE = 'Europe/Warsaw Poland' # http://www.i18nguy.com/unicode/language-identifiers.html LANGUAGE_CODE = 'pl' +gettext = lambda s: s + +LANGUAGES = ( + ('de', gettext('German')), + ('en', gettext('English')), + ('pl', gettext('Polish')), + ('lt', gettext('Lithuanian')), + ('fr', gettext('French')), + ('ru', gettext('Russian')), + ('es', gettext('Spain')), +) + + SITE_ID = 1 # If you set this to False, Django will make some optimizations so as not @@ -77,6 +91,8 @@ MIDDLEWARE_CLASSES = [ 'django.middleware.doc.XViewMiddleware', 'pagination.middleware.PaginationMiddleware', 'django.middleware.locale.LocaleMiddleware', + + 'maintenancemode.middleware.MaintenanceModeMiddleware', ] ROOT_URLCONF = 'wolnelektury.urls' @@ -110,6 +126,7 @@ INSTALLED_APPS = [ 'lessons', 'piston', 'api', + 'rosetta', ] CACHE_BACKEND = 'locmem:///?max_entries=3000' @@ -134,7 +151,7 @@ COMPRESS_JS = { 'all': { 'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js', - 'js/jquery.countdown-en.js', 'js/jquery.countdown-de.js', + 'js/jquery.countdown-de.js', 'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js', 'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js', 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',