Skip to content

Commit

Permalink
update settings page copy (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
LevinMedia authored Feb 4, 2020
1 parent 8aced7f commit 0a41fc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/class-wc-payment-gateway-wcpay.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function __construct( WC_Payments_API_Client $payments_api_client ) {
),
'manual_capture' => array(
'title' => __( 'Manual Capture', 'woocommerce-payments' ),
'label' => __( 'Issue authorization and capture later', 'woocommerce-payments' ),
'label' => __( 'Issue an authorization on checkout, and capture later', 'woocommerce-payments' ),
'type' => 'checkbox',
'description' => __( 'Manually capture funds within 7 days after the customer authorizes payment on checkout.', 'woocommerce-payments' ),
'default' => 'no',
Expand All @@ -94,7 +94,7 @@ public function __construct( WC_Payments_API_Client $payments_api_client ) {
'title' => __( 'Test Mode', 'woocommerce-payments' ),
'label' => __( 'Enable test mode', 'woocommerce-payments' ),
'type' => 'checkbox',
'description' => __( 'Place the payment gateway in test mode using test API keys.', 'woocommerce-payments' ),
'description' => __( 'Simulate transactions using test card numbers.', 'woocommerce-payments' ),
'default' => 'no',
'desc_tip' => true,
),
Expand Down Expand Up @@ -398,7 +398,7 @@ public function generate_account_actions_html() {
if ( $this->is_stripe_connected() ) {
$description = sprintf(
/* translators: 1) dashboard login URL */
__( '<a href="%1$s">View payouts and account details</a>', 'woocommerce-payments' ),
__( '<a href="%1$s">View and edit account details</a>', 'woocommerce-payments' ),
WC_Payments_Account::get_login_url()
);
} else {
Expand Down

0 comments on commit 0a41fc9

Please sign in to comment.