Ticket #35668: 35668.3.patch
File 35668.3.patch, 711 bytes (added by , 9 years ago) |
---|
-
wp-admin/credits.php
98 98 99 99 ?> 100 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/' ) 101 printf( 102 /* translators: %s: link to make.wordpress.org */ 103 __( 'Want to see your name in lights on this page? %s.' ), 104 sprintf( 105 '<a href="%1$s">%2$s</a>', 106 esc_url( __( 'https://make.wordpress.org/' ) ), 107 __( 'Get involved in WordPress' ) 108 ) 104 109 ); 105 110 ?></p> 106 111