Skip to content

Commit

Permalink
Fix available_on translation within admin/products/_form.html.erb
Browse files Browse the repository at this point in the history
  • Loading branch information
radar committed Nov 28, 2012
1 parent 5d91bc2 commit a74f177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/app/views/spree/admin/products/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<%= f.label :available_on, t(:available_on) %>
<%= f.error_message_on :available_on %>
<% if @product.available_on? %>
<% available_on = l(@product.available_on, :format => t('date_picker.format')) %>
<% available_on = l(@product.available_on, :format => t('spree.date_picker.format')) %>
<% else %>
<% available_on = nil %>
<% end %>
Expand Down

0 comments on commit a74f177

Please sign in to comment.