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/noticesearchrss.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/noticesearchrss.php')
-rw-r--r-- | actions/noticesearchrss.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php index 2a4b2060d..045531c5a 100644 --- a/actions/noticesearchrss.php +++ b/actions/noticesearchrss.php @@ -86,9 +86,10 @@ class NoticesearchrssAction extends Rss10Action { $q = $this->trimmed('q'); $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)), - 'title' => common_config('site', 'name') . sprintf(_(' Search Stream for "%s"'), $q), + 'title' => sprintf(_('Updates with "%s"'), $q), 'link' => common_local_url('noticesearch', array('q' => $q)), - 'description' => sprintf(_('All updates matching search term "%s"'), $q)); + 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s!'), + $q, common_config('site', 'name'))); return $c; } |