2022-12-02 11:34:27 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
|
|
|
|
export const DEFAULT_TITLE = __(
|
|
|
|
'Billing address',
|
2023-12-12 22:12:36 +00:00
|
|
|
'woocommerce'
|
2022-12-02 11:34:27 +00:00
|
|
|
);
|
|
|
|
export const DEFAULT_DESCRIPTION = __(
|
|
|
|
'Enter the billing address that matches your payment method.',
|
2023-12-12 22:12:36 +00:00
|
|
|
'woocommerce'
|
2022-12-02 11:34:27 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
export const DEFAULT_FORCED_BILLING_TITLE = __(
|
|
|
|
'Billing and shipping address',
|
2023-12-12 22:12:36 +00:00
|
|
|
'woocommerce'
|
2022-12-02 11:34:27 +00:00
|
|
|
);
|
|
|
|
export const DEFAULT_FORCED_BILLING_DESCRIPTION = __(
|
|
|
|
'Enter the billing and shipping address that matches your payment method.',
|
2023-12-12 22:12:36 +00:00
|
|
|
'woocommerce'
|
2022-12-02 11:34:27 +00:00
|
|
|
);
|