diff options
Diffstat (limited to 'actions/noticesearchrss.php')
-rw-r--r-- | actions/noticesearchrss.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php index 6df146ed5..482fe6db9 100644 --- a/actions/noticesearchrss.php +++ b/actions/noticesearchrss.php @@ -61,9 +61,9 @@ class NoticesearchrssAction extends Rss10Action { global $config; $q = $this->trimmed('q'); $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)), - 'title' => $config['site']['name'] . _t(' Search Stream for "' . $q . '"'), + 'title' => $config['site']['name'] . sprintf(_(' Search Stream for "%s"'), $q), 'link' => common_local_url('noticesearch', array('q' => $q)), - 'description' => _t('All updates matching search term "') . $q . '"'); + 'description' => sprintf(_('All updates matching search term "%s"'), $q)); return $c; } |