Thread: Python - Django
View Single Post
  #2 (permalink)  
Old 08-27-2008, 04:33 AM
gaffaro's Avatar   
gaffaro gaffaro is offline
Newbie
 
Join Date: Jul 2008
Posts: 10
Credits: 0
Rep Power: 0
gaffaro is on a distinguished road
Default Re: Python - Django

my code was
Code:
class Student:
    username = models.CharField( maxlength=30)
    ....
    ....
instead of this lets use

Code:
class Student:
    username = models.CharField( _('username'), maxlength=30)
    ....
    ....
or


Code:
class Student:
    username = models.CharField( maxlength=30, verbose_name=_('username'))
    ....
    ....
if u compile message as like this
Code:
~$ django-admin.py makemessages -l MyLanguage
~$ django-admin.py compilemessages
"username" will automaticly insert into the django.po file
so u can add other language support
Reply With Quote