import { __, sprintf } from '@wordpress/i18n'; import BadgeBox from '../BadgeBox'; import Separator from '../Separator'; import PricingTitleBadge from '../PricingTitleBadge'; const AcdcOptionalPaymentMethods = ( { isFastlane, isPayLater, storeCountry, } ) => { if ( isFastlane && isPayLater && storeCountry === 'US' ) { return (
} description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Style the credit card fields to match your own style. Includes advanced processing with risk management, 3D Secure, fraud protection options, and chargeback protection. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Accept Apple Pay on eligible devices and Google Pay through mobile and web. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Seamless payments for customers across the globe using their preferred payment methods. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Speed up guest checkout with Fatslane. Link a customer\'s email address to their payment details. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } />
); } if ( isPayLater && storeCountry === 'uk' ) { return (
} description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Style the credit card fields to match your own style. Includes advanced processing with risk management, 3D Secure, fraud protection options, and chargeback protection. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Accept Apple Pay on eligible devices and Google Pay through mobile and web. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Seamless payments for customers across the globe using their preferred payment methods. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } />
); } return (
} description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Style the credit card fields to match your own style. Includes advanced processing with risk management, 3D Secure, fraud protection options, and chargeback protection. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Accept Apple Pay on eligible devices and Google Pay through mobile and web. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } /> } description={ sprintf( // translators: %s: Link to PayPal business fees guide __( 'Seamless payments for customers across the globe using their preferred payment methods. Learn more', 'woocommerce-paypal-payments' ), 'https://www.paypal.com/us/business/paypal-business-fees' ) } />
); }; export default AcdcOptionalPaymentMethods;