Login and Registration: Grammar improvement on Sign-up user-facing strings.
Props NekoJonez, audrasjb. Fixes #58115. Built from https://develop.svn.wordpress.org/trunk@55902 git-svn-id: http://core.svn.wordpress.org/trunk@55414 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
41396a44f5
commit
d9faf17705
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-55901';
|
$wp_version = '6.3-alpha-55902';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -704,8 +704,8 @@ function confirm_user_signup( $user_name, $user_email ) {
|
||||||
<p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ); ?></p>
|
<p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ); ?></p>
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
/* translators: %s: Email address. */
|
/* translators: %s: The user email address. */
|
||||||
printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' );
|
printf( __( 'Check your inbox at %s and click on the given link.' ), '<strong>' . $user_email . '</strong>' );
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
<p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
|
<p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
|
||||||
|
@ -862,8 +862,8 @@ function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $use
|
||||||
<p><?php _e( 'But, before you can start using your site, <strong>you must activate it</strong>.' ); ?></p>
|
<p><?php _e( 'But, before you can start using your site, <strong>you must activate it</strong>.' ); ?></p>
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
/* translators: %s: Email address. */
|
/* translators: %s: The user email address. */
|
||||||
printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' );
|
printf( __( 'Check your inbox at %s and click on the given link.' ), '<strong>' . $user_email . '</strong>' );
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
<p><?php _e( 'If you do not activate your site within two days, you will have to sign up again.' ); ?></p>
|
<p><?php _e( 'If you do not activate your site within two days, you will have to sign up again.' ); ?></p>
|
||||||
|
|
Loading…
Reference in New Issue