Make WordPress Core

Ticket #44360: 44360.about.php.diff

File 44360.about.php.diff, 1.9 KB (added by Dency, 6 years ago)
  • wp-admin/about.php

     
    1818include( ABSPATH . 'wp-admin/admin-header.php' );
    1919?>
    2020        <div class="wrap about-wrap full-width-layout">
    21                 <h1><?php printf( __( 'Welcome to WordPress&nbsp;%s' ), $display_version ); ?></h1>
    22 
    23                 <p class="about-text"><?php printf( __( 'Thank you for updating to the latest version! WordPress %s will smooth your design workflow and keep you safe from coding errors.' ), $display_version ); ?></p>
    24                 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
    25 
     21        <h1>
     22                        <?php
     23                        /* translators: %s: WordPress Version */
     24                        printf( __( 'Welcome to WordPress&nbsp;%s' ), $display_version ); ?>
     25        </h1>
     26        <p class="about-text">
     27                        <?php
     28                        /* translators: %s: WordPress Version */
     29                        printf( __( 'Thank you for updating to the latest version! WordPress %s will smooth your design workflow and keep you safe from coding errors.' ), $display_version ); ?>
     30        </p>
     31        <div class="wp-badge">
     32                        <?php
     33                        /* translators: %s: WordPress Version */
     34                        printf( __( 'Version %s' ), $display_version ); ?>
     35        </div>
    2636                <h2 class="nav-tab-wrapper wp-clearfix">
    2737                        <a href="about.php" class="nav-tab nav-tab-active"><?php _e( 'What&#8217;s New' ); ?></a>
    2838                        <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
     
    184194                        </h2>
    185195                        <p>
    186196                        <?php
     197                        /* translators: 1: Gutenberg Plugin URL, 2: Gutenberg Github URL */
    187198                        printf(
    188199                                __( 'WordPress is working on a new way to create and control your content and we&#8217;d love to have your help. Interested in being an <a href="%1$s">early tester</a> or getting involved with the Gutenberg project? <a href="%2$s">Contribute on GitHub</a>.' ),
    189200                                __( 'https://wordpress.org/plugins/gutenberg/' ),