Changeset 43595 for trunk/src/wp-signup.php
- Timestamp:
- 08/30/2018 12:13:53 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r43571 r43595 324 324 $errors = $filtered_results['errors']; 325 325 326 /* translators: %s: Network's site name. */ 326 327 echo '<h2>' . sprintf( __( 'Get <em>another</em> %s site in seconds' ), get_network()->site_name ) . '</h2>'; 327 328 … … 330 331 } 331 332 ?> 332 <p><?php printf( __( 'Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!' ), $current_user->display_name ); ?></p> 333 <p> 334 <?php 335 /* translators: %s: Current user's display name. */ 336 printf( __( 'Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!' ), $current_user->display_name ); 337 ?> 338 </p> 333 339 334 340 <?php … … 956 962 957 963 if ( $active_signup == 'blog' || $active_signup == 'all' ) { 958 /* translators: %s: site address */959 964 printf( 965 /* translators: %s: site address */ 960 966 '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>', 961 967 '<strong>' . $newblog . '</strong>' 962 968 ); 963 } else { /* translators: %s: site address */969 } else { 964 970 printf( 971 /* translators: %s: site address */ 965 972 '<p><em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>', 966 973 '<strong>' . $newblog . '</strong>'
Note: See TracChangeset
for help on using the changeset viewer.