[#9489] added invisible labels for reassign select-tag on destroy views

Contributed by Romano Licker.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7684 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-10-29 01:18:10 +00:00
parent fb0c6d433f
commit 52f2879559
5 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<% form_tag({}) do %>
<div class="box">
<p><strong><%= l(:text_enumeration_destroy_question, @enumeration.objects_count) %></strong></p>
<p><%= l(:text_enumeration_category_reassign_to) %>
<p><label for='reassign_to_id'><%= l(:text_enumeration_category_reassign_to) %></label>
<%= select_tag 'reassign_to_id', ("<option>--- #{l(:actionview_instancetag_blank_option)} ---</option>" + options_from_collection_for_select(@enumerations, 'id', 'name')) %></p>
</div>

View File

@ -6,6 +6,7 @@
<p><label><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_issue_category_destroy_assignments) %></label><br />
<% if @categories.size > 0 %>
<label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %></label>:
<%= label_tag "reassign_to_id", l(:description_ticket_reassign), :class => "hidden-for-sighted" %>
<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p>
<% end %>
</div>

View File

@ -10,6 +10,7 @@
<% if @reassignable_to.any? %>
<br />
<label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_wiki_page_reassign_children) %></label>:
<%= label_tag "reassign_to_id", l(:description_wiki_reassign), :class => "hidden-for-sighted" %>
<%= select_tag 'reassign_to_id', wiki_page_options_for_select(@reassignable_to),
:onclick => "$('todo_reassign').checked = true;" %>
<% end %>

View File

@ -1008,4 +1008,6 @@ de:
description_query_sort_criteria_direction: Sortierrichtung
description_available_columns: Verfügbare Spalten
description_selected_columns: Ausgewählte Spalten
description_ticket_reassign: Ticketzuordnung
description_wiki_reassign: Wikiseitenzuordnung

View File

@ -986,3 +986,5 @@ en:
description_query_sort_criteria_direction: Sort direction
description_available_columns: Available Columns
description_selected_columns: Selected Spalten
description_ticket_reassign: Assign issues to
description_wiki_reassign: Assign page to