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. Built from https://develop.svn.wordpress.org/trunk@55684 git-svn-id: http://core.svn.wordpress.org/trunk@55196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4f73468485
commit
5afe551668
|
@ -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(); ?>" />
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55683';
|
||||
$wp_version = '6.3-alpha-55684';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue