Ticket #44360: 44360.about.php.diff
File 44360.about.php.diff, 1.9 KB (added by , 6 years ago) |
---|
-
wp-admin/about.php
18 18 include( ABSPATH . 'wp-admin/admin-header.php' ); 19 19 ?> 20 20 <div class="wrap about-wrap full-width-layout"> 21 <h1><?php printf( __( 'Welcome to WordPress %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 %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> 26 36 <h2 class="nav-tab-wrapper wp-clearfix"> 27 37 <a href="about.php" class="nav-tab nav-tab-active"><?php _e( 'What’s New' ); ?></a> 28 38 <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> … … 184 194 </h2> 185 195 <p> 186 196 <?php 197 /* translators: 1: Gutenberg Plugin URL, 2: Gutenberg Github URL */ 187 198 printf( 188 199 __( 'WordPress is working on a new way to create and control your content and we’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>.' ), 189 200 __( 'https://wordpress.org/plugins/gutenberg/' ),