diff --git a/packages/edit-site/src/components/page-patterns/patterns-list.js b/packages/edit-site/src/components/page-patterns/patterns-list.js
index 87b830c6180cca..d59596f20e7952 100644
--- a/packages/edit-site/src/components/page-patterns/patterns-list.js
+++ b/packages/edit-site/src/components/page-patterns/patterns-list.js
@@ -81,7 +81,7 @@ export default function PatternsList( { categoryId, type } ) {
{ __(
- 'Patterns that are kept in sync across your site'
+ 'Patterns that are kept in sync across the site'
) }
@@ -101,7 +101,7 @@ export default function PatternsList( { categoryId, type } ) {
{ __(
- 'Patterns that can be changed freely without affecting your site'
+ 'Patterns that can be changed freely without affecting the site'
) }
diff --git a/packages/edit-site/src/components/sidebar-navigation-screen-pattern/use-pattern-details.js b/packages/edit-site/src/components/sidebar-navigation-screen-pattern/use-pattern-details.js
index 9853e2e6de23bc..ed36bb907301b1 100644
--- a/packages/edit-site/src/components/sidebar-navigation-screen-pattern/use-pattern-details.js
+++ b/packages/edit-site/src/components/sidebar-navigation-screen-pattern/use-pattern-details.js
@@ -38,7 +38,7 @@ export default function usePatternDetails( postType, postId ) {
if ( ! descriptionText && addedBy.text ) {
descriptionText = sprintf(
// translators: %s: pattern title e.g: "Header".
- __( 'This is your %s pattern.' ),
+ __( 'This is the %s pattern.' ),
getTitle()
);
}
@@ -46,7 +46,7 @@ export default function usePatternDetails( postType, postId ) {
if ( ! descriptionText && postType === 'wp_block' && record?.title ) {
descriptionText = sprintf(
// translators: %s: user created pattern title e.g. "Footer".
- __( 'This is your %s pattern.' ),
+ __( 'This is the %s pattern.' ),
record.title
);
}
diff --git a/packages/edit-site/src/components/sidebar-navigation-screen-patterns/index.js b/packages/edit-site/src/components/sidebar-navigation-screen-patterns/index.js
index 04f893cdbf2c8e..b28aa6687723b7 100644
--- a/packages/edit-site/src/components/sidebar-navigation-screen-patterns/index.js
+++ b/packages/edit-site/src/components/sidebar-navigation-screen-patterns/index.js
@@ -73,7 +73,7 @@ export default function SidebarNavigationScreenPatterns() {
isRoot={ isTemplatePartsMode }
title={ __( 'Patterns' ) }
description={ __(
- 'Manage what patterns are available when editing your site.'
+ 'Manage what patterns are available when editing the site.'
) }
actions={ }
footer={ footer }