diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 31e3f6b026..b5ed3322ae 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -288,7 +288,11 @@ if ( 'post' === $post_type ) { 'title' => __( 'Bulk actions' ), 'content' => '
' . __( 'You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.' ) . '
' . - '' . __( 'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.' ) . '
', + '' . sprintf( + /* translators: %s: The dismiss dashicon used for buttons that dismiss or remove. */ + __( 'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.' ), + '' + ) . '
', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 46ccb1e3ed..0d1a6a0c8b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56459'; +$wp_version = '6.4-alpha-56460'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.