Make WordPress Core

Ticket #51415: about-page-text-string-fix.diff

File about-page-text-string-fix.diff, 1.4 KB (added by audrasjb, 4 years ago)

Fix a text string issue in about.php

  • src/wp-admin/about.php

    diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
    index e482d137e6..7594d00b83 100644
    a b require_once ABSPATH . 'wp-admin/admin-header.php'; 
    165165                        </div>
    166166                        <div class="column has-border" style="background-color:#e4d1d1;background-color:var(--global--color-red)">
    167167                                <h3><?php _e( 'Accessibility statement template' ); ?></h3>
    168                                 <p><?php _e( 'Even if you’re not an expert, you can start letting folks know about your site’s commitment to accessibility at the click of a button! The new <a href="%s">feature plugin</a> includes template copy for you to update and publish, and it’s written to support different contexts and jurisdictions.', '#' ); ?></p>
     168                                <p>
     169                                        <?php
     170                                        printf(
     171                                                /* translators: %s: Accessibility statement feature plugin link. */
     172                                                __( 'Even if you’re not an expert, you can start letting folks know about your site’s commitment to accessibility at the click of a button! The new <a href="%s">feature plugin</a> includes template copy for you to update and publish, and it’s written to support different contexts and jurisdictions.' ),
     173                                                '#'
     174                                        );
     175                                        ?>
     176                                </p>
    169177                        </div>
    170178                        <div class="column has-border" style="background-color:#d1d1e4;background-color:var(--global--color-purple)">
    171179                                <h3><?php _e( 'Built-in patterns' ); ?></h3>