search for: l18n

Displaying 3 results from an estimated 3 matches for "l18n".

Did you mean: i18n
2005 Dec 30
0
L18n help
i need some help writing some code in rails about cookies. what i want to do is depending on the cookie value sent i want to set the language for the page . the code is something like in applicationcontroller.rb $KCODE = 'u' # lets go unicode, you will have less trouble ... require 'jcode' # and use the right string methods for utf-8 # The directory where translation files
2009 Oct 29
0
l18n errors
Hi everybody, I followed the instructions on http://guides.rubyonrails.org/i18n.html exspesly point 2.2 and I couldn''t get it to work properly. After I decided to disable it, my whole application crashed and no View or Controller is working. Any suggestions on this error? syntax error on line 140, col 13: ` H� 4� � The snippet at the bottom is the last call on the stack.
2010 Apr 26
11
Rails I18n
I was just wondering about locales and .yml files. Is it better to store the multilanguage strings in .yml files than in databases? And if yes, why? I was also wondering how rails are loading this files (for example, I have 4 languages in my web app, each has her own .yml file, will my rails app loads all the files in ram and then it will call each variable inside my web app? Or something else?)