mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-22 15:31:42 +01:00
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. Built from https://develop.svn.wordpress.org/trunk@48595 git-svn-id: http://core.svn.wordpress.org/trunk@48357 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
703a978a77
commit
b6f52721ed
@ -289,8 +289,8 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
||||
if ( current_user_can( 'delete_sites' ) ) {
|
||||
$actions['delete'] = __( 'Delete' );
|
||||
}
|
||||
$actions['spam'] = _x( 'Mark as Spam', 'site' );
|
||||
$actions['notspam'] = _x( 'Not Spam', 'site' );
|
||||
$actions['spam'] = _x( 'Mark as spam', 'site' );
|
||||
$actions['notspam'] = _x( 'Not spam', 'site' );
|
||||
|
||||
return $actions;
|
||||
}
|
||||
|
@ -114,8 +114,8 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
||||
if ( current_user_can( 'delete_users' ) ) {
|
||||
$actions['delete'] = __( 'Delete' );
|
||||
}
|
||||
$actions['spam'] = _x( 'Mark as Spam', 'user' );
|
||||
$actions['notspam'] = _x( 'Not Spam', 'user' );
|
||||
$actions['spam'] = _x( 'Mark as spam', 'user' );
|
||||
$actions['notspam'] = _x( 'Not spam', 'user' );
|
||||
|
||||
return $actions;
|
||||
}
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-beta3-48594';
|
||||
$wp_version = '5.5-beta3-48595';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user