The default PayPal buttons says โProceed to PayPalโ. You may want to change this to something else like โContinue to Payโ or whatever you like. Add the following PHP code to your child theme functions.php file.
add_filter( 'gettext', 'custom_paypal_button_text', 20, 3 );
function custom_paypal_button_text( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Proceed to PayPal' :
$translated_text = __( 'YOUR NEW BUTTON TEXT', 'woocommerce' );
break;
}
return $translated_text;
}