Make WordPress Core

Ticket #26156: user-new.email.diff

File user-new.email.diff, 1.4 KB (added by morganestes, 11 years ago)

wp-admin/user-new.php

  • wp-admin/user-new.php

     
    274274                echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
    275275        if ( !is_super_admin() ) {
    276276                _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');
    278278        } else {
    279279                _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');
    281281        }
    282282?>
    283283<?php
     
    360360                <td><input name="user_login" type="text" id="user_login" value="<?php echo esc_attr($new_user_login); ?>" aria-required="true" /></td>
    361361        </tr>
    362362        <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>
    364364                <td><input name="email" type="text" id="email" value="<?php echo esc_attr($new_user_email); ?>" /></td>
    365365        </tr>
    366366<?php if ( !is_multisite() ) { ?>