How can you tell ugettext that the plural form is not the only form, even if they are equal in English?
class News(models.Model):
class Meta:
verbose_name = _('news')
verbose_name_plural = _('news')
makemessages gives the following:
msgid "news"
msgstr "noticia"
Separating this definition breaks the compilation into "defining a duplicate message ..."
Workarounds I found:
- Add a space at the end of the plural form (the one I use)
- Record application texts in Esperanto? Just kidding.
source
share