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-includes/link-template.php

    r55261 r55276  
    29752975function _navigation_markup( $links, $css_class = 'posts-navigation', $screen_reader_text = '', $aria_label = '' ) {
    29762976    if ( empty( $screen_reader_text ) ) {
    2977         $screen_reader_text = __( 'Posts navigation' );
     2977        $screen_reader_text = /* translators: Hidden accessibility text. */ __( 'Posts navigation' );
    29782978    }
    29792979    if ( empty( $aria_label ) ) {
Note: See TracChangeset for help on using the changeset viewer.