2021-01-06 22:08:57 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
|
|
|
|
export const sellingVenueOptions = [
|
|
|
|
{
|
|
|
|
key: 'no',
|
2022-03-30 09:00:04 +00:00
|
|
|
label: __( 'No', 'woocommerce' ),
|
2021-01-06 22:08:57 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'other',
|
2022-03-30 09:00:04 +00:00
|
|
|
label: __( 'Yes, on another platform', 'woocommerce' ),
|
2021-01-06 22:08:57 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'other-woocommerce',
|
|
|
|
label: __(
|
|
|
|
'Yes, I own a different store powered by WooCommerce',
|
2022-03-30 09:00:04 +00:00
|
|
|
'woocommerce'
|
2021-01-06 22:08:57 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'brick-mortar',
|
|
|
|
label: __(
|
|
|
|
'Yes, in person at physical stores and/or events',
|
2022-03-30 09:00:04 +00:00
|
|
|
'woocommerce'
|
2021-01-06 22:08:57 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'brick-mortar-other',
|
|
|
|
label: __(
|
|
|
|
'Yes, on another platform and in person at physical stores and/or events',
|
2022-03-30 09:00:04 +00:00
|
|
|
'woocommerce'
|
2021-01-06 22:08:57 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|