diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-06 22:45:09 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-06 22:45:09 -0400 |
commit | 91cba7a76f97a1669cbe9a2c2fa1b3e653786f26 (patch) | |
tree | 41b17a816862539845900c4d28ece7b638e6a77d /actions/grouprss.php | |
parent | aba2fcb45141929d9fdb0ec5e91e3aef8c44d709 (diff) | |
parent | adc5901d21be286ff3459f2cd2bf4373625ac5e5 (diff) |
Merge commit 'jeff-themovie/0.8.x-rss-1.0-descriptions' into 0.8.x
Diffstat (limited to 'actions/grouprss.php')
-rw-r--r-- | actions/grouprss.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/grouprss.php b/actions/grouprss.php index 2bdcaafb2..e1e2d2018 100644 --- a/actions/grouprss.php +++ b/actions/grouprss.php @@ -132,9 +132,10 @@ class groupRssAction extends Rss10Action $c = array('url' => common_local_url('grouprss', array('nickname' => $group->nickname)), - 'title' => $group->nickname, + 'title' => sprintf(_('%s timeline'), $group->nickname), 'link' => common_local_url('showgroup', array('nickname' => $group->nickname)), - 'description' => sprintf(_('Microblog by %s group'), $group->nickname)); + 'description' => sprintf(_('Updates from members of %1$s on %2$s!'), + $group->nickname, common_config('site', 'name'))); return $c; } |