<%= form_for(@translation) do |f| %> <% if @translation.errors.any? %>

<%= pluralize(@translation.errors.count, "error") %> prohibited this translation from being saved:

<% end %>
<%= f.label :locale %>
<%= f.text_field :locale %>
<%= f.label :key %>
<%= f.text_field :key %>
<%= f.label :value %>
<%= f.text_area :value %>
<%= f.label :interpolations %>
<%= f.text_field :interpolations %>
<%= f.label :is_proc %>
<%= f.check_box :is_proc %>
<%= f.submit %>
<% end %>