thanks,
patrick
Hi Patrick,
Currently there's no way to specify a translation for an app name,
because Django just uses the name of your app's package. To solve your
problem, you could rename your app to a German word.
Adrian
--
Adrian Holovaty
holovaty.com | djangoproject.com
I agree that it's a messy solution, but it's the only workaround
available at this point. You could also hand-edit your admin index
template to change the app name to whatever you want (but the admin
breadcrumbs won't be affected).
We should definitely solve this problem in a nicer way. What do you
think? An __appname__ variable in the app's __init__.py file?
Or possibly a __verbose_name__ variable, to use the same terminology
that we already use for models and fields?
Ian Clelland
<clel...@gmail.com>
thanks,
patrick
Nice suggestion -- that's a bit better, despite the underscore in there.