* Make minor text fixes to onboarding

* Fix it typo and use oxford commas
This commit is contained in:
Justin Shreve 2019-10-29 14:15:36 -04:00 committed by GitHub
parent 1aea9d7bd7
commit af10516b8f
3 changed files with 4 additions and 4 deletions

View File

@ -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' ) }

View File

@ -192,7 +192,7 @@ class Appearance extends Component {
key: 'import',
label: __( 'Import demo products', 'woocommerce-admin' ),
description: __(
'Well add some products that it will make it easier to see what your store looks like.',
'Well add some products that will make it easier to see what your store looks like',
'woocommerce-admin'
),
content: (

View File

@ -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' ),
)
);