Update copy for CYS intro screen sidebar (#43551)

* Update copy for CYS intro screen sidebar

* Add changefile(s) from automation for the following project(s): woocommerce

* Avoid using variables in __()

* Add missing period

Co-authored-by: Patricia Hillebrandt <patriciahillebrandt@gmail.com>

---------

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Patricia Hillebrandt <patriciahillebrandt@gmail.com>
This commit is contained in:
Alba Rincón 2024-01-16 09:07:47 +01:00 committed by GitHub
parent c531067daf
commit b9f447b101
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 6 deletions

View File

@ -125,6 +125,17 @@ export const Intro: CustomizeStoreComponent = ( { sendEvent, context } ) => {
const BannerComponent = BANNER_COMPONENTS[ bannerStatus ];
const sidebarMessage =
context.flowType === FlowType.AIOnline
? __(
'Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI',
'woocommerce'
)
: __(
'Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using our store designer.',
'woocommerce'
);
return (
<>
{ ModalComponent && (
@ -158,12 +169,7 @@ export const Intro: CustomizeStoreComponent = ( { sendEvent, context } ) => {
</button>
{ __( 'Customize your store', 'woocommerce' ) }
</div>
<p>
{ __(
'Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI.',
'woocommerce'
) }
</p>
<p>{ sidebarMessage }</p>
</div>
<div className="woocommerce-customize-store-main">

View File

@ -0,0 +1,4 @@
Significance: minor
Type: update
Update copy for CYS intro screen sidebar when the flow has no AI.