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/all.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actions/all.php') diff --git a/actions/all.php b/actions/all.php index c19440052..9ca020015 100644 --- a/actions/all.php +++ b/actions/all.php @@ -31,20 +31,20 @@ class AllAction extends StreamAction { $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->client_error(_t('No such user: ') . $nickname); + $this->client_error(sprintf(_('No such user: %s'), $nickname)); return; } $profile = $user->getProfile(); if (!$profile) { - common_server_error(_t('User record exists without profile.')); + common_server_error(_('User record exists without profile.')); return; } # Looks like we're good; show the header - common_show_header($profile->nickname . _t(" and friends"), + common_show_header(sprintf(_("%s and friends"), $profile->nickname), array($this, 'show_header'), $user, array($this, 'show_top')); @@ -58,7 +58,7 @@ class AllAction extends StreamAction { 'href' => common_local_url('allrss', array('nickname' => $user->nickname)), 'type' => 'application/rss+xml', - 'title' => _t('Feed for friends of ') . $user->nickname)); + 'title' => sprintf(_('Feed for friends of %s'), $user->nickname))); } function show_top($user) { -- cgit v1.2.3-54-g00ecf