$bulk_counts = array
( 'updated' =>
isset( $_REQUEST['updated'
] ) ?
absint( $_REQUEST['updated'
] ) : 0,
'locked' =>
isset( $_REQUEST['locked'
] ) ?
absint( $_REQUEST['locked'
] ) : 0,
'deleted' =>
isset( $_REQUEST['deleted'
] ) ?
absint( $_REQUEST['deleted'
] ) : 0,
'trashed' =>
isset( $_REQUEST['trashed'
] ) ?
absint( $_REQUEST['trashed'
] ) : 0,
'untrashed' =>
isset( $_REQUEST['untrashed'
] ) ?
absint( $_REQUEST['untrashed'
] ) : 0,
);
$bulk_messages = array
();
$bulk_messages['post'
] = array
( /* translators: %s: Number of posts. */
'updated' =>
_n( '%s post updated.', '%s posts updated.',
$bulk_counts['updated'
] ),
'locked'
=> ( 1 ===
$bulk_counts['locked'
] ) ?
__( '1 post not updated, somebody is editing it.'
) :
/* translators: %s: Number of posts. */
_n( '%s post not updated, somebody is editing it.', '%s posts not updated, somebody is editing them.',
$bulk_counts['locked'
] ),
/* translators: %s: Number of posts. */
'deleted' =>
_n( '%s post permanently deleted.', '%s posts permanently deleted.',
$bulk_counts['deleted'
] ),
/* translators: %s: Number of posts. */
'trashed' =>
_n( '%s post moved to the Trash.', '%s posts moved to the Trash.',
$bulk_counts['trashed'
] ),
/* translators: %s: Number of posts. */
'untrashed' =>
_n( '%s post restored from the Trash.', '%s posts restored from the Trash.',
$bulk_counts['untrashed'
] ),
);
$bulk_messages['page'
] = array
(