stage name translation
[redakcja.git] / apps / catalogue / constants.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from django.utils.translation import ugettext_lazy as _
7
8 TRIM_BEGIN = " TRIM_BEGIN "
9 TRIM_END = " TRIM_END "
10
11 MASTERS = ['powiesc',
12            'opowiadanie',
13            'liryka_l',
14            'liryka_lp',
15            'dramat_wierszowany_l',
16            'dramat_wierszowany_lp',
17            'dramat_wspolczesny',
18            ]
19
20 STAGES = [
21     ('Draft', _('Draft')),
22     ('Comments', _('Comments')),
23     ('Comments review', _('Comments review')),
24     ('Proofreading', _('Proofreading')),
25     ('Publication', _('Publication')),
26 ]