From bfba84d526f80e14d7c1422ac51a40803f828f9e Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 6 Jul 2008 13:57:10 +0000 Subject: [PATCH] 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 --- app/controllers/projects_controller.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.39.5