<%= n_('This file couldn\'t be saved', 'These %{num} files couldn\'t be saved', @errors.size) % { :num => @errors.size } %>
<%= _('There were problems with the following files:') %>
<% for file in @uploaded_files %>
<% for msg in file.errors.full_messages %>
- <%= file.name %> : <%= msg %>
<% end %>
<% end %>
<% end %>