Passwords: Add trailing periods in new strings.

Props akibjorklund.
See #32589.


Built from https://develop.svn.wordpress.org/trunk@33208


git-svn-id: http://core.svn.wordpress.org/trunk@33180 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Konstantin Obenland 2015-07-13 18:30:24 +00:00
parent f9070e11b4
commit d932607416
2 changed files with 3 additions and 3 deletions

View File

@ -409,7 +409,7 @@ if ( apply_filters( 'show_password_fields', true ) ) : ?>
</button>
<div style="display:none" id="pass-strength-result"></div>
</div>
<p><span class="description"><?php _e( 'A password reset link will be sent to the user via email' ); ?></span></p>
<p><span class="description"><?php _e( 'A password reset link will be sent to the user via email.' ); ?></span></p>
</td>
</tr>
<tr class="form-field form-required user-pass2-wrap hide-if-js">
@ -423,7 +423,7 @@ if ( apply_filters( 'show_password_fields', true ) ) : ?>
<td>
<label for="pw-weak">
<input type="checkbox" name="pw-weak" class="pw-checkbox" id="pw-weak" />
<?php _e( 'Confirm use of weak password' ); ?>
<?php _e( 'Confirm use of weak password.' ); ?>
</label>
</td>
</tr>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta2-33207';
$wp_version = '4.3-beta2-33208';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.