I'm trying to find a way to translate the headers of the rails date_field.
<%= form_for @foo do |f| %>
<%= f.date_field :startdate %>
<% end %>
I allready have my swedish locale and it works when outputting things in the view (eg: I18n.localize(@startdate, format: "%a %e %b")), but I can't find anywhere how to translate the date helper.
I'm on Rails 4.