I would like to modify the wording in the bulk actions on the posts screen or custom post types. I am trying to do so using the following code, but it's not working. Any idea why?
add_filter( 'bulk_actions-edit-post', 'my_custom_bulk_actions' );
function my_custom_bulk_actions( $actions ){
$actions['trash'] = 'Just testing';
unset( $actions[ 'edit' ] );
return $actions;
}