Make WordPress Core


Ignore:
Timestamp:
10/17/2022 07:44:45 PM (2 years ago)
Author:
SergeyBiryukov
Message:

WordPress 4.2.34.

File:
1 edited

Legend:

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

    r54458 r54582  
    4242
    4343<div class="changelog point-releases">
    44     <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 33 ); ?></h3>
     44    <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 34 ); ?></h3>
     45    <p>
     46        <?php
     47        printf(
     48            /* translators: %s: WordPress version number */
     49            __( '<strong>Version %1$s</strong> addressed some security issues.' ),
     50            '4.2.34'
     51        );
     52        ?>
     53        <?php
     54        printf(
     55            /* translators: %s: HelpHub URL */
     56            __( 'For more information, see <a href="%s">the release notes</a>.' ),
     57            sprintf(
     58                /* translators: %s: WordPress version */
     59                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     60                sanitize_title( '4.2.34' )
     61            )
     62        );
     63        ?>
     64    </p>
    4565    <p>
    4666        <?php
Note: See TracChangeset for help on using the changeset viewer.