From fc943e24c6552274c7c256829f6d1c41b4e7ed6a Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 25 Feb 2008 19:13:21 +0000 Subject: [PATCH] Grammar fixes from takayukister and thenlich. fixes #5992 git-svn-id: http://svn.automattic.com/wordpress/trunk@7026 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/import/stp.php | 2 +- xmlrpc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/import/stp.php b/wp-admin/import/stp.php index e89e4a8d3..b4448459c 100644 --- a/wp-admin/import/stp.php +++ b/wp-admin/import/stp.php @@ -91,7 +91,7 @@ class STP_Import { // run that funky magic! $tags_added = $this->tag2post(); - echo '

' . sprintf( __ngettext('Done! %s tags where added!', 'Done! %s tags where added!', $tags_added), $tags_added ) . '

'; + echo '

' . sprintf( __ngettext('Done! %s tag was added!', 'Done! %s tags were added!', $tags_added), $tags_added ) . '

'; echo '
'; wp_nonce_field('import-stp'); echo '

'; diff --git a/xmlrpc.php b/xmlrpc.php index 336b546fc..954c9fead 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -636,7 +636,7 @@ class wp_xmlrpc_server extends IXR_Server { set_current_user(0, $username); if( !current_user_can("manage_categories") ) { - return new IXR_Error( 401, __( "Sorry, you do not the right to delete a category." ) ); + return new IXR_Error( 401, __( "Sorry, you do not have the right to delete a category." ) ); } return wp_delete_category( $category_id );