Displaying 1 result from an estimated 1 matches for "albondiga".
Did you mean:
albondigas
2005 Dec 06
1
globalize plugin question
...#39;d like to:
- translate text in views
- format date/time/numbers using different locales
I won''t be using stuff like:
Locale.set("en-US")
prod = Product.find(1)
prod.name -> "Meatballs"
Locale.set("es-ES")
prod = Product.find(1)
prod.name -> "Albondigas"
Since I have no data in my models that requires translating, is there
any way I can turn off translating model data altogether? I''d rather not
have Globalize override Rails core classes for something I''m not using.
It not a huge deal, but It would be nice if this were p...