diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index 92911db23a..5fd308e357 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -82,9 +82,9 @@ if ( $comment->comment_post_ID > 0 ):
-
-
- +
+
+
diff --git a/wp-includes/comment.php b/wp-includes/comment.php index c62a920839..50e2d29533 100644 --- a/wp-includes/comment.php +++ b/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; diff --git a/wp-includes/version.php b/wp-includes/version.php index 3b0eac72b0..c792355063 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35901'; +$wp_version = '4.5-alpha-35902'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.