Make WordPress Core


Ignore:
Timestamp:
02/07/2023 05:08:26 PM (2 years ago)
Author:
SergeyBiryukov
Message:

I18N: Mark screen reader strings as such with translator comments.

This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.

Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.

File:
1 edited

Legend:

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

    r54891 r55276  
    925925                            ?>
    926926                        <# } #>
    927                         <span class="screen-reader-text"><?php _e( 'Show more details' ); ?></span>
     927                        <span class="screen-reader-text">
     928                            <?php
     929                            /* translators: Hidden accessibility text. */
     930                            _e( 'Show more details' );
     931                            ?>
     932                        </span>
    928933                        <span class="toggle-indicator" aria-hidden="true"></span>
    929934                    </button>
Note: See TracChangeset for help on using the changeset viewer.