Added FR translation.
[wolnelektury.git] / wolnelektury / settings.py
index b7c55fd..8a82221 100644 (file)
@@ -33,7 +33,7 @@ LANGUAGE_CODE = 'pl'
 
 gettext = lambda s: s
 
-LANGUAGES = (
+LANGUAGES = tuple(sorted([
     ('pl', gettext('Polish')),
     ('de', gettext('German')),
     ('en', gettext('English')),
@@ -42,7 +42,7 @@ LANGUAGES = (
     ('ru', gettext('Russian')),
     ('es', gettext('Spanish')),
     ('uk', gettext('Ukrainian')),
-)
+], key=lambda x: x[0]))
 
 
 SITE_ID = 1
@@ -153,8 +153,8 @@ COMPRESS_JS = {
         'output_filename': 'js/jquery.min.js',
     },
     'all': {
-        'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', 
-            'js/jquery.countdown.js', 'js/jquery.countdown-pl.js', 
+        '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-uk.js',
             'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
             'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',