Changeset 46572 for trunk/src/wp-admin/credits.php
- Timestamp:
- 10/22/2019 07:17:59 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/credits.php
r45932 r46572 19 19 <div class="wrap about-wrap full-width-layout"> 20 20 21 <h1> 22 <?php 23 printf( 24 /* translators: %s: The current WordPress version number. */ 25 __( 'Welcome to WordPress %s' ), 26 $display_version 27 ); 28 ?> 29 </h1> 21 <div class="about__header"> 22 <div class="about__header-title"> 23 <h1> 24 <span><?php echo $display_version; ?></span> 25 <?php _e( 'WordPress' ); ?> 26 </h1> 27 </div> 30 28 31 <p class="about-text">32 <?php33 printf(34 /* translators: %s: The current WordPress version number. */35 __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),36 $display_version37 );38 ?>39 </p>29 <div class="about__header-badge wp-badge"> 30 <?php 31 printf( 32 /* translators: %s: The current WordPress version number. */ 33 __( 'Version %s' ), 34 $display_version 35 ); 36 ?> 37 </div> 40 38 41 <div class="wp-badge"> 42 <?php 43 printf( 44 /* translators: %s: The current WordPress version number. */ 45 __( 'Version %s' ), 46 $display_version 47 ); 48 ?> 49 </div> 39 <div class="about__header-text"> 40 <p> 41 <?php 42 printf( 43 /* translators: %s: The current WordPress version number. */ 44 __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ), 45 $display_version 46 ); 47 ?> 48 </p> 49 </div> 50 50 51 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 52 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 53 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> 54 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 55 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 56 </nav> 51 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 52 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 53 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> 54 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 55 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 56 </nav> 57 </div> 57 58 58 <div class="about-wrap-content">59 <div class="about-wrap-content"> 59 60 <?php 60 61 … … 138 139 139 140 ?> 140 </div>141 </div> 141 142 </div> 142 143 <?php
Note: See TracChangeset
for help on using the changeset viewer.