Change payment gateway names to plugin name
This commit is contained in:
parent
fb0943bb89
commit
bdf6188ed6
|
@ -1194,7 +1194,7 @@ class WC_Admin_Setup_Wizard {
|
|||
|
||||
return array(
|
||||
'stripe' => array(
|
||||
'name' => __( 'Stripe', 'woocommerce' ),
|
||||
'name' => __( 'WooCommerce Stripe Gateway', 'woocommerce' ),
|
||||
'image' => WC()->plugin_url() . '/assets/images/stripe.png',
|
||||
'description' => $stripe_description,
|
||||
'class' => 'checked stripe-logo',
|
||||
|
@ -1219,7 +1219,7 @@ class WC_Admin_Setup_Wizard {
|
|||
),
|
||||
),
|
||||
'ppec_paypal' => array(
|
||||
'name' => __( 'PayPal Express Checkout', 'woocommerce' ),
|
||||
'name' => __( 'WooCommerce PayPal Express Checkout Gateway', 'woocommerce' ),
|
||||
'image' => WC()->plugin_url() . '/assets/images/paypal.png',
|
||||
'description' => $paypal_ec_description,
|
||||
'enabled' => true,
|
||||
|
@ -1259,7 +1259,7 @@ class WC_Admin_Setup_Wizard {
|
|||
),
|
||||
),
|
||||
'klarna_checkout' => array(
|
||||
'name' => __( 'Klarna Checkout', 'woocommerce' ),
|
||||
'name' => __( 'Klarna Checkout for WooCommerce', 'woocommerce' ),
|
||||
'description' => $klarna_checkout_description,
|
||||
'image' => WC()->plugin_url() . '/assets/images/klarna-white.png',
|
||||
'enabled' => true,
|
||||
|
@ -1267,7 +1267,7 @@ class WC_Admin_Setup_Wizard {
|
|||
'repo-slug' => 'klarna-checkout-for-woocommerce',
|
||||
),
|
||||
'klarna_payments' => array(
|
||||
'name' => __( 'Klarna Payments', 'woocommerce' ),
|
||||
'name' => __( 'Klarna Payments for WooCommerce', 'woocommerce' ),
|
||||
'description' => $klarna_payments_description,
|
||||
'image' => WC()->plugin_url() . '/assets/images/klarna-white.png',
|
||||
'enabled' => true,
|
||||
|
@ -1275,7 +1275,7 @@ class WC_Admin_Setup_Wizard {
|
|||
'repo-slug' => 'klarna-payments-for-woocommerce',
|
||||
),
|
||||
'square' => array(
|
||||
'name' => __( 'Square', 'woocommerce' ),
|
||||
'name' => __( 'WooCommerce Square', 'woocommerce' ),
|
||||
'description' => $square_description,
|
||||
'image' => WC()->plugin_url() . '/assets/images/square-white.png',
|
||||
'class' => 'square-logo',
|
||||
|
@ -1283,7 +1283,7 @@ class WC_Admin_Setup_Wizard {
|
|||
'repo-slug' => 'woocommerce-square',
|
||||
),
|
||||
'eway' => array(
|
||||
'name' => __( 'eWAY', 'woocommerce' ),
|
||||
'name' => __( 'WooCommerce eWAY Gateway', 'woocommerce' ),
|
||||
'description' => __( 'The eWAY extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.', 'woocommerce' ),
|
||||
'image' => WC()->plugin_url() . '/assets/images/eway-logo.jpg',
|
||||
'enabled' => false,
|
||||
|
@ -1291,7 +1291,7 @@ class WC_Admin_Setup_Wizard {
|
|||
'repo-slug' => 'woocommerce-gateway-eway',
|
||||
),
|
||||
'payfast' => array(
|
||||
'name' => __( 'PayFast', 'woocommerce' ),
|
||||
'name' => __( 'WooCommerce PayFast Gateway', 'woocommerce' ),
|
||||
'description' => __( 'The PayFast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs.', 'woocommerce' ),
|
||||
'image' => WC()->plugin_url() . '/assets/images/payfast.png',
|
||||
'class' => 'payfast-logo',
|
||||
|
|
Loading…
Reference in New Issue