Ticket #54741: 54741.5.diff
File 54741.5.diff, 1.6 KB (added by , 3 years ago) |
---|
-
src/wp-admin/about.php
298 298 <p> 299 299 <?php 300 300 printf( 301 /* translators: %s: WordPress 6.0Field Guide link. */301 /* translators: %s: WordPress Field Guide link. */ 302 302 __( 'Check out the latest version of the <a href="%s">WordPress Field Guide</a>. It is overflowing with detailed developer notes to help you build with WordPress.' ), 303 303 __( 'https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/' ) 304 304 ); … … 309 309 <p> 310 310 <?php 311 311 printf( 312 /* translators: %s: WordPress 6.0 Release Notes link. */313 __( '<a href="% s">Read the WordPress 6.0Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ),312 /* translators: 1: WordPress Release Notes link, 2: WordPress version number. */ 313 __( '<a href="%1$s">Read the WordPress %2$s Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ), 314 314 sprintf( 315 /* translators: %s: WordPress version . */315 /* translators: %s: WordPress version number. */ 316 316 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 317 317 '6-0' 318 ) 318 ), 319 '6.0' 319 320 ); 320 321 ?> 321 322 </p>