X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..e24e657ebf536f55c1bde66bd41563fae30a98b0:/src/dictionary/constants.py diff --git a/src/dictionary/constants.py b/src/dictionary/constants.py index e99dc3ff0..0cf2a2353 100644 --- a/src/dictionary/constants.py +++ b/src/dictionary/constants.py @@ -1,15 +1,12 @@ -# -*- 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 _ +from django.utils.translation import gettext_lazy as _ FN_TYPES = { - 'pa': _("author's footnotes"), - 'pe': _("Wolne Lektury editorial footnotes"), - 'pr': _("source editorial footnotes"), - 'pt': _("translator's footnotes"), + 'pa': _("przypisy autorskie"), + 'pe': _("przypisy redaktorów Wolnych Lektur"), + 'pr': _("przypisy źródła"), + 'pt': _("przypisy tłumacza"), }