Make WordPress Core


Ignore:
Timestamp:
11/30/2022 12:14:21 AM (2 years ago)
Author:
peterwilsoncc
Message:

WordPress 4.0.38.

File:
1 edited

Legend:

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

    r54579 r54905  
    4343
    4444<div class="changelog point-releases">
    45     <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 37 ); ?></h3>
     45    <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 38 ); ?></h3>
     46    <p>
     47        <?php
     48        printf(
     49            /* translators: %s: WordPress version number */
     50            _n(
     51                '<strong>Version %1$s</strong> addressed a security issue.',
     52                '<strong>Version %1$s</strong> addressed some security issues.',
     53                1
     54            ),
     55            '4.0.38'
     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( '4.0.38' )
     66            )
     67        );
     68        ?>
     69    </p>
    4670    <p>
    4771        <?php
Note: See TracChangeset for help on using the changeset viewer.