Merge pull request #27468 from woocommerce/fix/27467
Rename built-in PayPal payment method to PayPal Standard
This commit is contained in:
commit
68d1641e5c
|
@ -42,7 +42,7 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
|
|||
$this->id = 'paypal';
|
||||
$this->has_fields = false;
|
||||
$this->order_button_text = __( 'Proceed to PayPal', 'woocommerce' );
|
||||
$this->method_title = __( 'PayPal', 'woocommerce' );
|
||||
$this->method_title = __( 'PayPal Standard', 'woocommerce' );
|
||||
/* translators: %s: Link to WC system status page */
|
||||
$this->method_description = __( 'PayPal Standard redirects customers to PayPal to enter their payment information.', 'woocommerce' );
|
||||
$this->supports = array(
|
||||
|
@ -283,7 +283,7 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
|
|||
?>
|
||||
<div class="inline error">
|
||||
<p>
|
||||
<strong><?php esc_html_e( 'Gateway disabled', 'woocommerce' ); ?></strong>: <?php esc_html_e( 'PayPal does not support your store currency.', 'woocommerce' ); ?>
|
||||
<strong><?php esc_html_e( 'Gateway disabled', 'woocommerce' ); ?></strong>: <?php esc_html_e( 'PayPal Standard does not support your store currency.', 'woocommerce' ); ?>
|
||||
</p>
|
||||
</div>
|
||||
<?php
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Settings for PayPal Gateway.
|
||||
* Settings for PayPal Standard Gateway.
|
||||
*
|
||||
* @package WooCommerce\Classes\Payment
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue