X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d3d0f68c842db9d5fda99a388f2df96358084166..2d755ff729a4752c26b8dc3526f7ef0dc2c39fc0:/apps/dictionary/constants.py?ds=inline diff --git a/apps/dictionary/constants.py b/apps/dictionary/constants.py new file mode 100644 index 000000000..e99dc3ff0 --- /dev/null +++ b/apps/dictionary/constants.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from __future__ import unicode_literals + +from django.utils.translation import ugettext_lazy as _ + + +FN_TYPES = { + 'pa': _("author's footnotes"), + 'pe': _("Wolne Lektury editorial footnotes"), + 'pr': _("source editorial footnotes"), + 'pt': _("translator's footnotes"), +}