Changeset 45932 for trunk/src/wp-mail.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-mail.php
r45599 r45932 132 132 $author = sanitize_email( $author ); 133 133 if ( is_email( $author ) ) { 134 /* translators: Post author email address*/134 /* translators: %s: Post author email address. */ 135 135 echo '<p>' . sprintf( __( 'Author is %s' ), $author ) . '</p>'; 136 136 $userdata = get_user_by( 'email', $author ); … … 246 246 if ( ! $pop3->delete( $i ) ) { 247 247 echo '<p>' . sprintf( 248 /* translators: %s: POP3 error */248 /* translators: %s: POP3 error. */ 249 249 __( 'Oops: %s' ), 250 250 esc_html( $pop3->ERROR ) … … 254 254 } else { 255 255 echo '<p>' . sprintf( 256 /* translators: %s: the message ID*/256 /* translators: %s: The message ID. */ 257 257 __( 'Mission complete. Message %s deleted.' ), 258 258 '<strong>' . $i . '</strong>'
Note: See TracChangeset
for help on using the changeset viewer.