-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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. |
||
|
||
icon: embedContentIcon, | ||
|
||
// Unknown embeds should not be responsive by default. | ||
responsive: false, | ||
|
||
transforms: { | ||
from: [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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. |
||
|
||
icon: <SVG viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><Path d="M0,0h24v24H0V0z" fill="none" /><Path d="m19 5v14h-14v-14h14m0-2h-14c-1.1 0-2 0.9-2 2v14c0 1.1 0.9 2 2 2h14c1.1 0 2-0.9 2-2v-14c0-1.1-0.9-2-2-2z" /><Path d="m14.14 11.86l-3 3.87-2.14-2.59-3 3.86h12l-3.86-5.14z" /></SVG>, | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. There is a stray "media" word here. |
||
|
||
icon: <SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><Path d="M13 17h8v-2h-8v2zM3 19h8V5H3v14zM13 9h8V7h-8v2zm0 4h8v-2h-8v2z" /></SVG>, | ||
|
||
category: 'layout', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this be "narratives", rather than "narrative"? |
||
|
||
icon: <SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><Path d="M11 5v7H9.5C7.6 12 6 10.4 6 8.5S7.6 5 9.5 5H11m8-2H9.5C6.5 3 4 5.5 4 8.5S6.5 14 9.5 14H11v7h2V5h2v16h2V5h2V3z" /></SVG>, | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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. |
||
|
||
icon: <SVG viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><Path fill="none" d="M0 0h24v24H0V0z" /><G><Path d="M19 18h-6l2-4h-2V6h8v7l-2 5zm-2-2l2-3V8h-4v4h4l-2 4zm-8 2H3l2-4H3V6h8v7l-2 5zm-2-2l2-3V8H5v4h4l-2 4z" /></G></SVG>, | ||
|
||
category: 'common', | ||
|
||
keywords: [ __( 'blockquote' ) ], | ||
|
||
attributes: blockAttributes, | ||
|
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.