I have a form like this :
<fieldset>
<legend>
اضافه کردن یک قالب
</legend>
<%= error_messages_for 'theme' , :header_message => "موارد زیر دارای اشکال می باشند، لطفا دوباره بررسی نمایید :" , :message => nil %>
<ol>
<% form_for @theme do |t| %>
<li>
<%= label :theme , :نام %>
<%= t.text_field :name %>
</li>
<li>
<%= label :theme , :نام_انگلیسی %>
<%= t.text_field :en_name %>
</li>
<li>
<%= label :theme , :قیمت %>
<%= t.text_field :price %>
</li>
<li>
<%= label :theme , :قیمت_ویژه %>
<%= t.text_field :unique_price %>
</li>
<li>
<%= label :theme , :توضیحات %>
<%= t.text_area :description %>
</li>
<li>
<%= submit_tag "اضافه کردن قالب" %>
</li>
<% end %>
</ol>
</fieldset>
in my model i have a validation :
validates_presence_of :name , :en_name , :price , :unique_price , :description , :message => "نباید خالی باشد"
the problem is i want to have a unicode(persian) name in my validation error message, currently it returns something like this error :
موارد زیر دارای اشکال می باشند، لطفا دوباره بررسی نمایید :
* Name نباید خالی باشد
all i want to do is somehow change the 'Name' in error message to a persian word, what can I do ?