Actually I think that verbose_name_plural should go and instead of
that, an class method for proper pluralization should be added:
class Mystuff(meta.Model):
...
@classmethod
def pluralize(self, n):
return ngettext('singular', 'plural', n)
because otherwise we will allways have this problem with wrong
pluralizations in i18n projects. The current situation only works with
languages where you have singular and plural - but there are many
different concepts of pluralization.
Otherwise +1 on the 'remove simple-minded pluralization after removing
magic model modules'.
bye, Georg
--
I...@Holsman.net -- ++61-3-9877-0909
If everything seems under control, you're not going fast enough. -
Mario Andretti