From bb94567f2fd906fbabe1245e037716672ec7650f Mon Sep 17 00:00:00 2001 From: George Burduli Date: Tue, 30 Jan 2024 12:29:19 +0400 Subject: [PATCH] Remove MercadoPago service --- modules/ppcp-wc-gateway/services.php | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/modules/ppcp-wc-gateway/services.php b/modules/ppcp-wc-gateway/services.php index eb28f34ba..9007e52ba 100644 --- a/modules/ppcp-wc-gateway/services.php +++ b/modules/ppcp-wc-gateway/services.php @@ -934,20 +934,19 @@ return array( 'wcgateway.all-funding-sources' => static function( ContainerInterface $container ): array { return array( - 'card' => _x( 'Credit or debit cards', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'sepa' => _x( 'SEPA-Lastschrift', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'bancontact' => _x( 'Bancontact', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'blik' => _x( 'BLIK', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'eps' => _x( 'eps', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'giropay' => _x( 'giropay', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'ideal' => _x( 'iDEAL', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'mercadopago' => _x( 'Mercado Pago', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'mybank' => _x( 'MyBank', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'p24' => _x( 'Przelewy24', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'sofort' => _x( 'Sofort', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'venmo' => _x( 'Venmo', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'trustly' => _x( 'Trustly', 'Name of payment method', 'woocommerce-paypal-payments' ), - 'paylater' => _x( 'Pay Later', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'card' => _x( 'Credit or debit cards', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'sepa' => _x( 'SEPA-Lastschrift', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'bancontact' => _x( 'Bancontact', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'blik' => _x( 'BLIK', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'eps' => _x( 'eps', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'giropay' => _x( 'giropay', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'ideal' => _x( 'iDEAL', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'mybank' => _x( 'MyBank', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'p24' => _x( 'Przelewy24', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'sofort' => _x( 'Sofort', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'venmo' => _x( 'Venmo', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'trustly' => _x( 'Trustly', 'Name of payment method', 'woocommerce-paypal-payments' ), + 'paylater' => _x( 'Pay Later', 'Name of payment method', 'woocommerce-paypal-payments' ), ); },