mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 11:38:49 +01:00
fix #1088. Small copy-and-paste error in i18n code
This commit is contained in:
parent
2c0cf2e457
commit
f32f1ea9a3
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue