fix #1088. Small copy-and-paste error in i18n code

This commit is contained in:
Reinier Balt 2011-01-24 16:48:18 +08:00 committed by Reinier Balt
parent 2c0cf2e457
commit f32f1ea9a3

View file

@ -27,7 +27,7 @@
<label for="<%= dom_id(@todo, 'due_label') %>">Due</label>
<%= date_field_tag("todo[due]", dom_id(@todo, 'due'), format_date(@todo.due), "tabindex" => 13) %>
<a href="#" id="<%= dom_id(@todo, 'due_x') %>" class="date_clear" title="<%= t('todos.clear_due_date') %>">
<%= image_tag("delete_off.png", :alt => "<%= t('todos.clear_due_date') %>") %>
<%= image_tag("delete_off.png", :alt => t('todos.clear_due_date') ) %>
</a>
</div>
@ -35,7 +35,7 @@
<label for="<%= dom_id(@todo, 'show_from') %>"><%= t('todos.show_from') %></label>
<%= date_field_tag("todo[show_from]", dom_id(@todo, 'show_from'), format_date(@todo.show_from), "tabindex" => 14) %>
<a href="#" id="<%= dom_id(@todo, 'show_from_x') %>" class="date_clear" title="<%= t('todos.clear_show_from_date') %>">
<%= image_tag("delete_off.png", :alt => "<%= t('todos.clear_show_from_date') %>") %>
<%= image_tag("delete_off.png", :alt => t('todos.clear_show_from_date') ) %>
</a>
</div>