X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/05f67adb27390c7a9cf214e83550d3bbca88c8f2..0a9fde379ec7a998a64f0fb2d157fe8e94903869:/apps/catalogue/constants.py?ds=sidebyside

diff --git a/apps/catalogue/constants.py b/apps/catalogue/constants.py
index 0c842324..03cef603 100644
--- a/apps/catalogue/constants.py
+++ b/apps/catalogue/constants.py
@@ -3,6 +3,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 "
 
@@ -14,3 +16,11 @@ MASTERS = ['powiesc',
            'dramat_wierszowany_lp',
            'dramat_wspolczesny',
            ]
+
+STAGES = [
+    ('Draft', _('Draft')),
+    ('Comments', _('Comments')),
+    ('Comments review', _('Comments review')),
+    ('Proofreading', _('Proofreading')),
+    ('Publication', _('Publication')),
+]