Make WordPress Core

Ticket #48945: 48945.2.diff

File 48945.2.diff, 2.1 KB (added by SergeyBiryukov, 5 years ago)
  • src/wp-admin/about.php

     
    4848                        </nav>
    4949                </div>
    5050
     51                <div class="about__section changelog point-releases">
     52                        <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     53                        <p>
     54                                <?php
     55                                printf(
     56                                        /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     57                                        _n(
     58                                                '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     59                                                '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     60                                                46
     61                                        ),
     62                                        '5.3.1',
     63                                        number_format_i18n( 46 )
     64                                );
     65                                ?>
     66                                <?php
     67                                printf(
     68                                        /* translators: %s: HelpHub URL */
     69                                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     70                                        sprintf(
     71                                                /* translators: %s: WordPress version */
     72                                                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     73                                                sanitize_title( '5.3.1' )
     74                                        )
     75                                );
     76                                ?>
     77                        </p>
     78                </div>
     79
     80                <hr />
     81
    5182                <div class="about__section is-feature">
    5283                        <p>
    5384                                <?php _e( '5.3 expands and refines the block editor introduced in WordPress 5.0 with a new block, more intuitive interactions, and improved accessibility. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site. This release also introduces the Twenty Twenty theme giving the user more design flexibility and integration with the block editor. Creating beautiful web pages and advanced layouts has never been easier.' ); ?>
  • src/wp-admin/css/about.css

     
    132132        padding: 32px 32px 0;
    133133}
    134134
    135 .about__section.is-feature {
     135.about__section.is-feature,
     136.about__section.changelog {
    136137        padding: 32px;
    137138}
    138139