X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4c48c47d0b84e516114c16ee191359166e93a51c..7b63c935ede34464745fd7b2f7ace69ac8254a43:/apps/catalogue/constants.py

diff --git a/apps/catalogue/constants.py b/apps/catalogue/constants.py
index d75d6b4b..03cef603 100644
--- a/apps/catalogue/constants.py
+++ b/apps/catalogue/constants.py
@@ -1,4 +1,9 @@
 # -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.utils.translation import ugettext_lazy as _
 
 TRIM_BEGIN = " TRIM_BEGIN "
 TRIM_END = " TRIM_END "
@@ -11,3 +16,11 @@ MASTERS = ['powiesc',
            'dramat_wierszowany_lp',
            'dramat_wspolczesny',
            ]
+
+STAGES = [
+    ('Draft', _('Draft')),
+    ('Comments', _('Comments')),
+    ('Comments review', _('Comments review')),
+    ('Proofreading', _('Proofreading')),
+    ('Publication', _('Publication')),
+]