diff --git a/src/wp-admin/includes/class-wp-media-list-table.php b/src/wp-admin/includes/class-wp-media-list-table.php
index cc27e80324..d425bccfbf 100644
a
|
b
|
class WP_Media_List_Table extends WP_List_Table { |
151 | 151 | ); |
152 | 152 | } |
153 | 153 | |
154 | | $type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . __( 'Unattached' ) . '</option>'; |
| 154 | $type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . _x( 'Unattached', 'media items' ) . '</option>'; |
155 | 155 | |
156 | 156 | $type_links['mine'] = sprintf( |
157 | 157 | '<option value="mine"%s>%s</option>', |
diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php
index 43795c9084..6e7f66760f 100644
a
|
b
|
function wp_enqueue_media( $args = array() ) { |
4456 | 4456 | 'allDates' => __( 'All dates' ), |
4457 | 4457 | 'noItemsFound' => __( 'No items found.' ), |
4458 | 4458 | 'insertIntoPost' => $post_type_object->labels->insert_into_item, |
4459 | | 'unattached' => __( 'Unattached' ), |
| 4459 | 'unattached' => _x( 'Unattached', 'media items' ), |
4460 | 4460 | 'mine' => _x( 'Mine', 'media items' ), |
4461 | 4461 | 'trash' => _x( 'Trash', 'noun' ), |
4462 | 4462 | 'uploadedToThisPost' => $post_type_object->labels->uploaded_to_this_item, |
diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php
index 2bcd72c6d4..634f696b64 100644
a
|
b
|
function get_post_mime_types() { |
2939 | 2939 | ), |
2940 | 2940 | ), |
2941 | 2941 | 'audio' => array( |
2942 | | __( 'Audio' ), |
| 2942 | _x( 'Audio', 'media items' ), |
2943 | 2943 | __( 'Manage Audio' ), |
2944 | 2944 | /* translators: %s: Number of audio files. */ |
2945 | 2945 | _n_noop( |
… |
… |
function get_post_mime_types() { |
2948 | 2948 | ), |
2949 | 2949 | ), |
2950 | 2950 | 'video' => array( |
2951 | | __( 'Video' ), |
| 2951 | _x( 'Video', 'media items' ), |
2952 | 2952 | __( 'Manage Video' ), |
2953 | 2953 | /* translators: %s: Number of video files. */ |
2954 | 2954 | _n_noop( |