From a960d8e805fd07061d09f6ce3c7db4fc77ddf9d7 Mon Sep 17 00:00:00 2001 From: MAEDA Go Date: Thu, 1 Feb 2024 09:11:44 +0900 Subject: [PATCH 2/2] Add spaces around the slash for consistency and better readability --- app/views/issues/_list.html.erb | 2 +- app/views/roles/permissions.html.erb | 4 ++-- app/views/timelog/_list.html.erb | 2 +- app/views/trackers/fields.html.erb | 6 +++--- app/views/users/_list.html.erb | 2 +- app/views/workflows/_form.html.erb | 6 +++--- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/views/issues/_list.html.erb b/app/views/issues/_list.html.erb index 2dd09d692..74b6c94f8 100644 --- a/app/views/issues/_list.html.erb +++ b/app/views/issues/_list.html.erb @@ -10,7 +10,7 @@ <%= 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)}" %> <% query.inline_columns.each do |column| %> <%= column_header(query, column, query_options) %> diff --git a/app/views/roles/permissions.html.erb b/app/views/roles/permissions.html.erb index b70e2109b..301624509 100644 --- a/app/views/roles/permissions.html.erb +++ b/app/views/roles/permissions.html.erb @@ -36,7 +36,7 @@ <%= 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) %> @@ -63,7 +63,7 @@ <%= 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 %> diff --git a/app/views/timelog/_list.html.erb b/app/views/timelog/_list.html.erb index 62e221f59..af8dd1fa5 100644 --- a/app/views/timelog/_list.html.erb +++ b/app/views/timelog/_list.html.erb @@ -6,7 +6,7 @@ <%= 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)}" %> <% @query.inline_columns.each do |column| %> <%= column_header(@query, column) %> diff --git a/app/views/trackers/fields.html.erb b/app/views/trackers/fields.html.erb index c4de3ab45..684e539d6 100644 --- a/app/views/trackers/fields.html.erb +++ b/app/views/trackers/fields.html.erb @@ -10,7 +10,7 @@ <% @trackers.each do |tracker| %> <%= 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 %> @@ -29,7 +29,7 @@ <% field_name = l("field_#{field}".delete_suffix('_id')) %> <%= 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 %> @@ -52,7 +52,7 @@ <%= 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 %> diff --git a/app/views/users/_list.html.erb b/app/views/users/_list.html.erb index 59c26da50..d2b9fa0ee 100644 --- a/app/views/users/_list.html.erb +++ b/app/views/users/_list.html.erb @@ -6,7 +6,7 @@ <%= 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)}" %> <% @query.inline_columns.each do |column| %> <%= column_header(@query, column) %> 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 @@ <%= 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)%> @@ -14,7 +14,7 @@ <% for new_status in @statuses %> <%= 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 %> @@ -28,7 +28,7 @@ <%= 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 %> -- 2.43.0