diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php
index 92911db23a..5fd308e357 100644
--- a/src/wp-admin/edit-form-comment.php
+++ b/src/wp-admin/edit-form-comment.php
@@ -82,9 +82,9 @@ if ( $comment->comment_post_ID > 0 ):
diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php
index c62a920839..50e2d29533 100644
--- a/src/wp-includes/comment.php
+++ b/src/wp-includes/comment.php
@@ -231,13 +231,10 @@ function get_comments( $args = '' ) {
*/
function get_comment_statuses() {
$status = array(
- 'hold' => __('Unapproved'),
- /* translators: comment status */
- 'approve' => _x('Approved', 'adjective'),
- /* translators: comment status */
- 'spam' => _x('Spam', 'adjective'),
- /* translators: comment status */
- 'trash' => _x('Trash', 'adjective'),
+ 'hold' => __( 'Unapproved' ),
+ 'approve' => _x( 'Approved', 'comment status' ),
+ 'spam' => _x( 'Spam', 'comment status' ),
+ 'trash' => _x( 'Trash', 'comment status' ),
);
return $status;