From 87b494f1ebbe7640d194ef322af12fdf378295df Mon Sep 17 00:00:00 2001 From: Mike Cochrane Date: Tue, 8 Jul 2008 05:45:31 -0400 Subject: Convert _t() to _() for gettext. darcs-hash:20080708094531-533db-83399a46e6ec4c0fcc6249b0235961f969d1ae73.gz --- actions/publicrss.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'actions/publicrss.php') diff --git a/actions/publicrss.php b/actions/publicrss.php index 93314ee32..0916da009 100644 --- a/actions/publicrss.php +++ b/actions/publicrss.php @@ -28,41 +28,41 @@ class PublicrssAction extends Rss10Action { function init() { return true; } - + function get_notices($limit=0) { - + $user = $this->user; $notices = array(); - + $notice = DB_DataObject::factory('notice'); # FIXME: bad performance - + $notice->whereAdd('EXISTS (SELECT user.id from user where user.id = notice.profile_id)'); - + $notice->orderBy('created DESC'); - + if ($limit != 0) { $notice->limit(0, $limit); } $notice->find(); - + while ($notice->fetch()) { $notices[] = clone($notice); } - + return $notices; } - + function get_channel() { global $config; $c = array('url' => common_local_url('publicrss'), - 'title' => $config['site']['name'] . _t(' Public Stream'), + 'title' => sprintf(_('%s Public Stream'), $config['site']['name']), 'link' => common_local_url('public'), - 'description' => _t('All updates for ') . $config['site']['name']); + 'description' => sprintf(_('All updates for %s'), $config['site']['name'])); return $c; } - + function get_image() { return NULL; } -- cgit v1.2.3-54-g00ecf