From e3b7b0de5675382154b3aae0e8646adc9c72d32f Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 31 Mar 2026 20:18:42 +0000 Subject: [PATCH] I18N: Provide gettext context to disambiguate translation strings for "Bulk Edit". The "Bulk Edit" translation string is used for both verbs and nouns, and may have different translations in some Locales. This changeset helps disambuguating these different contexts. Follow-up to [61255]. Props audrasjb, shailu25. Fixes #64994. Built from https://develop.svn.wordpress.org/trunk@62186 git-svn-id: http://core.svn.wordpress.org/trunk@61466 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-posts-list-table.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php index fc039a7573..c7d10fca21 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'] = __( 'Bulk edit' ); + $actions['edit'] = _x( 'Bulk edit', 'verb' ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index fa474a553b..0cc95d28f3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '7.1-alpha-62185'; +$wp_version = '7.1-alpha-62186'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.