I have defined translated attributes and model names in the translation file and Modelname.human_attribute_name(...) returns the correctly translated attribute name, but the att
Kudos to Ian, just wanted to add that in order to highlight the label in case of a failed validation you need to write it like this:
<%= f.label "title", Model.human_attribute_name("title") %>
For some reason, writing it just like:
<%= f.label "title" %>
doesn't display the translation.