Media Library list table: Rename 'Attached to' to 'Uploaded to'.
In 3.5, we have chosen to de-emphasize the "attaching" part of the post-attachment relationship. Existing functionality remains the same, but UI emphasis is now placed on "parent" being where the item was originally uploaded. fixes #22439. git-svn-id: http://core.svn.wordpress.org/trunk@22630 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7183a9cce9
commit
c5f94e316e
|
@ -154,7 +154,7 @@ class WP_Media_List_Table extends WP_List_Table {
|
|||
|
||||
/* translators: column name */
|
||||
if ( !$this->detached ) {
|
||||
$posts_columns['parent'] = _x( 'Attached to', 'column name' );
|
||||
$posts_columns['parent'] = _x( 'Uploaded to', 'column name' );
|
||||
if ( post_type_supports( 'attachment', 'comments' ) )
|
||||
$posts_columns['comments'] = '<span class="vers"><div title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></div></span>';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue