mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
I18N: Use correct translation function in wp-admin/includes/media.php.
This changeset replaces `echo __()` with the appropriate `_e()` function. It also ensures the punctuation is included in the translation string. Props mujuonly, audrasjb, vladytimy, krupalpanchal, mukesh27. Fixes #58138. git-svn-id: https://develop.svn.wordpress.org/trunk@55684 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2737,7 +2737,7 @@ function media_upload_library_form( $errors ) {
|
||||
<label class="screen-reader-text" for="media-search-input">
|
||||
<?php
|
||||
/* translators: Hidden accessibility text. */
|
||||
echo __( 'Search Media' ) . ':';
|
||||
_e( 'Search Media:' );
|
||||
?>
|
||||
</label>
|
||||
<input type="search" id="media-search-input" name="s" value="<?php the_search_query(); ?>" />
|
||||
|
||||
Reference in New Issue
Block a user