diff --git a/modules/ppcp-wc-gateway/services.php b/modules/ppcp-wc-gateway/services.php index 81edd116a..9802e1951 100644 --- a/modules/ppcp-wc-gateway/services.php +++ b/modules/ppcp-wc-gateway/services.php @@ -962,7 +962,6 @@ return array( '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( 'PayPal Pay Later', 'Name of payment method', 'woocommerce-paypal-payments' ), diff --git a/modules/ppcp-wc-gateway/src/FundingSource/FundingSourceRenderer.php b/modules/ppcp-wc-gateway/src/FundingSource/FundingSourceRenderer.php index 6d66f9700..cdfcb3b47 100644 --- a/modules/ppcp-wc-gateway/src/FundingSource/FundingSourceRenderer.php +++ b/modules/ppcp-wc-gateway/src/FundingSource/FundingSourceRenderer.php @@ -63,7 +63,7 @@ class FundingSourceRenderer { return $this->funding_sources[ $id ]; } return sprintf( - /* translators: %s - Sofort, BLIK, iDeal, Mercado Pago, etc. */ + /* translators: %s - BLIK, iDeal, Mercado Pago, etc. */ __( '%s (via PayPal)', 'woocommerce-paypal-payments' ), $this->funding_sources[ $id ] ); @@ -84,7 +84,7 @@ class FundingSourceRenderer { if ( array_key_exists( $id, $this->funding_sources ) ) { return sprintf( - /* translators: %s - Sofort, BLIK, iDeal, Mercado Pago, etc. */ + /* translators: %s - BLIK, iDeal, Mercado Pago, etc. */ __( 'Pay via %s.', 'woocommerce-paypal-payments' ), $this->funding_sources[ $id ] ); diff --git a/modules/ppcp-wc-gateway/src/Settings/Fields/connection-tab-fields.php b/modules/ppcp-wc-gateway/src/Settings/Fields/connection-tab-fields.php index 59bb440f1..25a367693 100644 --- a/modules/ppcp-wc-gateway/src/Settings/Fields/connection-tab-fields.php +++ b/modules/ppcp-wc-gateway/src/Settings/Fields/connection-tab-fields.php @@ -65,7 +65,7 @@ return function ( ContainerInterface $container, array $fields ): array { American Express Discover iDEAL - Sofort + BLIK
Apple Pay diff --git a/tests/Playwright/.env.example b/tests/Playwright/.env.example index 3de8add8c..e23512085 100644 --- a/tests/Playwright/.env.example +++ b/tests/Playwright/.env.example @@ -13,7 +13,7 @@ PRODUCT_ID=123 SUBSCRIPTION_URL="/product/sub" -APM_ID="sofort" +APM_ID="paypal" WP_MERCHANT_USER="admin" WP_MERCHANT_PASSWORD="admin"