Hi All,
In order to support internalization in our application, we are giving an option to the user to select the language. But the problem here is, when one user select one language for example ‘Chinese’, all other users browser’s language also changing to Chinese.
We want something like changing language at client level instead of server level. Is it possible in rails?
Below is the code I am using for setting locale.
*if params[:lang]*
I18n.default_locale = params[:lang]
end
I18n.locale = I18n.default_locale
Please let me know if any suggestion on this.