This commit is contained in:
Justin Shreve 2019-08-08 14:41:26 -04:00 committed by GitHub
parent befedbce76
commit f2102b0239
5 changed files with 22 additions and 11 deletions

View File

@ -265,12 +265,12 @@ class BusinessDetails extends Component {
},
{
value: 'brick-mortar',
label: __( 'Yes, at a brick and mortar store', 'woocommerce-admin' ),
label: __( 'Yes, in person at physical stores and/or events', 'woocommerce-admin' ),
},
{
value: 'brick-mortar-other',
label: __(
'Yes, on another platform and at a brick and mortar store',
'Yes, on another platform and in person at physical stores and/or events',
'woocommerce-admin'
),
},
@ -311,13 +311,18 @@ class BusinessDetails extends Component {
return (
<Fragment>
<H className="woocommerce-profile-wizard__header-title">
{ __( 'Business details', 'woocommerce-admin' ) }
{ __( 'Tell us about your business', 'woocommerce-admin' ) }
</H>
<p>{ __( 'Tell us about the business', 'woocommerce-admin' ) }</p>
<p>
{ __(
"We'd love to know if you are just getting started or you already have a business in place.",
'woocommerce-admin'
) }
</p>
<Card>
<Fragment>
<SimpleSelectControl
label={ __( 'How many products will you add?', 'woocommerce-admin' ) }
label={ __( 'How many products do you plan to add?', 'woocommerce-admin' ) }
options={ productCountOptions }
required
{ ...getInputProps( 'product_count' ) }

View File

@ -160,7 +160,7 @@ class Plugins extends Component {
return (
<Fragment>
<H className="woocommerce-profile-wizard__header-title">
{ __( 'Install plugins', 'woocommerce-admin' ) }
{ __( 'Enhance your store setup', 'woocommerce-admin' ) }
</H>
<Card className="woocommerce-profile-wizard__plugins-card">

View File

@ -152,7 +152,7 @@ class Start extends Component {
<p>
{ interpolateComponents( {
mixedString: __(
'Simplify and enhance the setup of your store with features and benefits offered by ' +
'Simplify and enhance the setup of your store with the free features and benefits offered by ' +
'{{strong}}Jetpack & WooCommerce Services{{/strong}}.',
'woocommerce-admin'
),

View File

@ -133,10 +133,13 @@ class StoreDetails extends Component {
return (
<Fragment>
<H className="woocommerce-profile-wizard__header-title">
{ __( 'Store Details', 'woocommerce-admin' ) }
{ __( 'Where is your store based?', 'woocommerce-admin' ) }
</H>
<H className="woocommerce-profile-wizard__header-subtitle">
{ __( 'Tell us about your store', 'woocommerce-admin' ) }
{ __(
'This will help us configure your store and get you started quickly',
'woocommerce-admin'
) }
</H>
<Card>
@ -179,7 +182,7 @@ class StoreDetails extends Component {
/>
<CheckboxControl
label={ __( 'This store is being set up for a client', 'woocommerce-admin' ) }
label={ __( "I'm setting up a store for a client", 'woocommerce-admin' ) }
{ ...getInputProps( 'isClient' ) }
/>

View File

@ -177,7 +177,10 @@ class Theme extends Component {
{ __( 'Choose a theme', 'woocommerce-admin' ) }
</H>
<H className="woocommerce-profile-wizard__header-subtitle">
{ __( 'Your theme determines how your store appears to customers', 'woocommerce-admin' ) }
{ __(
"Choose how your store appears to customers. And don't worry, you can always switch themes and edit them later.",
'woocommerce-admin'
) }
</H>
<TabPanel
className="woocommerce-profile-wizard__themes-tab-panel"