Re: Django i18n How

2007-01-10 Thread Adrian Holovaty
On 1/10/07, johnny <[EMAIL PROTECTED]> wrote: > I have read the django book at djangobook.com. What I wanted to know > now is, how the database content related to the i18n handled. Do I > have to create a separate tables for each language. I have looked at > symfony-project.com i18n > http://ww

Re: Django i18n How

2007-01-10 Thread johnny
I have read the django book at djangobook.com. What I wanted to know now is, how the database content related to the i18n handled. Do I have to create a separate tables for each language. I have looked at symfony-project.com i18n http://www.symfony-project.com/book/trunk/i18n, a php framework,

Re: Django i18n How

2006-12-28 Thread James Bennett
On 12/28/06, johnny <[EMAIL PROTECTED]> wrote: Can someone tell how Django does i18n. I am thinking of doing my next project using Django. UI is template tagged, based i18n and i18n dependent database content? Django uses the fairly standard gettext mechanism to handle translations; check out

Re: Django i18n How

2006-12-28 Thread Kenneth Gonsalves
On 29-Dec-06, at 9:16 AM, johnny wrote: Can someone tell how Django does i18n. I am thinking of doing my next project using Django. UI is template tagged, based i18n and i18n dependent database content? just like python - gettext, _("matter") in scripts and {% trans "matter" %} in templat

Django i18n How

2006-12-28 Thread johnny
Can someone tell how Django does i18n. I am thinking of doing my next project using Django. UI is template tagged, based i18n and i18n dependent database content? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dj