From a71a3dec5a30842a4c4ad87f819fce276ffd4543 Mon Sep 17 00:00:00 2001 From: Philipp Stracker Date: Thu, 11 Jul 2024 15:02:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Fix=20incorrect=20preview=20box?= =?UTF-8?q?=20title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the wrong literal introduced here: --- .../src/Settings/Fields/paypal-smart-button-fields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ppcp-wc-gateway/src/Settings/Fields/paypal-smart-button-fields.php b/modules/ppcp-wc-gateway/src/Settings/Fields/paypal-smart-button-fields.php index 02a6bcb87..3a2513e98 100644 --- a/modules/ppcp-wc-gateway/src/Settings/Fields/paypal-smart-button-fields.php +++ b/modules/ppcp-wc-gateway/src/Settings/Fields/paypal-smart-button-fields.php @@ -28,7 +28,7 @@ return function ( ContainerInterface $container, array $fields ): array { $has_enabled_separate_button_gateways = $container->get( 'wcgateway.settings.has_enabled_separate_button_gateways' ); - $preview_message = __( 'Standard Card Button Styling Preview', 'woocommerce-paypal-payments' ); + $preview_message = __( 'Button Styling Preview', 'woocommerce-paypal-payments' ); $axo_smart_button_location_notice = $container->has( 'axo.smart-button-location-notice' ) ? $container->get( 'axo.smart-button-location-notice' ) : '';