views:

326

answers:

2

Im creating a fast application with ruby on rails, and after doing a lot of scaffolding and validation im very happy with some of the features that are embeded in RoR... but i live in mexico and all my users would love the application to be in spanish of course. So, i noticed theres a lot of functions that write actual text in english for example time_ago_in_words and all the errors produced by the scaffolding and validation.

Before actually doing those things on my own(like i would in php for example) i wanted to know if theres some kind of language file i could edit (or even download one in spanish). After all, the books im reading and the tutorials(and webcast) im following to learn this new framework are all in english(and fail to include this problem).

Thanks Stack Overflow!

+7  A: 

This guide contains the most recent work on internationalization. A pretty decent reference: http://guides.rails.info/i18n.html

+8  A: 

Here you can find a nice sample app which demonstrates some basics of i18n (internationalization features) in Rails.

Milan Novota