
Copy and paste this code in your functions.php file in you active theme.
add_filter('wpcsr_quote_book_label', 'wpcsr_quote_book_label_callback');
function wpcsr_quote_book_label_callback(){
$label = "Place your desired label here";
return $label;
}