Ticket #26156: user-new.email.diff
File user-new.email.diff, 1.4 KB (added by , 11 years ago) |
---|
-
wp-admin/user-new.php
274 274 echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>'; 275 275 if ( !is_super_admin() ) { 276 276 _e( 'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ); 277 $label = __('E -mail');277 $label = __('Email'); 278 278 } else { 279 279 _e( 'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ); 280 $label = __('E -mail or Username');280 $label = __('Email or Username'); 281 281 } 282 282 ?> 283 283 <?php … … 360 360 <td><input name="user_login" type="text" id="user_login" value="<?php echo esc_attr($new_user_login); ?>" aria-required="true" /></td> 361 361 </tr> 362 362 <tr class="form-field form-required"> 363 <th scope="row"><label for="email"><?php _e('E -mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>363 <th scope="row"><label for="email"><?php _e('Email'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th> 364 364 <td><input name="email" type="text" id="email" value="<?php echo esc_attr($new_user_email); ?>" /></td> 365 365 </tr> 366 366 <?php if ( !is_multisite() ) { ?>