I need to develop a Ruby on Rails application for my company and don’t know how to configure it for a French site.
I do not need support for multiple languages, I just want to have error messages, plurality and date format for the French language.
I tried to install:
config.i18n.default_locale = :fr
in my application.rbfile, but it has no effect.
Are these features already implemented in RoR 3? Or will I have to translate these things myself?
source
share