X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7c273a0df15d034e985d0e3fad05653ae548dc54..41e79f5deff58b34f185c8c7426f505793c1d9c7:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index dcf0cc304..0237281e7 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -34,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')), ) @@ -122,11 +123,14 @@ INSTALLED_APPS = [ 'pagination', 'chunks', 'compress', + 'modeltranslation', 'catalogue', 'lessons', 'piston', 'api', 'rosetta', + 'infopages', + 'suggest', ] CACHE_BACKEND = 'locmem:///?max_entries=3000' @@ -151,11 +155,11 @@ 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-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', - 'js/jquery.cookie.js',), + ), 'output_filename': 'js/all?.min.js', }, 'book': { @@ -180,6 +184,11 @@ THUMBNAIL_PROCESSORS = ( 'sponsors.processors.add_padding', ) +TRANSLATION_REGISTRY = "wolnelektury.translation" + +# limit number of filtering tags +MAX_TAG_LIST = 6 + # Load localsettings, if they exist try: from localsettings import *