views:

108

answers:

1

Hello,

I am translating a django app and I would like to translate also the homepage of the django admin site.

On this page are listed the application names and the model class names. I would like to translate the model class name but I don't find how to give a user-friendly name for a model class.

Does anybody know how to do that?

+3  A: 

Look at the Meta options verbose_name and verbose_name_plural, both of which are translatable.

Daniel Roseman
but this will only change the name in home page,but when u click on the link(class) the upper header will display the class name which u mention before.verbose_name will only change the title in home page
ha22109