diff options
author | Go MAEDA <maeda@farend.jp> | 2024-02-03 09:03:22 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-02-03 09:03:22 +0000 |
commit | 756a03f095cd281dfbff3aaf4c0018d4bc40a67c (patch) | |
tree | 454f0f3f374a0ad4257facf1218c6860c405dbe2 /app/views/workflows | |
parent | fefcb32dea33ab66aabad8e6b2c5ce8a1ed89ebe (diff) | |
download | redmine-756a03f095cd281dfbff3aaf4c0018d4bc40a67c.tar.gz redmine-756a03f095cd281dfbff3aaf4c0018d4bc40a67c.zip |
Merged r22675 and r22676 from trunk to 5.1-stable (#40166).
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22677 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/workflows')
-rw-r--r-- | app/views/workflows/_form.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb index d565a02a2..f0863850f 100644 --- a/app/views/workflows/_form.html.erb +++ b/app/views/workflows/_form.html.erb @@ -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 %> |