Make WordPress Core


Ignore:
Timestamp:
02/07/2023 05:08:26 PM (10 months 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-content/themes/twentynineteen/header.php

    r46827 r55276  
    2323<?php wp_body_open(); ?>
    2424<div id="page" class="site">
    25     <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentynineteen' ); ?></a>
     25    <a class="skip-link screen-reader-text" href="#content">
     26        <?php
     27        /* translators: Hidden accessibility text. */
     28        _e( 'Skip to content', 'twentynineteen' );
     29        ?>
     30    </a>
    2631
    2732        <header id="masthead" class="<?php echo is_singular() && twentynineteen_can_show_post_thumbnail() ? 'site-header featured-image' : 'site-header'; ?>">
Note: See TracChangeset for help on using the changeset viewer.