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

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

<% end %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.label :content %>
<%= f.text_area :content %>
<%= f.submit %>
<% end %>