Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Big Sky copy and add pages/post/users copy on plans page #99792

Merged
merged 3 commits into from
Feb 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions packages/calypso-products/src/features-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2634,17 +2634,35 @@ const FEATURES_LIST: FeatureList = {
strong: <strong />,
},
} ),
getDescription: () => i18n.translate( 'Build your site with our AI Website Builder.' ),
getDescription: () =>
i18n.getLocaleSlug()?.startsWith( 'en' ) ||
i18n.hasTranslation(
'Enjoy unrestricted usage of our AI tool to design your perfect website.'
)
? i18n.translate(
'Enjoy unrestricted usage of our AI tool to design your perfect website.'
)
: i18n.translate( 'Build your site with our AI Website Builder.' ),
},
[ FEATURE_BIG_SKY_WEBSITE_BUILDER_CHECKOUT ]: {
getSlug: () => FEATURE_BIG_SKY_WEBSITE_BUILDER_CHECKOUT,
getTitle: () => i18n.translate( 'Unlimited AI Website Builder edits' ),
getDescription: () => i18n.translate( 'Build your site with our AI Website Builder.' ),
getDescription: () =>
i18n.getLocaleSlug()?.startsWith( 'en' ) ||
i18n.hasTranslation(
'Enjoy unrestricted usage of our AI tool to design your perfect website.'
)
? i18n.translate(
'Enjoy unrestricted usage of our AI tool to design your perfect website.'
)
: i18n.translate( 'Build your site with our AI Website Builder.' ),
},

[ FEATURE_UNLIMITED_ENTITIES ]: {
getSlug: () => FEATURE_UNLIMITED_ENTITIES,
getTitle: () => i18n.translate( 'Unlimited pages, posts, users, and visitors' ),
getDescription: () =>
i18n.translate( 'Grow your site without limits — unlimited content, users, and traffic.' ),
},
[ FEATURE_WOO_THEMES ]: {
getSlug: () => FEATURE_WOO_THEMES,
Expand Down