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

See #43820.
Built from https://develop.svn.wordpress.org/trunk@43062


git-svn-id: http://core.svn.wordpress.org/trunk@42891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-05-01 21:37:23 +00:00
parent 2f321e234e
commit 6c2470a091
3 changed files with 3 additions and 3 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." ),

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-43061';
$wp_version = '5.0-alpha-43062';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.