X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d9cece3698e91c621a933cf9bd93b8b4bd207dfe..HEAD:/src/catalogue/models/fragment.py diff --git a/src/catalogue/models/fragment.py b/src/catalogue/models/fragment.py index 7eca8556f..6609ba8f5 100644 --- a/src/catalogue/models/fragment.py +++ b/src/catalogue/models/fragment.py @@ -1,11 +1,10 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from django.conf import settings from django.contrib.contenttypes.fields import GenericRelation from django.urls import reverse from django.db import models -from django.utils.translation import gettext_lazy as _ from newtagging import managers from catalogue.models import Tag from wolnelektury.utils import cached_render, clear_cached_renders @@ -25,8 +24,8 @@ class Fragment(models.Model): class Meta: ordering = ('book', 'anchor',) - verbose_name = _('fragment') - verbose_name_plural = _('fragments') + verbose_name = 'fragment' + verbose_name_plural = 'fragmenty' app_label = 'catalogue' def get_absolute_url(self):