I18N: Add context for "Mine" string added in [43056].

See #43820.

git-svn-id: https://develop.svn.wordpress.org/trunk@43062 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-05-01 21:36:41 +00:00
parent 87b81f220c
commit 0c848f5503
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ class WP_Media_List_Table extends WP_List_Table {
$type_links['mine'] = sprintf(
'<option value="mine"%s>%s</option>',
selected( 'mine' === $filter, true, false ),
__( 'Mine' )
_x( 'Mine', 'media items' )
);
return $type_links;

View File

@ -3657,7 +3657,7 @@ function wp_enqueue_media( $args = array() ) {
'noItemsFound' => __( 'No items found.' ),
'insertIntoPost' => $post_type_object->labels->insert_into_item,
'unattached' => __( 'Unattached' ),
'mine' => __( 'Mine' ),
'mine' => _x( 'Mine', 'media items' ),
'trash' => _x( 'Trash', 'noun' ),
'uploadedToThisPost' => $post_type_object->labels->uploaded_to_this_item,
'warnDelete' => __( "You are about to permanently delete this item from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ),