Hi ,
I am new to ROR . I am trying add translations to my application.
I have added translations for the controllers.
1. Where to add translations for models as i am not having
any /config/locales -> models folder ->en.yml file .
2. In the model i am having lines like
validates_presence_of :name, :message => “Name cannot be blank!”
If i want to add translations for the ms Name cannot be blank , Shall i
put directly as like
validates_presence_of :name, :message => I18n.t(str_name_notblank)
Please give suggestions