On Mon, Jul 21, 2008 at 2:20 AM, Chris Ovenden <[EMAIL PROTECTED]>
wrote:

>
> Hi All!
>
> My first post here, though I've been using Django for about 6 months.
>
> I am building a site that will appear in three different languages
> (maybe more, later), which means that every text field has to have
> three text fields with the text for each language. After toying with
> various inelegant solutions I have settled on have a model like this:
>
> class TextItem(models.Model):
>    en_gb = models.TextField('UK English', blank=True)
>    en_us = models.TextField('US English', blank=True)
>    fr = models.TextField('French', blank=True)
>
>
You might want to look at this:

http://code.google.com/p/django-multilingual/

Good luck

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to