diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index abe8291613..7b76dbedeb 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -237,6 +237,8 @@ function get_comment_statuses() { 'approve' => _x('Approved', 'adjective'), /* translators: comment status */ 'spam' => _x('Spam', 'adjective'), + /* translators: comment status */ + 'trash' => _x('Trash', 'adjective'), ); return $status; diff --git a/wp-includes/version.php b/wp-includes/version.php index da5ce6759c..cd518eebf2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34523'; +$wp_version = '4.4-alpha-34524'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.