]> source.dussan.org Git - redmine.git/commitdiff
Merged r22675 and r22676 from trunk to 5.1-stable (#40166).
authorGo MAEDA <maeda@farend.jp>
Sat, 3 Feb 2024 09:03:22 +0000 (09:03 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 3 Feb 2024 09:03:22 +0000 (09:03 +0000)
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22677 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_list.html.erb
app/views/projects/_list.html.erb
app/views/roles/permissions.html.erb
app/views/timelog/_list.html.erb
app/views/trackers/fields.html.erb
app/views/users/_list.html.erb
app/views/workflows/_form.html.erb

index 2dd09d692239765e7f1cbbf381d5b52920c1145a..74b6c94f82cdf7b6721670bbd58d5615c7340e16 100644 (file)
@@ -10,7 +10,7 @@
     <tr>
       <th class="checkbox hide-when-print">
         <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
-              :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
+              :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}" %>
       </th>
       <% query.inline_columns.each do |column| %>
         <%= column_header(query, column, query_options) %>
index 1bc8d46878b21b542909d5880a2e1bcf3cd3eb16..03c5ce0590d075843138f93ff5881a4cb93904f1 100644 (file)
@@ -8,7 +8,8 @@
   <tr>
     <% if @admin_list %>
       <th class="checkbox hide-when-print">
-        <input type="checkbox" name="check_all" id="check_all" value="" class="toggle-selection" title="Check all/Uncheck all">
+        <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
+          :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}" %>
       </th>
     <% end %>
     <% @query.inline_columns.each do |column| %>
index b70e2109b6468546474373e888f5997bfbdbafe9..30162450977680ebc3a16d5f0cbe7b5dd15e4a5c 100644 (file)
@@ -36,7 +36,7 @@
     <th>
         <%= link_to_function('',
                              "toggleCheckboxesBySelector('input.role-#{role.id}')",
-                             :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                             :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                              :class => 'icon-only icon-checked') %>
         <%= content_tag(role.builtin? ? 'em' : 'span', role.name) %>
     </th>
@@ -63,7 +63,7 @@
         <td class="name">
             <%= link_to_function('',
                                  "toggleCheckboxesBySelector('.permission-#{permission.name} input')",
-                                 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                                 :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                                  :class => 'icon-only icon-checked') %>
             <%= humanized_perm_name %>
         </td>
index 62e221f593bfb6aa5c30d37cf09a2fe1266fbe53..af8dd1fa501c217033c55f452c4df535d81c8b0c 100644 (file)
@@ -6,7 +6,7 @@
   <tr>
     <th class="checkbox hide-when-print">
       <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
-        :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
+        :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}" %>
     </th>
     <% @query.inline_columns.each do |column| %>
       <%= column_header(@query, column) %>
index a9fe49351b6ce9a5d5ef628c689885144fe216a8..bc6208d07ac0a8d105710eb451fd4556bf004fd6 100644 (file)
@@ -10,7 +10,7 @@
         <% @trackers.each do |tracker| %>
         <th>
           <%= link_to_function('', "toggleCheckboxesBySelector('input.tracker-#{tracker.id}')",
-                               :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                               :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                                :class => 'icon-only icon-checked') %>
           <%= tracker.name %>
         </th>
@@ -29,7 +29,7 @@
         <% field_name = l("field_#{field}".sub(/_id$/, '')) %>
         <td class="name">
           <%= link_to_function('', "toggleCheckboxesBySelector('input.core-field-#{field}')",
-                               :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                               :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                                :class => 'icon-only icon-checked') %>
           <%= field_name %>
         </td>
@@ -52,7 +52,7 @@
         <tr>
           <td class="name">
             <%= link_to_function('', "toggleCheckboxesBySelector('input.custom-field-#{field.id}')",
-                                 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                                 :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                                  :class => 'icon-only icon-checked') %>
             <%= field.name %>
           </td>
index 59c26da500680e875b4f23194a43210557b08fd1..d2b9fa0ee241e6fafab9dfba91b9056dbf36615f 100644 (file)
@@ -6,7 +6,7 @@
   <tr>
     <th class="checkbox hide-when-print">
       <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
-        :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
+        :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}" %>
     </th>
     <% @query.inline_columns.each do |column| %>
       <%= column_header(@query, column) %>
index d565a02a2e17b8784996f4a9f9ca01f968c9edb8..f0863850f87da2b3bf4628b8fc7d7a63901d5f87 100644 (file)
@@ -3,7 +3,7 @@
   <tr>
     <th>
       <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled)')",
-                           :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                           :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                            :class => 'no-tooltip icon-only icon-checked') %>
       <%=l(:label_current_status)%>
     </th>
@@ -14,7 +14,7 @@
     <% for new_status in @statuses %>
     <td style="width:<%= 75 / @statuses.size %>%;">
       <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).new-status-#{new_status.id}')",
-                           :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                           :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                            :class => 'no-tooltip icon-only icon-checked') %>
       <%= new_status.name %>
     </td>
@@ -28,7 +28,7 @@
   <tr>
     <td class="name">
       <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).old-status-#{old_status.try(:id) || 0}')",
-                           :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
+                           :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
                            :class => 'no-tooltip icon-only icon-checked') %>
       <% if old_status %>
         <% old_status_name = old_status.name %>