This is a question merely about code style.
I am working on a multilingual app in Ruby on Rails 4. My personal feeling tells me ideally to not do calls to I18n.t()
in models, I just think model methods should be consistent, and not depending on varying environmental situations like the current user's locale, especially since I18n is usually related to views. I've got a few questions about this though:
- Do you think this is a good rule in general?
- How should I manage error messages in custom validation methods? Should I make exceptions for that scenario?
- How should I manage customised keys that we use in form fields, such as the displayed text of a
collection_select
, that are partially translated? Is there a way to use view helpers for these occasions, that is (almost) as convenient as building model methods for these?