How do I change the name of a label in a form?

Hi,

Instead of having on the labels the field name I would like to change it some customized values.

How can I change that ?

Regards

%= form_for(@client_workout) do |f| %>

  <div class="field">     <%= f.label :client_name %><br />     <%= f.text_field :client_name %>   </div>   <div class="field">     <%= f.label :trainer %><br />     <%= f.text_field :trainer %>   </div>   <div class="field">     <%= f.label :duration_min %><br />     <%= f.text_field :duration_min %>   </div>   <div class="field">     <%= f.label :date_of_workout %><br />     <%= f.date_select :date_of_workout %>   </div>   <div class="field">     <%= f.label :paid_amount %><br />     <%= f.text_field :paid_amount %>   </div>   <div class="actions">     <%= f.submit %>   </div> <% end %>

<%= f.label "My label" %><br />

  <%= f.label "My label" %><br />

no

f.label :field, "my name"

tom

I always wondered, is there a way you can change the f.label at a model label so regardless of where its used it always has the updated label? is it somewhere in the localization file? or does this just indicate for rails to have a best guess at what it is. I tried defining them in a language file once but it never seemed to pick them up.

Thanks!!