Re: Django multilingual

2008-01-28 Thread code_berzerker
Theres earlier similar discussion. http://groups.google.com/group/django-users/browse_frm/thread/d6e7eab4cc81c7b8 For unlimited landuage support check my post at this thread. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

Re: Django multilingual

2008-01-28 Thread Horst Gutmann
2008/1/28 Ivan Illarionov <[EMAIL PROTECTED]>: > Models that need flexibility have `lang` and `is_translation_of` > fields. Views (or custom managers) filter the output based on `lang` > and add the link to other language if translation exists. Some models > just have two separate text fields for

Re: Django multilingual

2008-01-27 Thread Ivan Illarionov
Models that need flexibility have `lang` and `is_translation_of` fields. Views (or custom managers) filter the output based on `lang` and add the link to other language if translation exists. Some models just have two separate text fields for each language and views (or custom managers) display th

Re: Django multilingual

2008-01-27 Thread maco
Can you share the logic behind the models and views you use. Don't need to go into details, just the philosophy behind it, eg. http://orestis.gr/en/blog/2007/05/14/international-part3/ cheers On Jan 26, 5:36 pm, Ivan Illarionov <[EMAIL PROTECTED]> wrote: > Piotr, having django-multilingual featu

Re: Django multilingual

2008-01-26 Thread Ivan Illarionov
Piotr, having django-multilingual features in the core won't make them any better. Complex models and use-cases will still need custom/manual solutions. It will add unneeded overhead to single-language sites and may even break the sites that use explicit custom solutions (like mine). I am develop

Re: Django multilingual

2008-01-26 Thread Piotr Majewski
I see your point, but i just wanted to post my idea for future features of Djangos ORM. I hope that developers will consider this usefull and important functionality. On 26 Sty, 04:23, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Jan 26, 2008 6:03 AM, Piotr Majewski <[EMAIL PROTECTED]> w

Re: Django multilingual

2008-01-25 Thread Russell Keith-Magee
On Jan 26, 2008 6:03 AM, Piotr Majewski <[EMAIL PROTECTED]> wrote: > > I would love to have the (native) feature that django-multilingual > gives. For me an many developers i know this is vital. Is it any way > that django 1.0 will support multilingual models (content) ? Hi Piotr, Unlikely. The

Re: Django-multilingual

2007-11-20 Thread Marcin Kaszynski
On Nov 20, 2:23 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > from the 'introduction' page, the links to the 'installation' and > 'usage' pages are broken Fixed, thanks! -mk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Django-multilingual

2007-11-19 Thread Kenneth Gonsalves
On 20-Nov-07, at 3:03 AM, Marcin Kaszynski wrote: > this is just a quick note that after a couple of months of hiatus the > Django-Multilingual library went from 'unmaintained' to 'maintained as > time permits', which will hopefully be okay for most uses. from the 'introduction' page, the links

Re: Django-multilingual

2007-11-09 Thread Matthias Urlichs
I've been hacking on django-multilingual a bit in the last few days. Fixes, so far: * import it into git (OK, that's not a fix per se, but how would I work on it otherwise?) * language codes in the database instead of in settings.py. Yay! * allow "unique" constraints in translated fields (they ne

Re: Django-multilingual

2007-10-08 Thread Chris Hoeppner
I had been getting "Model doesn't have field xxx" errors in the admin, and got a quick solution up myself, because I didn't have the time to figure out what's wrong. I simply added field_lang columns to my model, and wrote a template tag to fetch the correct column based on column basename and the

Re: Django-multilingual

2007-10-07 Thread Alex Koshelev
I've use django-multilingual in many projects and happy. It's simple to integrate and use. No other implementations can do it so transparent for developer and end user( django-multilingual extends admin edit page and allows edit entry in all languages very simple). Use it! Chris Hoeppner: > Hi th

Re: Django-multilingual newforms-admin branche?

2007-06-03 Thread [EMAIL PROTECTED]
Hi, On Jun 1, 11:05 am, Glin <[EMAIL PROTECTED]> wrote: > Hi, I wonder if there is branch of django-multilingualfor newforms- > admin? Nope, there is no such branch yet, but I would be more than happy to see someone helping out with this. It would be even better if it was possible to detect and

Re: Django-multilingual newforms-admin branche?

2007-06-01 Thread Russell Keith-Magee
On 6/1/07, Glin <[EMAIL PROTECTED]> wrote: > > Hi, I wonder if there is branch of django-multilingual for newforms- > admin? > > I suppose that newforms admin will be merged with trunk in one or two > releases and lot of people already works with newforms admin, so it > would be great to have the

Re: Django multilingual app, urls

2007-05-25 Thread Thomas Rabaix
I have done a similar work. What I have done so far : - use the LocaleURLMiddleware from contribution page - add a new variable in the context {{LANGUAGE_CODE}} - change the ereg in my urls.py '^([a-z]{,2}/|)news/$' I have in mind to : - hack the url tag to add the language code. - find