diff --git a/packages/block-library/src/comments-pagination-previous/index.js b/packages/block-library/src/comments-pagination-previous/index.js index 2c7320f661ec8..f39618c689fbe 100644 --- a/packages/block-library/src/comments-pagination-previous/index.js +++ b/packages/block-library/src/comments-pagination-previous/index.js @@ -1,7 +1,7 @@ /** * WordPress dependencies */ -import { _x } from '@wordpress/i18n'; +import { __ } from '@wordpress/i18n'; import { queryPaginationPrevious as icon } from '@wordpress/icons'; /** @@ -19,10 +19,7 @@ export const settings = { edit, example: { attributes: { - label: _x( - 'Comments Previous Page', - 'Example label for the Comments Pagination Previous block' - ), + label: __( 'Comments Previous Page' ), }, }, };