summaryrefslogtreecommitdiff
path: root/actions/userrss.php
diff options
context:
space:
mode:
authorJeffery To <jeffery.to@gmail.com>2009-08-06 23:36:24 +0800
committerJeffery To <jeffery.to@gmail.com>2009-08-06 23:36:24 +0800
commitadc5901d21be286ff3459f2cd2bf4373625ac5e5 (patch)
tree6cd344340fefe9d84012f7f0563f2c8386e85914 /actions/userrss.php
parentc8c2d9d7c93f40e7ac81c6211f8ba4c3f6ae91d9 (diff)
Make RSS 1.0 channel descriptions more consistent with RSS 2.0 and Atom descriptions
Diffstat (limited to 'actions/userrss.php')
-rw-r--r--actions/userrss.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/userrss.php b/actions/userrss.php
index 8a940865f..a9f3fd5f8 100644
--- a/actions/userrss.php
+++ b/actions/userrss.php
@@ -88,9 +88,10 @@ class UserrssAction extends Rss10Action
$c = array('url' => common_local_url('userrss',
array('nickname' =>
$user->nickname)),
- 'title' => $user->nickname,
+ 'title' => sprintf(_('%s timeline'), $user->nickname),
'link' => $profile->profileurl,
- 'description' => sprintf(_('Microblog by %s'), $user->nickname));
+ 'description' => sprintf(_('Updates from %1$s on %2$s!'),
+ $user->nickname, common_config('site', 'name')));
return $c;
}