Favor using the consistent and agnostic string 'Attach' over 'Attach to a post' in the media list table.

Props pavelevap.
Fixes #33515.


git-svn-id: https://develop.svn.wordpress.org/trunk@33810 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2015-08-30 03:09:25 +00:00
parent 75998818a4
commit 413df72474

View File

@ -127,7 +127,7 @@ class WP_Media_List_Table extends WP_List_Table {
}
if ( $this->detached )
$actions['attach'] = __( 'Attach to a post' );
$actions['attach'] = __( 'Attach' );
return $actions;
}