Make minor text fixes to onboarding (https://github.com/woocommerce/woocommerce-admin/pull/3116)
* Make minor text fixes to onboarding * Fix it typo and use oxford commas
This commit is contained in:
parent
1aea9d7bd7
commit
af10516b8f
|
@ -372,7 +372,7 @@ class BusinessDetails extends Component {
|
|||
<Card>
|
||||
<Fragment>
|
||||
<SelectControl
|
||||
label={ __( 'How many products do you plan to add?', 'woocommerce-admin' ) }
|
||||
label={ __( 'How many products do you plan to sell?', 'woocommerce-admin' ) }
|
||||
options={ productCountOptions }
|
||||
required
|
||||
{ ...getInputProps( 'product_count' ) }
|
||||
|
|
|
@ -192,7 +192,7 @@ class Appearance extends Component {
|
|||
key: 'import',
|
||||
label: __( 'Import demo products', 'woocommerce-admin' ),
|
||||
description: __(
|
||||
'We’ll add some products that it will make it easier to see what your store looks like.',
|
||||
'We’ll add some products that will make it easier to see what your store looks like',
|
||||
'woocommerce-admin'
|
||||
),
|
||||
content: (
|
||||
|
|
|
@ -110,12 +110,12 @@ class Onboarding {
|
|||
return apply_filters(
|
||||
'woocommerce_admin_onboarding_industries',
|
||||
array(
|
||||
'fashion-apparel-accessories' => __( 'Fashion, apparel & accessories', 'woocommerce-admin' ),
|
||||
'fashion-apparel-accessories' => __( 'Fashion, apparel, & accessories', 'woocommerce-admin' ),
|
||||
'health-beauty' => __( 'Health & beauty', 'woocommerce-admin' ),
|
||||
'art-music-photography' => __( 'Art, music, & photography', 'woocommerce-admin' ),
|
||||
'electronics-computers' => __( 'Electronics & computers', 'woocommerce-admin' ),
|
||||
'food-drink' => __( 'Food & drink', 'woocommerce-admin' ),
|
||||
'home-furniture-garden' => __( 'Home, furniture & garden', 'woocommerce-admin' ),
|
||||
'home-furniture-garden' => __( 'Home, furniture, & garden', 'woocommerce-admin' ),
|
||||
'other' => __( 'Other', 'woocommerce-admin' ),
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue