Make WordPress Core


Ignore:
Timestamp:
06/05/2024 03:11:38 PM (2 years ago)
Author:
hellofromTonya
Message:

Bump 6.5 branch to version 6.5.4.

File:
1 edited

Legend:

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

    r58114 r58342  
    4545                        <div class="column">
    4646                                <h2><?php _e( 'Maintenance and Security Release' ); ?></h2>
     47                                <p>
     48                                        <?php
     49                                        printf(
     50                                                /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     51                                                _n(
     52                                                        '<strong>Version %1$s</strong> addressed %2$s bug.',
     53                                                        '<strong>Version %1$s</strong> addressed %2$s bugs.',
     54                                                        10
     55                                                ),
     56                                                '6.5.4',
     57                                                '5'
     58                                        );
     59                                        ?>
     60                                        <?php
     61                                        printf(
     62                                                /* translators: %s: HelpHub URL. */
     63                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     64                                                sprintf(
     65                                                        /* translators: %s: WordPress version. */
     66                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     67                                                        sanitize_title( '6.5.4' )
     68                                                )
     69                                        );
     70                                        ?>
     71                                </p>                           
    4772                                <p>
    4873                                        <?php
Note: See TracChangeset for help on using the changeset viewer.