diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-03-10 13:01:46 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-03-10 13:01:46 +0000 |
commit | 06a92fe0d0b7923da034d58cb31cd0fdc3992c13 (patch) | |
tree | 295ffa2aa9cd76434dd7d4b5373ede157ea4b05b /app/views/timelog/report.html.erb | |
parent | 3126ff8388c7f2b6491d7f0965b1c81ae304725a (diff) | |
download | redmine-06a92fe0d0b7923da034d58cb31cd0fdc3992c13.tar.gz redmine-06a92fe0d0b7923da034d58cb31cd0fdc3992c13.zip |
Adds label_total_time string (#13337).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11582 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog/report.html.erb')
-rw-r--r-- | app/views/timelog/report.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/timelog/report.html.erb b/app/views/timelog/report.html.erb index 4b9f0befe..d88ee782a 100644 --- a/app/views/timelog/report.html.erb +++ b/app/views/timelog/report.html.erb @@ -30,7 +30,7 @@ <% unless @report.criteria.empty? %> <div class="total-hours"> -<p><%= l(:label_total) %>: <%= html_hours(l_hours(@report.total_hours)) %></p> +<p><%= l(:label_total_time) %>: <%= html_hours(l_hours(@report.total_hours)) %></p> </div> <% unless @report.hours.empty? %> @@ -45,13 +45,13 @@ <% @report.periods.each do |period| %> <th class="period" width="<%= columns_width %>%"><%= period %></th> <% end %> - <th class="total" width="<%= columns_width %>%"><%= l(:label_total) %></th> + <th class="total" width="<%= columns_width %>%"><%= l(:label_total_time) %></th> </tr> </thead> <tbody> <%= render :partial => 'report_criteria', :locals => {:criterias => @report.criteria, :hours => @report.hours, :level => 0} %> <tr class="total"> - <td><%= l(:label_total) %></td> + <td><%= l(:label_total_time) %></td> <%= ('<td></td>' * (@report.criteria.size - 1)).html_safe %> <% total = 0 -%> <% @report.periods.each do |period| -%> |