From: Jean-Philippe Lang Date: Sun, 6 Jul 2008 13:57:10 +0000 (+0000) Subject: Better naming of activity feed if only one kind of event is displayed (#1323). X-Git-Tag: 0.8.0-RC1~371 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bfba84d526f80e14d7c1422ac51a40803f828f9e;p=redmine.git Better naming of activity feed if only one kind of event is displayed (#1323). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1642 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index 87a93c815..3af77d1ac 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -311,7 +311,10 @@ class ProjectsController < ApplicationController respond_to do |format| format.html { render :layout => false if request.xhr? } - format.atom { render_feed(@events, :title => "#{@project || Setting.app_title}: #{l(:label_activity)}") } + format.atom { + title = (@scope.size == 1) ? l("label_#{@scope.first.singularize}_plural") : l(:label_activity) + render_feed(@events, :title => "#{@project || Setting.app_title}: #{title}") + } end end