X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/2f9cb34a07fcd98effda2fa900e48c31813f14c8..055beb6288dc307702d952431bf5775c7f0e34f4:/apps/catalogue/constants.py diff --git a/apps/catalogue/constants.py b/apps/catalogue/constants.py index dbdb5748..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 " @@ -16,9 +18,9 @@ MASTERS = ['powiesc', ] STAGES = [ - 'Draft', - 'Comments', - 'Comments review', - 'Proofreading', - 'Publication', - ] \ No newline at end of file + ('Draft', _('Draft')), + ('Comments', _('Comments')), + ('Comments review', _('Comments review')), + ('Proofreading', _('Proofreading')), + ('Publication', _('Publication')), +]