# 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
'lessons',
'piston',
'api',
+ 'rosetta',
]
CACHE_BACKEND = 'locmem:///?max_entries=3000'