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-sites-list-table.php

    r48586 r48595  
    290290            $actions['delete'] = __( 'Delete' );
    291291        }
    292         $actions['spam']    = _x( 'Mark as Spam', 'site' );
    293         $actions['notspam'] = _x( 'Not Spam', 'site' );
     292        $actions['spam']    = _x( 'Mark as spam', 'site' );
     293        $actions['notspam'] = _x( 'Not spam', 'site' );
    294294
    295295        return $actions;
Note: See TracChangeset for help on using the changeset viewer.