Skip to content

Commit d6a9411

Browse files
committed
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]. Reviewed by westonruter. Merges [62186] to the 7.0 branch. Props audrasjb, shailu25. Fixes #64994. git-svn-id: https://develop.svn.wordpress.org/branches/7.0@62215 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 49163c8 commit d6a9411

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wp-admin/includes/class-wp-posts-list-table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ protected function get_bulk_actions() {
437437
if ( $this->is_trash ) {
438438
$actions['untrash'] = __( 'Restore' );
439439
} else {
440-
$actions['edit'] = __( 'Bulk edit' );
440+
$actions['edit'] = _x( 'Bulk edit', 'verb' );
441441
}
442442
}
443443

0 commit comments

Comments
 (0)