Re: how to let user change the language

2012-08-13 Thread Gelonida N
On 08/13/2012 12:09 PM, Marcin Tustin wrote: This list is not here to find pages in the documentation for you. The documentation has a contents page, and search. Thank you very much for your help. -- You received this message because you are subscribed to the Google Groups "Django users"

Re: how to let user change the language

2012-08-13 Thread Marcin Tustin
This list is not here to find pages in the documentation for you. The documentation has a contents page, and search. On Aug 13, 2012 3:45 AM, "Gelonida N" wrote: > > On 08/13/2012 12:54 AM, Marcin Tustin wrote: > >> So, what part, exactly is a problem? What have you tried? >>

Re: how to let user change the language

2012-08-13 Thread Babatunde Akinyanmi
The link given was the overview page. it has links that lead you to deeper parts of the internalization framework. On 8/13/12, Gelonida N wrote: > > On 08/13/2012 12:54 AM, Marcin Tustin wrote: >> So, what part, exactly is a problem? What have you tried? > > Changing

Re: how to let user change the language

2012-08-13 Thread Gelonida N
I found now the right link to the right doc. https://docs.djangoproject.com/en/1.3/topics/i18n/internationalization/ Must have been blind. I was not seeing this link for multile times and just found the article with the Django docs search funtion. It mentions set_language(request) I'll tyr

Re: how to let user change the language

2012-08-13 Thread Babatunde Akinyanmi
Hi Gelonida, I haven't ever worked with internalization but off the top of my head after reading the documentation, if I was faced with implementing this, I would first add a field to the user profile say 'preferred_lang'. Next, I would write code that would first check if a preferred language

Re: how to let user change the language

2012-08-13 Thread Gelonida N
On 08/13/2012 12:54 AM, Marcin Tustin wrote: So, what part, exactly is a problem? What have you tried? Changing settings.LANGUAGE_CODE to another language, but this is obiously nto what I am looking for, as this does not allow to change the language on a user by use base. If anybody

Re: how to let user change the language

2012-08-12 Thread Marcin Tustin
So, what part, exactly is a problem? What have you tried? On Sun, Aug 12, 2012 at 6:52 PM, Gelonida N wrote: > On 08/12/2012 08:46 PM, Marcin Tustin wrote: > >> This is linked from the Django front page: >>

Re: how to let user change the language

2012-08-12 Thread Gelonida N
On 08/12/2012 08:46 PM, Marcin Tustin wrote: This is linked from the Django front page: https://docs.djangoproject.com/en/1.4/topics/i18n/ Come back with specific questions when you get stuck. Thanks for your answer. I created already all the l18n messages and I can switch the language

Re: how to let user change the language

2012-08-12 Thread Marcin Tustin
This is linked from the Django front page: https://docs.djangoproject.com/en/1.4/topics/i18n/ Come back with specific questions when you get stuck. On Sun, Aug 12, 2012 at 1:10 PM, Gelonida N wrote: > > I'd like to have a web site, where the can switch the language > The

how to let user change the language

2012-08-12 Thread Gelonida N
I'd like to have a web site, where the can switch the language The first time the user connects the language would be the prefered language as sugegsted by the news agent, then the user could select the prefered lanngauge in some user preference settings. What would be the standard way to