/** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { PRIVACY_URL, TERMS_URL } from '@woocommerce/block-settings'; const termsPageLink = TERMS_URL ? `${ __( 'Terms and Conditions', 'woocommerce' ) }` : __( 'Terms and Conditions', 'woocommerce' ); const privacyPageLink = PRIVACY_URL ? `${ __( 'Privacy Policy', 'woocommerce' ) }` : __( 'Privacy Policy', 'woocommerce' ); export const termsConsentDefaultText = sprintf( /* translators: %1$s terms page link, %2$s privacy page link. */ __( 'By proceeding with your purchase you agree to our %1$s and %2$s', 'woocommerce' ), termsPageLink, privacyPageLink ); export const termsCheckboxDefaultText = sprintf( /* translators: %1$s terms page link, %2$s privacy page link. */ __( 'You must accept our %1$s and %2$s to continue with your purchase.', 'woocommerce' ), termsPageLink, privacyPageLink );