From c41cedc80db2fa0ab2ef2729c776ab0cab44af48 Mon Sep 17 00:00:00 2001 From: Alex P Date: Tue, 7 Mar 2023 09:46:45 +0200 Subject: [PATCH] Change "Enabled" to "Available" in status text Now it is more clear because "enabled" can be understood as enabled gateway, while it only means that it is enabled in the PayPal account. --- modules/ppcp-wc-gateway/services.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ppcp-wc-gateway/services.php b/modules/ppcp-wc-gateway/services.php index 1f3393337..5fe7e29f0 100644 --- a/modules/ppcp-wc-gateway/services.php +++ b/modules/ppcp-wc-gateway/services.php @@ -1254,7 +1254,7 @@ return array( $dcc_enabled = $dcc_product_status->dcc_is_active(); - $enabled_status_text = esc_html__( 'Status: Enabled', 'woocommerce-paypal-payments' ); + $enabled_status_text = esc_html__( 'Status: Available', 'woocommerce-paypal-payments' ); $disabled_status_text = esc_html__( 'Status: Not yet enabled', 'woocommerce-paypal-payments' ); $dcc_button_text = $dcc_enabled @@ -1287,7 +1287,7 @@ return array( $pui_enabled = $pui_product_status->pui_is_active(); - $enabled_status_text = esc_html__( 'Status: Enabled', 'woocommerce-paypal-payments' ); + $enabled_status_text = esc_html__( 'Status: Available', 'woocommerce-paypal-payments' ); $disabled_status_text = esc_html__( 'Status: Not yet enabled', 'woocommerce-paypal-payments' ); $enable_pui_url = $environment->current_environment_is( Environment::PRODUCTION )