Changeset 47521 for trunk/src/wp-admin/credits.php
- Timestamp:
- 03/27/2020 11:39:37 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/credits.php
r47475 r47521 23 23 <div class="about__header"> 24 24 <div class="about__header-title"> 25 < h1>25 <p> 26 26 <?php _e( 'WordPress' ); ?> 27 27 <span><?php echo $display_version; ?></span> 28 </ h1>28 </p> 29 29 </div> 30 30 … … 43 43 </div> 44 44 45 <div class="about__section ">45 <div class="about__section is-feature"> 46 46 <div class="column"> 47 <h2><?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?></h2> 47 <h1><?php _e( 'Credits' ); ?></h1> 48 49 <?php if ( ! $credits ) : ?> 48 50 49 51 <p> 50 52 <?php 51 if ( ! $credits ) { 52 printf( 53 /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */ 54 __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ), 55 __( 'https://wordpress.org/about/' ), 56 __( 'https://make.wordpress.org/' ) 57 ); 58 } else { 59 printf( 60 /* translators: %s: https://make.wordpress.org/ */ 61 __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ), 62 __( 'https://make.wordpress.org/' ) 63 ); 64 } 53 printf( 54 /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */ 55 __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ), 56 __( 'https://wordpress.org/about/' ), 57 __( 'https://make.wordpress.org/' ) 58 ); 65 59 ?> 66 60 </p> 61 62 <?php else : ?> 63 64 <p> 65 <?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?> 66 </p> 67 <p> 68 <?php 69 printf( 70 /* translators: %s: https://make.wordpress.org/ */ 71 __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ), 72 __( 'https://make.wordpress.org/' ) 73 ); 74 ?> 75 </p> 76 77 <?php endif; ?> 67 78 </div> 68 79
Note: See TracChangeset
for help on using the changeset viewer.