diff --git a/docs/reference-guides/core-blocks.md b/docs/reference-guides/core-blocks.md index 49b5d30b32b278..01181c13291512 100644 --- a/docs/reference-guides/core-blocks.md +++ b/docs/reference-guides/core-blocks.md @@ -109,7 +109,7 @@ Display content in multiple columns, with blocks added to each column. ([Source] ## Comment Author Avatar -Add the avatar of this comment's author. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-author-avatar)) +Displays the avatar of the comment's author. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-author-avatar)) - **Name:** core/comment-author-avatar - **Category:** theme @@ -118,7 +118,7 @@ Add the avatar of this comment's author. ([Source](https://github.com/WordPress/ ## Comment Author Name -Add the author name of this comment. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-author-name)) +Displays the name of the author of the comment. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-author-name)) - **Name:** core/comment-author-name - **Category:** theme @@ -136,7 +136,7 @@ Displays the contents of a comment. ([Source](https://github.com/WordPress/guten ## Comment Date -Add the date of this comment. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-date)) +Displays the date on which the comment was posted. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-date)) - **Name:** core/comment-date - **Category:** theme @@ -163,7 +163,7 @@ Displays a link to reply to a comment. ([Source](https://github.com/WordPress/gu ## Comment Template -Contains the block elements used to render a comment, like the title, date, author, avatar and more. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-template)) +Contains the block elements used to display a comment, like the title, date, author, avatar and more. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comment-template)) - **Name:** core/comment-template - **Category:** design @@ -181,7 +181,7 @@ Displays a paginated navigation to next/previous set of comments, when applicabl ## Next Page -Displays the next comments page link. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comments-pagination-next)) +Displays the next comment's page link. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comments-pagination-next)) - **Name:** core/comments-pagination-next - **Category:** theme @@ -199,7 +199,7 @@ Displays a list of page numbers for comments pagination. ([Source](https://githu ## Previous Page -Displays the previous comments page link. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comments-pagination-previous)) +Displays the previous comment's page link. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comments-pagination-previous)) - **Name:** core/comments-pagination-previous - **Category:** theme @@ -208,7 +208,7 @@ Displays the previous comments page link. ([Source](https://github.com/WordPress ## Comments Query Loop -An advanced block that allows displaying post comments based on different query parameters and visual configurations. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comments-query-loop)) +An advanced block that allows displaying post comments using different visual configurations. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/block-library/src/comments-query-loop)) - **Name:** core/comments-query-loop - **Category:** theme diff --git a/packages/block-library/src/comment-author-avatar/block.json b/packages/block-library/src/comment-author-avatar/block.json index 3177a812cb825c..e8793d77096bc7 100644 --- a/packages/block-library/src/comment-author-avatar/block.json +++ b/packages/block-library/src/comment-author-avatar/block.json @@ -5,7 +5,7 @@ "title": "Comment Author Avatar", "category": "theme", "parent": [ "core/comment-template" ], - "description": "Add the avatar of this comment's author.", + "description": "Displays the avatar of the comment's author.", "textdomain": "default", "attributes": { "width": { diff --git a/packages/block-library/src/comment-author-name/block.json b/packages/block-library/src/comment-author-name/block.json index 0b8ab6f2ffb1bf..82f3570a0e7d53 100644 --- a/packages/block-library/src/comment-author-name/block.json +++ b/packages/block-library/src/comment-author-name/block.json @@ -5,7 +5,7 @@ "title": "Comment Author Name", "category": "theme", "parent": [ "core/comment-template" ], - "description": "Add the author name of this comment.", + "description": "Displays the name of the author of the comment.", "textdomain": "default", "attributes": { "isLink": { diff --git a/packages/block-library/src/comment-date/block.json b/packages/block-library/src/comment-date/block.json index 306e335f895f9f..8a7f7d387f8bc3 100644 --- a/packages/block-library/src/comment-date/block.json +++ b/packages/block-library/src/comment-date/block.json @@ -5,7 +5,7 @@ "title": "Comment Date", "category": "theme", "parent": [ "core/comment-template" ], - "description": "Add the date of this comment.", + "description": "Displays the date on which the comment was posted.", "textdomain": "default", "attributes": { "format": { diff --git a/packages/block-library/src/comment-template/block.json b/packages/block-library/src/comment-template/block.json index 7c31aac905cca9..03b2990968fee2 100644 --- a/packages/block-library/src/comment-template/block.json +++ b/packages/block-library/src/comment-template/block.json @@ -5,7 +5,7 @@ "title": "Comment Template", "category": "design", "parent": [ "core/comments-query-loop" ], - "description": "Contains the block elements used to render a comment, like the title, date, author, avatar and more.", + "description": "Contains the block elements used to display a comment, like the title, date, author, avatar and more.", "textdomain": "default", "usesContext": [ "postId" ], "supports": { diff --git a/packages/block-library/src/comments-pagination-next/block.json b/packages/block-library/src/comments-pagination-next/block.json index 281f424671af7e..55fc3b6e1fa2cc 100644 --- a/packages/block-library/src/comments-pagination-next/block.json +++ b/packages/block-library/src/comments-pagination-next/block.json @@ -5,7 +5,7 @@ "title": "Next Page", "category": "theme", "parent": [ "core/comments-pagination" ], - "description": "Displays the next comments page link.", + "description": "Displays the next comment's page link.", "textdomain": "default", "attributes": { "label": { diff --git a/packages/block-library/src/comments-pagination-previous/block.json b/packages/block-library/src/comments-pagination-previous/block.json index d779358b787150..3edd33c3c4309e 100644 --- a/packages/block-library/src/comments-pagination-previous/block.json +++ b/packages/block-library/src/comments-pagination-previous/block.json @@ -5,7 +5,7 @@ "title": "Previous Page", "category": "theme", "parent": [ "core/comments-pagination" ], - "description": "Displays the previous comments page link.", + "description": "Displays the previous comment's page link.", "textdomain": "default", "attributes": { "label": { @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/block-library/src/comments-query-loop/block.json b/packages/block-library/src/comments-query-loop/block.json index 6f821670ad64d4..fecbd7c92f6bb7 100644 --- a/packages/block-library/src/comments-query-loop/block.json +++ b/packages/block-library/src/comments-query-loop/block.json @@ -4,7 +4,7 @@ "name": "core/comments-query-loop", "title": "Comments Query Loop", "category": "theme", - "description": "An advanced block that allows displaying post comments based on different query parameters and visual configurations.", + "description": "An advanced block that allows displaying post comments using different visual configurations.", "textdomain": "default", "attributes": { "tagName": {