#10582 closed (invalid)
Gettext Translation are not translated by django in the admin in a Form Override
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | contrib.admin | Version: | 1.0 |
Severity: | Keywords: | translation i18n admin | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
This is the problem that i have found.
I have created a simple model like this:
from django.db import models from django.utils.translation import ugettext_lazy as _ # Create your models here. class Test(models.Model): simple_test = models.TextField(_("simple text"))
Then, for some reasons, i want to customize the behaviour of the admin interface, so i want to define
a special form for my model. So there is the code:
from testapp.models import Test from django.contrib import admin from django.utils.translation import ugettext_lazy as _ from django import forms class MyTestForm(forms.ModelForm): simple_test = forms.CharField(_('simple text')) class Meta: model = Test class MyTestAdmin(admin.ModelAdmin): form = MyTestForm admin.site.register(Test, MyTestAdmin)
So, after giving the usual commands django-admin makemessages -l it and django-admin compilemessages, and after writing
the translation in the django.po file, i can't get the translation.
Instead if i change the line:
admin.site.register(Test, MyTestAdmin)
to
admin.site.register(Test)
everything works fine.
Attachments (1)
Change History (4)
by , 16 years ago
Attachment: | translation_test.tar.gz added |
---|
comment:2 by , 16 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
Not a Django bug, but yours. Use label:
class MyTestForm(forms.ModelForm): simple_test = forms.CharField(label=_('simple text'))
Note:
See TracTickets
for help on using tickets.
Test case (create the db with manage.py syncdb)