REST API: Update error messages in `WP_REST_Comments_Controller` to use the common text for permission errors.

Props ramiy.
Fixes #38875.

git-svn-id: https://develop.svn.wordpress.org/trunk@39321 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-11-20 11:45:59 +00:00
parent bf07e57e4b
commit da47a962d5
1 changed files with 2 additions and 2 deletions

View File

@ -611,7 +611,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
$comment = get_comment( $id );
if ( $comment && ! $this->check_edit_permission( $comment ) ) {
return new WP_Error( 'rest_cannot_edit', __( 'Sorry, you can not edit this comment.' ), array( 'status' => rest_authorization_required_code() ) );
return new WP_Error( 'rest_cannot_edit', __( 'Sorry, you are not allowed to edit this comment.' ), array( 'status' => rest_authorization_required_code() ) );
}
return true;
@ -726,7 +726,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
}
if ( ! $this->check_edit_permission( $comment ) ) {
return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you can not delete this comment.' ), array( 'status' => rest_authorization_required_code() ) );
return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you are not allowed to delete this comment.' ), array( 'status' => rest_authorization_required_code() ) );
}
return true;
}