Improve continuation mode label

This commit is contained in:
Alex P 2023-07-11 09:15:02 +03:00
parent 5a0b0b41a9
commit 9802495c8c
No known key found for this signature in database
GPG key ID: 54487A734A204D71

View file

@ -63,13 +63,13 @@ class CancelView {
printf( printf(
// translators: %3$ is funding source like "PayPal" or "Venmo", other placeholders are html tags for a link. // translators: %3$ is funding source like "PayPal" or "Venmo", other placeholders are html tags for a link.
esc_html__( esc_html__(
'You are currently paying with %3$s. If you want to cancel 'You are currently paying with %3$s. %4$s%1$sChoose another payment method%2$s.',
this process, please click %1$shere%2$s.',
'woocommerce-paypal-payments' 'woocommerce-paypal-payments'
), ),
'<a href="' . esc_url( $url ) . '">', '<a href="' . esc_url( $url ) . '">',
'</a>', '</a>',
esc_html( $name ) esc_html( $name ),
'<br/>'
); );
?> ?>
</p> </p>