django-app-name-translation-in-admin icon indicating copy to clipboard operation
django-app-name-translation-in-admin copied to clipboard

Application names i18n in the admin app

trafficstars

==================================== Django app name translation in admin

This application allows translation of application names in the admin interface.

Works with Django 1.3.x (for Django 1.4.x, use next branch).

Installation

Using pip, you can install from the git repo.

For Django 1.4.x (using next branch):

pip install git+git://github.com/bmihelac/django-app-name-translation-in-admin.git@next

Previous versions (using master branch):

pip install git+git://github.com/bmihelac/django-app-name-translation-in-admin.git@master

Configuration and usage

  1. Put app_name_translation_in_admin into your INSTALLED_APPS before django.contrib.admin::

     INSTALLED_APPS = (
        ...
        'app_name_translation_in_admin',
        'django.contrib.admin',
        ...
     )
    
  2. Define the app names and mark them for translations. Use title cased app name.

::

from django.utils.translation import ugettext_lazy as _ 

_(u'Auth') # for auth app_name
_(u'Sites')
_(u'User_Addresses') # for user_addresses app_name

Notes

Related tickets:

  • Ticket #3591 add support for custom app_label and verbose_name <https://code.djangoproject.com/ticket/3591>_. When this ticket is resolved, this application would be excessive.

  • Ticket #10436 - Application names i18n in the admin app broken <https://code.djangoproject.com/ticket/10436>_

  • this thread <https://groups.google.com/d/msg/django-users/-Py-JeMyfF0/lm7lgzlyWu8J>_