+# -*- coding: utf-8 -*-
# Django settings for wolnelektury project.
from os import path
gettext = lambda s: s
LANGUAGES = tuple(sorted([
- ('pl', gettext('Polish')),
- ('de', gettext('German')),
- ('en', gettext('English')),
- ('lt', gettext('Lithuanian')),
- ('fr', gettext('French')),
- ('ru', gettext('Russian')),
- ('es', gettext('Spanish')),
- ('uk', gettext('Ukrainian')),
+ ('pl', u'polski'),
+ ('de', u'Deutsch'),
+ ('en', u'English'),
+ ('lt', u'lietuvių'),
+ ('fr', u'français'),
+ ('ru', u'русский'),
+ ('es', u'español'),
+ ('uk', u'українська'),
], key=lambda x: x[0]))
'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.marquee.js',
'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',
),
'output_filename': 'js/all?.min.js',