summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2024-02-03 08:57:06 +0000
committerGo MAEDA <maeda@farend.jp>2024-02-03 08:57:06 +0000
commit5d324bdd450112032a12a09444e9caf42a5c446c (patch)
treeda48d02992c7b71fd56103656f29a5565248df7c /app/views/projects
parent120be1bfa4307036ec56a4ea80c6b9d08dc97551 (diff)
downloadredmine-5d324bdd450112032a12a09444e9caf42a5c446c.tar.gz
redmine-5d324bdd450112032a12a09444e9caf42a5c446c.zip
Internationalize "Check all / Uncheck all" tooltip in project list for admins (#40166).
git-svn-id: https://svn.redmine.org/redmine/trunk@22675 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/_list.html.erb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/projects/_list.html.erb b/app/views/projects/_list.html.erb
index 1bc8d4687..03c5ce059 100644
--- a/app/views/projects/_list.html.erb
+++ b/app/views/projects/_list.html.erb
@@ -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| %>