Make WordPress Core

Ticket #23348: 23348.2.diff

File 23348.2.diff, 1.0 KB (added by desrosj, 7 years ago)
  • src/wp-admin/credits.php

     
    5353
    5454echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
    5555
     56?>
     57<p>
     58<?php
     59        /* translators: %s: https://make.wordpress.org/ */
     60        printf(
     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?>
     65</p>
     66<?php
     67
    5668foreach ( $credits['groups'] as $group_slug => $group_data ) {
    5769        if ( $group_data['name'] ) {
    5870                if ( 'Translators' == $group_data['name'] ) {
     
    104116}
    105117
    106118?>
    107 <p class="clear">
    108 <?php
    109         /* translators: %s: https://make.wordpress.org/ */
    110         printf(
    111                 __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
    112                 __( 'https://make.wordpress.org/' )
    113         );
    114 ?>
    115 </p>
    116 
    117119</div>
    118120</div>
    119121<?php