Index: class-wp-rest-post-types-controller.php
===================================================================
--- class-wp-rest-post-types-controller.php	(revision 39303)
+++ class-wp-rest-post-types-controller.php	(working copy)
@@ -127,7 +127,7 @@
 		}
 
 		if ( 'edit' === $request['context'] && ! current_user_can( $obj->cap->edit_posts ) ) {
-			return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to manage this resource.' ), array( 'status' => rest_authorization_required_code() ) );
+			return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit this resource.' ), array( 'status' => rest_authorization_required_code() ) );
 		}
 
 		$data = $this->prepare_item_for_response( $obj, $request );
Index: class-wp-rest-taxonomies-controller.php
===================================================================
--- class-wp-rest-taxonomies-controller.php	(revision 39303)
+++ class-wp-rest-taxonomies-controller.php	(working copy)
@@ -141,7 +141,7 @@
 				return false;
 			}
 			if ( 'edit' === $request['context'] && ! current_user_can( $tax_obj->cap->manage_terms ) ) {
-				return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to manage this resource.' ), array( 'status' => rest_authorization_required_code() ) );
+				return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit this resource.' ), array( 'status' => rest_authorization_required_code() ) );
 			}
 		}
 
Index: class-wp-rest-users-controller.php
===================================================================
--- class-wp-rest-users-controller.php	(revision 39303)
+++ class-wp-rest-users-controller.php	(working copy)
@@ -515,7 +515,7 @@
 		$id = (int) $request['id'];
 
 		if ( ! current_user_can( 'edit_user', $id ) ) {
-			return new WP_Error( 'rest_cannot_edit', __( 'Sorry, you are not allowed to edit resource.' ), array( 'status' => rest_authorization_required_code() ) );
+			return new WP_Error( 'rest_cannot_edit', __( 'Sorry, you are not allowed to edit this resource.' ), array( 'status' => rest_authorization_required_code() ) );
 		}
 
 		if ( ! empty( $request['roles'] ) && ! current_user_can( 'edit_users' ) ) {
