Re: Internationalization and localization

2012-01-22 Thread Daniel Gerzo
On 21.1.2012 22:53, Radek Valachovic wrote: but thats developer edition not released yet well you can use https://github.com/brocaar/django-i18nurls instead (which is basically the same thing which was imported into django) until 1.4 is released. you need django 1.4 and i18n_patterns:

Re: Internationalization and localization

2012-01-21 Thread Radek Valachovic
but thats developer edition not released yet On Fri, Jan 13, 2012 at 3:21 AM, Daniel Gerzo wrote: > On Tue, 6 Dec 2011 16:40:42 -0800 (PST), rentgeeen wrote: > > But what I want to achieve is if I give somebody link: >> >> it/sample/ >> en/sample/ >> >> it will show that page in that language,

Re: Internationalization and localization

2012-01-13 Thread Daniel Gerzo
On Tue, 6 Dec 2011 16:40:42 -0800 (PST), rentgeeen wrote: But what I want to achieve is if I give somebody link: it/sample/ en/sample/ it will show that page in that language, now I have to choose language and then go to the page and see it in that language... you need django 1.4 and i18n_

Re: Internationalization and localization

2012-01-12 Thread Radek Valachovic
Thats what I was also thinking about to do it like that, I have couple websites in django but still beginner learning, with django_easymode I created entire website that translates itself just by switching between languages /en/ /it/ etc... so I can add unlimited...but I would like to know also you

Re: Internationalization and localization

2012-01-01 Thread francescortiz
I always create multilingual sites. What I do is inspired by django- modeltranslation, but I find awkward that it leaves a "default" language field and I prefer to have all my fields defined inside my models. 1. Create a field for each language and a function that returns the field corresponding t

Re: Internationalization and localization

2011-12-06 Thread kenneth gonsalves
On Mon, 2011-12-05 at 19:00 -0800, rentgeeen wrote: > What I want to how to translate stuff from DB, all at django official > say is about static content, what I have only found is this: > > django-modeltranslation -- regards Kenneth Gonsalves -- You received this message because you are subs

Re: Internationalization and localization

2011-12-06 Thread rentgeeen
I am using EASYMODE And that created in my DB 3 INFO textfields for each language, and when is 1 language selected it will show particular text corresponding to selected language. But what I want to achieve is if I give somebody link: it/sample/ en/sample/ it will show that page in that langua

Re: Internationalization and localization

2011-12-06 Thread Lachlan Musicman
There's no official support for translation of what you have in your DB - but that's because it's not a core need of most projects, coupled with the fact that there are a number of ways to do it, none of which are more correct than the other. For example - do you have a mirror db per language, or i

Re: Internationalization and localization

2011-12-06 Thread Andres Reyes
At the moment i don't know of any official support for that kind of internationalization from Django, there are a number of different Packages that try to address the problem with some level of success. In one project of mine i used the approach described in http://snippets.dzone.com/posts/show/297

Internationalization and localization

2011-12-06 Thread rentgeeen
I have a question about internationalization - https://docs.djangoproject.com/en/dev/topics/i18n/internationalization/ What I want to how to translate stuff from DB, all at django official say is about static content, what I have only found is this: http://packages.python.org/django-easymode/i18n