I18N: Use better context for comment statuses.

See #35054.

git-svn-id: https://develop.svn.wordpress.org/trunk@35902 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2015-12-13 19:10:04 +00:00
parent 3068a5b333
commit 4e130ed78f
2 changed files with 7 additions and 10 deletions

View File

@@ -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;