uncommented uk-l10n
[wolnelektury.git] / wolnelektury / settings.py
index 2ece0b1..9396a1d 100644 (file)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 # Django settings for wolnelektury project.
 from os import path
 
@@ -33,16 +34,16 @@ LANGUAGE_CODE = 'pl'
 
 gettext = lambda s: s
 
-LANGUAGES = (
-    ('pl', gettext('Polish')),
-    ('de', gettext('German')),
-    ('en', gettext('English')),
-    ('lt', gettext('Lithuanian')),
-    ('fr', gettext('French')),
-    ('ru', gettext('Russian')),
-    ('es', gettext('Spanish')),
-    ('uk', gettext('Ukrainian')),
-)
+LANGUAGES = tuple(sorted([
+    ('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]))
 
 
 SITE_ID = 1
@@ -158,6 +159,7 @@ COMPRESS_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.marquee.js',
             'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',
             ),
         'output_filename': 'js/all?.min.js',