summaryrefslogtreecommitdiff
path: root/actions/noticesearchrss.php
diff options
context:
space:
mode:
authorMike Cochrane <mikec@mikenz.geek.nz>2008-07-10 01:10:35 -0400
committerMike Cochrane <mikec@mikenz.geek.nz>2008-07-10 01:10:35 -0400
commitce2b174c4a083128cd14154d0f6c61e19d5cb229 (patch)
tree696fb99c6a85e785ca57f1fd4c6bbc0d04efa2b1 /actions/noticesearchrss.php
parent8fe61b0b9266d6b3ca2786c84287d24a3ae1f4ef (diff)
More _t( to _( and sprintfs in new code
darcs-hash:20080710051035-533db-4a3d824a50545b8a291a81059dcbb97487a13630.gz
Diffstat (limited to 'actions/noticesearchrss.php')
-rw-r--r--actions/noticesearchrss.php4
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;
}