import { __, sprintf } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import Container from '../ReusableComponents/Container'; import SettingsCard from '../ReusableComponents/SettingsCard'; import SettingsNavigation from './Settings/Components/Navigation'; const SendOnlyMessage = () => { const settingsPageUrl = '/wp-admin/admin.php?page=wc-settings'; return ( <>

{ __( 'Your current WooCommerce store location is in a "send-only" country, according to PayPal\'s policies', 'woocommerce-paypal-payments' ) }

{ __( 'Since receiving payments is essential for using the PayPal Payments extension, you are unable to connect your PayPal account while operating from a "send-only" country.', 'woocommerce-paypal-payments' ) }

update your WooCommerce store location to a supported region and connect a PayPal account eligible for receiving payments.', 'woocommerce-paypal-payments' ), settingsPageUrl ), } } />

); }; export default SendOnlyMessage;