We're now using Django.
And our Language is Chinese.
While you know, In Chinese grammar, the plural case is usually the same as the single case. At least, not just adding an English letter 's' after the word.
So, Since we've set the verbose_name
of every Model classes as Chinese, and found that in the admin panel, all Models are displays as XXs.
Now we have to set the plural manually, just the same as the verbose_name
itself:
class Meta:
db_table = 'the_table_name'
verbose_name = 'object_name'
verbose_name_plural = 'object_name'
So, is there any way to set the global plural transform rules?