Make WordPress Core


Ignore:
Timestamp:
02/22/2022 11:03:05 AM (2 years ago)
Author:
audrasjb
Message:

Help/About: Update the About page for WordPress 5.9.1.

Props hellofromTonya, audrasjb.
Fixes #55173.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.9/src/wp-admin/about.php

    r52565 r52785  
    3838                <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
    3939            </nav>
     40        </div>
     41
     42        <div class="about__section changelog">
     43            <div class="column">
     44                <h2><?php _e( 'Maintenance Release' ); ?></h2>
     45                <p>
     46                    <?php
     47                    printf(
     48                        /* translators: 1: WordPress version number, 2: plural number of bugs. */
     49                        _n(
     50                            '<strong>Version %1$s</strong> addressed %2$s bug.',
     51                            '<strong>Version %1$s</strong> addressed %2$s bugs.',
     52                            82
     53                        ),
     54                        '5.9.1',
     55                        number_format_i18n( 82 )
     56                    );
     57                    ?>
     58                    <?php
     59                    printf(
     60                        /* translators: %s: HelpHub URL. */
     61                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     62                        sprintf(
     63                            /* translators: %s: WordPress version. */
     64                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     65                            sanitize_title( '5.9.1' )
     66                        )
     67                    );
     68                    ?>
     69                </p>
     70            </div>
    4071        </div>
    4172
Note: See TracChangeset for help on using the changeset viewer.