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

Polish welcome guide copy for page / template editing #52282

Merged
merged 2 commits into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions packages/edit-site/src/components/welcome-guide/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function WelcomeGuidePage() {
return null;
}

const heading = __( 'Editing your page' );
const heading = __( 'Editing a page' );

return (
<Guide
Expand Down Expand Up @@ -63,7 +63,7 @@ export default function WelcomeGuidePage() {
</h1>
<p className="edit-site-welcome-guide__text">
{ __(
'We’ve recently introduced the ability to edit pages within the site editor. You can switch to editing your template using the settings sidebar.'
'It’s now possible to edit page content in the site editor. To customise other parts of the page like the header and footer switch to editing the template using the settings sidebar.'
) }
</p>
</>
Expand Down
4 changes: 2 additions & 2 deletions packages/edit-site/src/components/welcome-guide/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function WelcomeGuideTemplate() {
return null;
}

const heading = __( 'Editing your template' );
const heading = __( 'Editing a template' );

return (
<Guide
Expand Down Expand Up @@ -70,7 +70,7 @@ export default function WelcomeGuideTemplate() {
</h1>
<p className="edit-site-welcome-guide__text">
{ __(
'You’re now editing your page’s template. To switch back to editing your page you can click the back button in the toolbar.'
'Note that the same template can be used by multiple pages, so any changes made here may affect other pages on the site. To switch back to editing the page content click the ‘Back’ button in the toolbar.'
) }
</p>
</>
Expand Down
Loading