When i'm displaying a form and have set verbose_name=lazyt("Title") like this:
title = models.CharField(max_length=250, null=True, blank=True, unique=False, verbose_name=lazyt("Title"))
And i'm rendering a form:
class ContactForm(forms.ModelForm):
"""Form for the Contact model."""
class Meta:
model = Contact
fields = [
"contact_type",
"company_name",
"name",
]
The translations are not working/taken into account, it stays in English