<%= _("SYNC SUMMARY") %>
<%= _("The synchronization of \"%s\" has completed. Below is a summary of new errata.") % @repo.name %>
<% if @errata_counts[:total] > 100 %>
<%= _("A large number of errata were synced for this repository, so only the first 100 are shown.") %>
<% end -%>
|
<% ['security', 'bugfix', 'enhancement'].each do |errata_type| %>
<% next if @errata[errata_type].nil? %>
<%= _("%s Errata") % errata_type.titleize %>
<% @errata[errata_type].each do |erratum| %>
<%= render :partial => 'erratum', :locals => {:erratum => erratum} %>
<% end -%>
<% end -%>
|
|
|
|