X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8786b85863e82ff2685fbf93cff5abaa0fb2a860..98e12313596c58738fc7e3eeaccfde202b91ef2a:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index c76b20585..66f2f6ce3 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'), @@ -33,13 +34,14 @@ LANGUAGE_CODE = 'pl' gettext = lambda s: s LANGUAGES = ( + ('pl', gettext('Polish')), ('de', gettext('German')), ('en', gettext('English')), - ('pl', gettext('Polish')), ('lt', gettext('Lithuanian')), ('fr', gettext('French')), ('ru', gettext('Russian')), - ('es', gettext('Spain')), + ('es', gettext('Spanish')), + ('uk', gettext('Ukrainian')), ) @@ -90,6 +92,8 @@ MIDDLEWARE_CLASSES = [ 'django.middleware.doc.XViewMiddleware', 'pagination.middleware.PaginationMiddleware', 'django.middleware.locale.LocaleMiddleware', + + 'maintenancemode.middleware.MaintenanceModeMiddleware', ] ROOT_URLCONF = 'wolnelektury.urls' @@ -119,11 +123,14 @@ INSTALLED_APPS = [ 'pagination', 'chunks', 'compress', + 'modeltranslation', 'catalogue', 'lessons', 'piston', 'api', 'rosetta', + 'infopages', + 'suggest', ] CACHE_BACKEND = 'locmem:///?max_entries=3000' @@ -148,7 +155,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-uk.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', @@ -177,6 +184,8 @@ THUMBNAIL_PROCESSORS = ( 'sponsors.processors.add_padding', ) +TRANSLATION_REGISTRY = "wolnelektury.translation" + # Load localsettings, if they exist try: from localsettings import *