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
This commit is contained in:
audrasjb
2026-03-31 20:18:42 +00:00
parent 883d5d7bc6
commit e3b7b0de56
2 changed files with 2 additions and 2 deletions

View File

@@ -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' );
}
}

View File

@@ -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.