Skip to content

Commit c363981

Browse files
committed
Users: Remove periods in checkbox labels for consistency.
Remove periods at the ends of three checkbox labels on add new user screen. Checkboxes in the WordPress admin generally do not have periods. Props pratikthink, joedolson. Fixes #43814. git-svn-id: https://develop.svn.wordpress.org/trunk@57274 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 15cbfd5 commit c363981

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/wp-admin/user-new.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@
472472
<th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th>
473473
<td>
474474
<input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" />
475-
<label for="adduser-noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label>
475+
<label for="adduser-noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation' ); ?></label>
476476
</td>
477477
</tr>
478478
<?php } ?>
@@ -616,7 +616,7 @@
616616
<th scope="row"><?php _e( 'Send User Notification' ); ?></th>
617617
<td>
618618
<input type="checkbox" name="send_user_notification" id="send_user_notification" value="1" <?php checked( $new_user_send_notification ); ?> />
619-
<label for="send_user_notification"><?php _e( 'Send the new user an email about their account.' ); ?></label>
619+
<label for="send_user_notification"><?php _e( 'Send the new user an email about their account' ); ?></label>
620620
</td>
621621
</tr>
622622
<?php } // End if ! is_multisite(). ?>
@@ -639,7 +639,7 @@
639639
<th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th>
640640
<td>
641641
<input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> />
642-
<label for="noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label>
642+
<label for="noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation' ); ?></label>
643643
</td>
644644
</tr>
645645
<?php } ?>

0 commit comments

Comments
 (0)