Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wprp-post-status

// Register Custom Status
function wprp_post_status() {

	$args = array(
		'label'                     => _x( 'pending', 'Status General Name', 'wp-raffle-pro' ),
		'label_count'               => _n_noop( 'pending (%s)',  'pendings (%s)', 'wp-raffle-pro' ), 
	);
	register_post_status( 'pending', $args );

}
add_action( 'init', 'wprp_post_status', 0 );