From dfda67a587a7a3a67f10a87d3e0ca77da4141f61 Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Thu, 24 Aug 2023 20:25:36 +0000 Subject: [PATCH] Help/About: Match icon and text in Help for bulk edit button. Change the 'x' in the Help message that instructs a user how to remove an item from a group of bulk edit items to use the dashicon and text equivalent that matches the visual and accessible control name. Props Presskopp, costdev, sabernhardt, matthewfarlymn, bvreeman22. Fixes #58785. git-svn-id: https://develop.svn.wordpress.org/trunk@56460 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/edit.php b/src/wp-admin/edit.php index 31e3f6b026..b5ed3322ae 100644 --- a/src/wp-admin/edit.php +++ b/src/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.' ), + '' + ) . '

', ) );