-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Update block descriptions #11148
Update block descriptions #11148
Conversation
@@ -36,9 +36,13 @@ export const name = 'core/quote'; | |||
|
|||
export const settings = { | |||
title: __( 'Quote' ), | |||
description: __( 'Maybe someone else said it better -- add some quoted text.' ), | |||
|
|||
description: __( 'Give quoted text visual emphasis. "In quoting others, we cite ourselves." — Julio Cortázar' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other user-facing strings use fancy quotes instead of typewriter quotes, e.g. the NUX tips.
@@ -76,7 +76,7 @@ export const name = 'core/paragraph'; | |||
export const settings = { | |||
title: __( 'Paragraph' ), | |||
|
|||
description: __( 'Add some basic text.' ), | |||
description: __( 'Start with the building block of all narrative.' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be "narratives", rather than "narrative"?
@@ -26,6 +26,8 @@ export const name = 'core/media-text'; | |||
export const settings = { | |||
title: __( 'Media & Text' ), | |||
|
|||
description: __( 'Set media and words side-by-side media for a richer layout.' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a stray "media" word here.
@@ -102,7 +102,7 @@ const schema = { | |||
export const settings = { | |||
title: __( 'Image' ), | |||
|
|||
description: __( 'They’re worth 1,000 words! Insert a single image.' ), | |||
description: __( 'Insert an image to make a visual statement.' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps this should be changed to be closer to the Video block description.
@@ -15,10 +15,14 @@ export const name = 'core/embed'; | |||
|
|||
export const settings = getEmbedBlockSettings( { | |||
title: _x( 'Embed', 'block title' ), | |||
description: __( 'The Embed block allows you to easily add videos, images, tweets, audio, and other content to your post or page.' ), | |||
|
|||
description: __( 'Embed videos, images, tweets, audio, and other content from external sources.' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should say "posts" rather than "tweets" to be more general and not reference any specific platform or service.
@@ -17,7 +17,7 @@ export const name = 'core/audio'; | |||
export const settings = { | |||
title: __( 'Audio' ), | |||
|
|||
description: __( 'Embed an audio file and a simple audio player.' ), | |||
description: __( 'Embed a simple audio player.' ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps this should be changed to be similar to the Video block description.
Noting we have an issue in #10971 also for reference. Ideally we iterate in first PR. |
Description
This PR updates the block descriptions.
Fixes #10919