Commit 652a6b2ac4 for wordpress.org

commit 652a6b2ac4420c1233ac814678553b44268cc700
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Mon Nov 17 23:37:35 2025 +0000

    Quick/Bulk Edit: Rename the “Edit” bulk action label on the Posts screen to “Bulk edit”.

    This aims to clarify the action being performed.

    Follow-up to [8682], [8857], [8981], [9018], [15491], [48352].

    Props antonrinas, SirLouen, johnbillion, karmatosed, SergeyBiryukov.
    Fixes #35546.
    Built from https://develop.svn.wordpress.org/trunk@61255


    git-svn-id: http://core.svn.wordpress.org/trunk@60567 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php
index bc25dd0045..3d2ecb6887 100644
--- a/wp-admin/includes/class-wp-posts-list-table.php
+++ b/wp-admin/includes/class-wp-posts-list-table.php
@@ -437,7 +437,7 @@ class WP_Posts_List_Table extends WP_List_Table {
 			if ( $this->is_trash ) {
 				$actions['untrash'] = __( 'Restore' );
 			} else {
-				$actions['edit'] = __( 'Edit' );
+				$actions['edit'] = __( 'Bulk edit' );
 			}
 		}

diff --git a/wp-includes/version.php b/wp-includes/version.php
index cf54599767..59cad41d06 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61253';
+$wp_version = '7.0-alpha-61255';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.