Changeset 45932 for trunk/src/wp-signup.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r45927 r45932 134 134 printf( 135 135 '<p>(<strong>%s</strong>) %s</p>', 136 /* translators: %s: site address*/136 /* translators: %s: Site address. */ 137 137 sprintf( __( 'Your address will be %s.' ), $site ), 138 138 __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) … … 339 339 $errors = $filtered_results['errors']; 340 340 341 /* translators: %s: Network 's site name. */341 /* translators: %s: Network title. */ 342 342 echo '<h2>' . sprintf( __( 'Get <em>another</em> %s site in seconds' ), get_network()->site_name ) . '</h2>'; 343 343 … … 519 519 <h2> 520 520 <?php 521 /* translators: %s: site name*/521 /* translators: %s: Site title. */ 522 522 printf( __( 'The site %s is yours.' ), $site ); 523 523 ?> … … 526 526 <?php 527 527 printf( 528 /* translators: 1: link to new site, 2: login URL, 3: username*/528 /* translators: 1: Link to new site, 2: Login URL, 3: Username. */ 529 529 __( '%1$s is your new site. <a href="%2$s">Log in</a> as “%3$s” using your existing password.' ), 530 530 sprintf( … … 593 593 <h2> 594 594 <?php 595 /* translators: %s: name of the network*/595 /* translators: %s: Name of the network. */ 596 596 printf( __( 'Get your own %s account in seconds' ), get_network()->site_name ); 597 597 ?> … … 666 666 <h2> 667 667 <?php 668 /* translators: %s: username*/668 /* translators: %s: Username. */ 669 669 printf( __( '%s is your new username' ), $user_name ) 670 670 ?> … … 673 673 <p> 674 674 <?php 675 /* translators: %s: email address*/675 /* translators: %s: Email address. */ 676 676 printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' ); 677 677 ?> … … 823 823 <h2> 824 824 <?php 825 /* translators: %s: site address*/825 /* translators: %s: Site address. */ 826 826 printf( __( 'Congratulations! Your new site, %s, is almost ready.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) 827 827 ?> … … 831 831 <p> 832 832 <?php 833 /* translators: %s: email address*/833 /* translators: %s: Email address. */ 834 834 printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' ); 835 835 ?> … … 844 844 <li> 845 845 <?php 846 /* translators: %s: email address*/846 /* translators: %s: Email address. */ 847 847 printf( __( 'Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email.' ), $user_email ); 848 848 ?> … … 923 923 echo ' '; 924 924 925 /* translators: %s: network settings URL*/925 /* translators: %s: URL to Network Settings screen. */ 926 926 printf( __( 'To change or disable registration go to your <a href="%s">Options page</a>.' ), esc_url( network_admin_url( 'settings.php' ) ) ); 927 927 echo '</div>'; … … 935 935 } elseif ( 'blog' === $active_signup && ! is_user_logged_in() ) { 936 936 $login_url = wp_login_url( network_site_url( 'wp-signup.php' ) ); 937 /* translators: %s: login URL*/937 /* translators: %s: Login URL. */ 938 938 printf( __( 'You must first <a href="%s">log in</a>, and then you can create a new site.' ), $login_url ); 939 939 } else { … … 984 984 if ( 'blog' === $active_signup || 'all' === $active_signup ) { 985 985 printf( 986 /* translators: %s: site address*/986 /* translators: %s: Site address. */ 987 987 '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>', 988 988 '<strong>' . $newblog . '</strong>' … … 990 990 } else { 991 991 printf( 992 /* translators: %s: site address*/992 /* translators: %s: Site address. */ 993 993 '<p><em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>', 994 994 '<strong>' . $newblog . '</strong>'
Note: See TracChangeset
for help on using the changeset viewer.