mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
Clean up a couple hardcoded strings in alt tags
This commit is contained in:
parent
cb5114922e
commit
d7e9b384f7
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@
|
|||
<label for="<%= dom_id(@todo, 'due_label') %>"><%= Todo.human_attribute_name('due') %></label>
|
||||
<%= date_field_tag("todo[due]", dom_id(@todo, 'due'), format_date(@todo.due), "tabindex" => next_tab_index) %>
|
||||
<a href="#" id="<%= dom_id(@todo, 'due_x') %>" class="date_clear" title="<%= t('todos.clear_due_date') %>">
|
||||
<%= image_tag("blank.png", :alt => "Clear due date", :class => "delete_item") %>
|
||||
<%= image_tag("blank.png", :alt => t('todos.clear_due_date'), :class => "delete_item") %>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
@ -45,7 +45,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" => next_tab_index) %>
|
||||
<a href="#" id="<%= dom_id(@todo, 'show_from_x') %>" class="date_clear" title="<%= t('todos.clear_show_from_date') %>">
|
||||
<%= image_tag("blank.png", :alt => "Clear show from date", :class => "delete_item") %>
|
||||
<%= image_tag("blank.png", :alt => t('todos.clear_show_from_date'), :class => "delete_item") %>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue