20 lines
511 B
TypeScript
20 lines
511 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
export const DEFAULT_TITLE = __( 'Billing address', 'woocommerce' );
|
|
export const DEFAULT_DESCRIPTION = __(
|
|
'Enter the billing address that matches your payment method.',
|
|
'woocommerce'
|
|
);
|
|
|
|
export const DEFAULT_FORCED_BILLING_TITLE = __(
|
|
'Billing and shipping address',
|
|
'woocommerce'
|
|
);
|
|
export const DEFAULT_FORCED_BILLING_DESCRIPTION = __(
|
|
'Enter the billing and shipping address that matches your payment method.',
|
|
'woocommerce'
|
|
);
|