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/postnotice.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'actions/postnotice.php') diff --git a/actions/postnotice.php b/actions/postnotice.php index d83ceb971..c86e095ff 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -37,39 +37,39 @@ class PostnoticeAction extends Action { return; } } - + function save_notice(&$req, &$consumer, &$token) { $version = $req->get_parameter('omb_version'); if ($version != OMB_VERSION_01) { - common_user_error(_t('Unsupported OMB version'), 400); + common_user_error(_('Unsupported OMB version'), 400); return false; } # First, check to see $listenee = $req->get_parameter('omb_listenee'); $remote_profile = Remote_profile::staticGet('uri', $listenee); if (!$remote_profile) { - common_user_error(_t('Profile unknown'), 403); + common_user_error(_('Profile unknown'), 403); return false; } $sub = Subscription::staticGet('token', $token->key); if (!$sub) { - common_user_error(_t('No such subscription'), 403); + common_user_error(_('No such subscription'), 403); return false; } $content = $req->get_parameter('omb_notice_content'); if (!$content || strlen($content) > 140) { - common_user_error(_t('Invalid notice content'), 400); + common_user_error(_('Invalid notice content'), 400); return false; } $notice_uri = $req->get_parameter('omb_notice'); if (!Validate::uri($notice_uri) && !common_valid_tag($notice_uri)) { - common_user_error(_t('Invalid notice uri'), 400); + common_user_error(_('Invalid notice uri'), 400); return false; } $notice_url = $req->get_parameter('omb_notice_url'); if ($notice_url && !common_valid_http_url($notice_url)) { - common_user_error(_t('Invalid notice url'), 400); + common_user_error(_('Invalid notice url'), 400); return false; } $notice = Notice::staticGet('uri', $notice_uri); @@ -85,7 +85,7 @@ class PostnoticeAction extends Action { $notice->created = DB_DataObject_Cast::dateTime(); # current time $id = $notice->insert(); if (!$id) { - common_server_error(_t('Error inserting notice'), 500); + common_server_error(_('Error inserting notice'), 500); return false; } common_save_replies($notice); -- cgit v1.2.3-54-g00ecf