I am using refinery-cms and have created a custom engine, which houses a jobs model. When I use that model in a form, I add the following code to pull one of the model's fields:
<%= f.label :postingTitle -%>
<%= f.text_field :postingTitle, :class => 'larger widest' -%>
The example above pulls the postingTitle field. How do I change the label for posting title? I thought it was a case of adding a translation in the en.yml file, which I did and wrote as follow:
activerecord:
models:
jobs: jobs
attributes:
jobs:
postingTitle: Job Title
But that didn't work - and if I add any more that one attribute I also get a rails error. Any help would be greatly appreciated.
Thanks.