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