mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-30 23:30:05 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user