X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0c4fa3e011fd7338ecb72a7a9d752a5e3ad1c26d..8786b85863e82ff2685fbf93cff5abaa0fb2a860:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 888ea34e4..c76b20585 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -30,6 +30,19 @@ TIME_ZONE = 'Europe/Warsaw Poland' # http://www.i18nguy.com/unicode/language-identifiers.html LANGUAGE_CODE = 'pl' +gettext = lambda s: s + +LANGUAGES = ( + ('de', gettext('German')), + ('en', gettext('English')), + ('pl', gettext('Polish')), + ('lt', gettext('Lithuanian')), + ('fr', gettext('French')), + ('ru', gettext('Russian')), + ('es', gettext('Spain')), +) + + SITE_ID = 1 # If you set this to False, Django will make some optimizations so as not @@ -110,6 +123,7 @@ INSTALLED_APPS = [ 'lessons', 'piston', 'api', + 'rosetta', ] CACHE_BACKEND = 'locmem:///?max_entries=3000'