Project

General

Profile

Actions

Defect #40166

closed

Internationalize "Check all / Uncheck all" tooltip in project list for admins

Added by Liane Hampe 3 months ago. Updated 3 months ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Administration
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

Since Redmine 5.1 there is a new project list for admins using the same query interface as known on projects index page.

With this new project list there is a checkbox on the left for each project in the list.

Check all/Uncheck all not localized

Hovering over the top checkbox displays a tooltipp with "Check all/Uncheck all". For an improved usability and consistency it would help to localize the tooltipp content.

This can be done in app/views/projects/_list.html.erb. Hier ist the relevant code snippet:

<table class="list projects odd-even <%= @query.css_classes %>">
<thead>
  <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"> <--- Not localized text string!
      </th>
    <% end %>
    <% @query.inline_columns.each do |column| %>
      <%= column_header(@query, column) %>
    <% end %>
    <% if @admin_list %>
      <th></th>
    <% end %>
  </tr>
</thead>

Files

Actions

Also available in: Atom PDF