15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# File 'app/helpers/activity_actions_helper.rb', line 15
def followers_sentence(object, options = {})
options[:followers_shown] ||= 2
followers_count = object.follower_count
return "" unless followers_count > 0
followers =
object.followers.
map{ |a| a.subject }.
map{ |l| link_to l.name, l }
followers_other = followers_count - options[:followers_shown]
if followers_other > 0
followers.push t("activity_action.sentence.more", :count => followers_other)
end
t("#{ object.object_type.underscore }.activity_action.sentence.follow", :followers => followers.to_sentence, :count => followers_count, :default => :"activity_action.sentence.follow").html_safe
end
|