Make WordPress Core


Ignore:
Timestamp:
02/07/2023 05:08:26 PM (21 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/twentysixteen/header.php

    r52013 r55276  
    2626<div id="page" class="site">
    2727    <div class="site-inner">
    28         <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentysixteen' ); ?></a>
     28        <a class="skip-link screen-reader-text" href="#content">
     29            <?php
     30            /* translators: Hidden accessibility text. */
     31            _e( 'Skip to content', 'twentysixteen' );
     32            ?>
     33        </a>
    2934
    3035        <header id="masthead" class="site-header">
Note: See TracChangeset for help on using the changeset viewer.