diff --git a/src/wp-mail.php b/src/wp-mail.php index 6775de8a27..e1e9f863e6 100644 --- a/src/wp-mail.php +++ b/src/wp-mail.php @@ -244,15 +244,23 @@ for ( $i = 1; $i <= $count; $i++ ) { */ do_action( 'publish_phone', $post_ID ); - echo "\n
" . sprintf(__('Author: %s'), esc_html($post_author)) . '
'; - echo "\n" . sprintf(__('Posted title: %s'), esc_html($post_title)) . '
'; + echo "\n" . __( 'Author:' ) . ' ' . esc_html( $post_author ) . '
'; + echo "\n" . __( 'Posted title:' ) . ' ' . esc_html( $post_title ) . '
'; if(!$pop3->delete($i)) { - echo '' . sprintf(__('Oops: %s'), esc_html($pop3->ERROR)) . '
'; + echo '' . sprintf( + /* translators: %s: POP3 error */ + __( 'Oops: %s' ), + esc_html( $pop3->ERROR ) + ) . '
'; $pop3->reset(); exit; } else { - echo '' . sprintf(__('Mission complete. Message %s deleted.'), $i) . '
'; + echo '' . sprintf( + /* translators: %s: the message ID */ + __( 'Mission complete. Message %s deleted.' ), + '' . $i . '' + ) . '
'; } }