From bea2c542ed000cc90260589665b5e5a1c98676c7 Mon Sep 17 00:00:00 2001 From: MAEDA Go Date: Thu, 1 Feb 2024 08:58:05 +0900 Subject: [PATCH 1/2] Internationalize "Check all/Uncheck all" tooltip in project list for admins --- app/views/projects/_list.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/projects/_list.html.erb b/app/views/projects/_list.html.erb index 1bc8d4687..6fd3b7047 100644 --- a/app/views/projects/_list.html.erb +++ b/app/views/projects/_list.html.erb @@ -8,7 +8,8 @@ <% if @admin_list %> - + <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection', + :title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}" %> <% end %> <% @query.inline_columns.each do |column| %> -- 2.43.0