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/userrss.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'actions/userrss.php') diff --git a/actions/userrss.php b/actions/userrss.php index 92a6bccc9..445afeca5 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -30,20 +30,20 @@ class UserrssAction extends Rss10Action { function init() { $nickname = $this->trimmed('nickname'); $this->user = User::staticGet('nickname', $nickname); - + if (!$this->user) { - common_user_error(_t('No such nickname.')); + common_user_error(_('No such nickname.')); return false; } else { return true; } } - + function get_notices($limit=0) { - + $user = $this->user; $notices = array(); - + $notice = DB_DataObject::factory('notice'); $notice->profile_id = $user->id; # user id === profile id $notice->orderBy('created DESC'); @@ -51,26 +51,26 @@ class UserrssAction extends Rss10Action { $notice->limit(0, $limit); } $notice->find(); - + while ($notice->fetch()) { $notices[] = clone($notice); } - + return $notices; } - + function get_channel() { $user = $this->user; $profile = $user->getProfile(); $c = array('url' => common_local_url('userrss', - array('nickname' => + array('nickname' => $user->nickname)), 'title' => $user->nickname, 'link' => $profile->profileurl, - 'description' => _t('Microblog by ') . $user->nickname); + 'description' => sprintf(_('Microblog by %s'), $user->nickname)); return $c; } - + function get_image() { $user = $this->user; $profile = $user->getProfile(); -- cgit v1.2.3-54-g00ecf