Commit cd218ac2 authored by Sergey Biryukov's avatar Sergey Biryukov
Browse files

Administration: Use sentence case for "Mark as spam" bulk action links for...

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: https://core.svn.wordpress.org/trunk@48357 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent 63c715b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
	}
+2 −2
Original line number Diff line number Diff line
@@ -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;
	}
+1 −1
Original line number Diff line number Diff line
@@ -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.