<% @recently_active_objects = Activity.find(:all, :limit => 10, :order => "id DESC") %>
<% @recently_active_objects.group_by{ |object| object.created_at.midnight }.each do |day, objects| %>
<h3><%= day.strftime("%A, %B %e") %></h3>
<% objects.each do |object| %>
<%= activity_message_for_activity(object) %>
<% end %>
<% end %>
How do you localize day.strftime
in this case?