From d96abf6d8232681e494b581a5c06a943dd9c6359 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 28 Feb 2024 14:35:35 +0100 Subject: 🩹 fix type label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar_common/models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ishtar_common/models.py') diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 212026206..4d9225a3a 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -999,8 +999,8 @@ class Language(GeneralType): iso_code = models.CharField(_("ISO code"), null=True, blank=True, max_length=2) class Meta: - verbose_name = _("Language") - verbose_name_plural = _("Languages") + verbose_name = _("Language type") + verbose_name_plural = _("Language types") ADMIN_SECTION = _("Documents") @@ -4071,8 +4071,8 @@ post_delete.connect(post_save_cache, sender=DocumentTag) class ShootingAngle(OrderedHierarchicalType): class Meta: - verbose_name = _("Shooting angle") - verbose_name_plural = _("Shooting angles") + verbose_name = _("Shooting angle type") + verbose_name_plural = _("Shooting angle types") ordering = ("order", "label",) ADMIN_SECTION = _("Documents") -- cgit v1.2.3