Change form validation attribute name
Using rails' i18n gem and a en.yml file you can change the attribute of a form object:
en:
attributes:
fname:
one: "First name"
Then you will see the new attribute name:
<div>Errors:</div>
<div>First name can't be blank</div>