Make WordPress Core


Ignore:
Timestamp:
07/24/2020 12:25:47 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Administration: Use sentence case for "Mark as spam" bulk action links for sites and users, for consistency with comments.

Follow-up to [48352].

See #40244.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php

    r48586 r48595  
    115115            $actions['delete'] = __( 'Delete' );
    116116        }
    117         $actions['spam']    = _x( 'Mark as Spam', 'user' );
    118         $actions['notspam'] = _x( 'Not Spam', 'user' );
     117        $actions['spam']    = _x( 'Mark as spam', 'user' );
     118        $actions['notspam'] = _x( 'Not spam', 'user' );
    119119
    120120        return $actions;
Note: See TracChangeset for help on using the changeset viewer.