File "constants.js"

Full Path: /home/warrior1/public_html/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/constants.js
File size: 1015 B
MIME-type: text/html
Charset: utf-8

/**
 * External dependencies
 */
import { __, sprintf } from '@wordpress/i18n';
import { PRIVACY_URL, TERMS_URL } from '@woocommerce/block-settings';

const termsPageLink = TERMS_URL
	? `<a href="${ TERMS_URL }" target="_blank">${ __(
			'Terms and Conditions',
			'woocommerce'
	  ) }</a>`
	: __( 'Terms and Conditions', 'woocommerce' );

const privacyPageLink = PRIVACY_URL
	? `<a href="${ PRIVACY_URL }" target="_blank">${ __(
			'Privacy Policy',
			'woocommerce'
	  ) }</a>`
	: __( '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
);