It depends on if a particular News is shared across languages, or if  
each language has its own news.

For me, one of my projects has translations of objects where each  
object should have all translations. Thus, I have something like a  
News and then NewsTranslations with ForeignKey back to News. Then I  
just do News.objects.filter(newstranslations__lang=lang) or whatever.

In admin I'd then have NewsAdmin inline a NewsTranslationsInline or  
something.

On Oct 13, 2008, at 8:48 AM, Alex Rades wrote:

> Hi,
> if we have a model like:
>
> class News(models.Model):
>    title = models.CharField(..)
>    content = models.TextField(...)
>
> Imagine i want to work with different language (this means adding
> multilingual content via admin and retrieving it from views/templates)
> What is the best way to develop this kind of multi language support?
> (Of course I dont want to add title_en title_es... )
>
> Thank  you

-- 
Cortland Klein <[EMAIL PROTECTED]> +1 408 506 9791
http://pixelcort.com/
2260 California Street #13
Mountain View, CA, USA 94040




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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