From ce2b174c4a083128cd14154d0f6c61e19d5cb229 Mon Sep 17 00:00:00 2001 From: Mike Cochrane Date: Thu, 10 Jul 2008 01:10:35 -0400 Subject: More _t( to _( and sprintfs in new code darcs-hash:20080710051035-533db-4a3d824a50545b8a291a81059dcbb97487a13630.gz --- actions/noticesearchrss.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/noticesearchrss.php') 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; } -- cgit v1.2.3-54-g00ecf