Changeset 45932 for trunk/src/wp-admin/user-edit.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/user-edit.php
r45926 r45932 31 31 $title = __( 'Profile' ); 32 32 } else { 33 /* translators: %s: user's display name*/33 /* translators: %s: User's display name. */ 34 34 $title = __( 'Edit User %s' ); 35 35 } … … 343 343 <tr class="user-language-wrap"> 344 344 <th scope="row"> 345 <?php /* translators: The user language selection field label */ ?>345 <?php /* translators: The user language selection field label. */ ?> 346 346 <label for="locale"><?php _e( 'Language' ); ?><span class="dashicons dashicons-translation" aria-hidden="true"></span></label> 347 347 </th> … … 519 519 <?php 520 520 printf( 521 /* translators: %s: new email*/521 /* translators: %s: New email. */ 522 522 __( 'There is a pending change of your email to %s.' ), 523 523 '<code>' . esc_html( $new_email['newemail'] ) . '</code>' … … 584 584 if ( IS_PROFILE_PAGE ) { 585 585 $description = sprintf( 586 /* translators: %s: Gravatar URL */586 /* translators: %s: Gravatar URL. */ 587 587 __( '<a href="%s">You can change your profile picture on Gravatar</a>.' ), 588 588 __( 'https://en.gravatar.com/' ) … … 694 694 <p class="description"> 695 695 <?php 696 /* translators: %s: user's display name*/696 /* translators: %s: User's display name. */ 697 697 printf( __( 'Log %s out of all locations.' ), $profileuser->display_name ); 698 698 ?> … … 761 761 $output .= $value; 762 762 } else { 763 /* translators: %s: capability name*/763 /* translators: %s: Capability name. */ 764 764 $output .= sprintf( __( 'Denied: %s' ), $cap ); 765 765 }
Note: See TracChangeset
for help on using the changeset viewer.