Make WordPress Core

Changeset 55684


Ignore:
Timestamp:
04/24/2023 09:26:12 PM (8 months ago)
Author:
audrasjb
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/media.php

    r55276 r55684  
    27382738            <?php
    27392739            /* translators: Hidden accessibility text. */
    2740             echo __( 'Search Media' ) . ':';
     2740            _e( 'Search Media:' );
    27412741            ?>
    27422742        </label>
Note: See TracChangeset for help on using the changeset viewer.