From 6f8d5c1401b5b79e533e33ff93ceffdf08ebff5a Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 17 Nov 2012 06:56:05 +0000 Subject: [PATCH] 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: https://develop.svn.wordpress.org/trunk@22630 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-media-list-table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/class-wp-media-list-table.php b/wp-admin/includes/class-wp-media-list-table.php index 28f9557a37..41c50805d2 100644 --- a/wp-admin/includes/class-wp-media-list-table.php +++ b/wp-admin/includes/class-wp-media-list-table.php @@ -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'] = '
'; }