0

How can I translate app name in django-admin-tools?

translate app name

I try to do this https://docs.djangoproject.com/en/1.8/ref/applications/ and it translate app name in standard django admin, but not in django-admin-tools

Dima Kudosh
  • 7,126
  • 4
  • 36
  • 46
  • 3
    Please try to google search: http://stackoverflow.com/questions/19168671/how-to-translate-the-application-name-in-django-cms-admin – Piotr Jaszkowski Sep 03 '15 at 20:43
  • See here if you are using Django >= 1.7 : https://docs.djangoproject.com/en/1.8/ref/applications/ – Paulo Almeida Sep 03 '15 at 20:45
  • OP is referring to the auto-generated menu created by third party add-on django-admin-tools, not the default django admin, to the folks that downvoted this question and linked to incorrect answers. – fzzylogic Oct 17 '18 at 11:55

1 Answers1

2

This solution(https://docs.djangoproject.com/en/1.8/ref/applications/) didn't work, because django-admin-tools didn't use model._meta.app_config.verbose_name or internationalization in menu. I found this patch and it's solved my problem.

Dima Kudosh
  • 7,126
  • 4
  • 36
  • 46