Changeset 35898
- Timestamp:
- 12/13/2015 03:23:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/credits.php
r35812 r35898 36 36 37 37 if ( ! $credits ) { 38 echo '<p class="about-description">' . sprintf( __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ), 38 echo '<p class="about-description">'; 39 /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */ 40 printf( __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ), 39 41 'https://wordpress.org/about/', 40 /* translators: Url to the codex documentation on contributing to WordPress used on the credits page */ 41 __( 'https://codex.wordpress.org/Contributing_to_WordPress' ) ) . '</p>'; 42 __( 'https://make.wordpress.org/' ) 43 ); 44 echo '</p>'; 42 45 include( ABSPATH . 'wp-admin/admin-footer.php' ); 43 46 exit; … … 95 98 96 99 ?> 97 <p class="clear"><?php printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ), 98 /* translators: URL to the Make WordPress 'Get Involved' landing page used on the credits page */ 99 __( 'https://make.wordpress.org/' ) ); ?></p> 100 <p class="clear"><?php 101 /* translators: %s: https://make.wordpress.org/ */ 102 printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ), 103 __( 'https://make.wordpress.org/' ) 104 ); 105 ?></p> 100 106 101 107 </div>
Note: See TracChangeset
for help on using the changeset viewer.