More author data in catalogue.
[redakcja.git] / src / redakcja / settings / __init__.py
index 3286f07..ecebe40 100644 (file)
@@ -69,6 +69,8 @@ if CAS_SERVER_URL:
 ROOT_URLCONF = 'redakcja.urls'
 
 INSTALLED_APPS = (
+    'modeltranslation',
+
     'django.contrib.auth',
     'django.contrib.contenttypes',
     'django.contrib.sessions',
@@ -89,6 +91,7 @@ INSTALLED_APPS = (
     'bootstrap4',
     'rest_framework',
     'django_filters',
+    'admin_ordering',
 
     'redakcja.api',
     'catalogue',
@@ -290,6 +293,13 @@ REST_FRAMEWORK = {
 }
 
 
+LANGUAGES = [
+    ('pl', 'polski'),
+    ('de', 'Deutsch'),
+    ('lt', 'lietuvių'),
+]
+
+
 TEST_INTEGRATION = False