Please put following code within your theme’s function.php file:
add_filter(‘woocommerce_sale_flash’, ‘srv_change_sale_content’, 10, 3);
function srv_change_sale_content($content, $post, $product){
$content = ‘<span class=”onsale”>’.__( ‘Buy’, ‘woocommerce’ ).'</span>’;
return $content;
}