diff --git a/wp-mail.php b/wp-mail.php index 027c32253b..492da84801 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -185,19 +185,19 @@ for ($i=1; $i <= $count; $i++) : do_action('publish_phone', $post_ID); - echo "\n
Author: " . wp_specialchars($post_author) . "
"; - echo "\nPosted title: " . wp_specialchars($post_title) . "
";
+ echo "\n
" . sprintf(__('Author: %s'), wp_specialchars($post_author)) . '
'; + echo "\n" . sprintf(__('Posted title: %s'), wp_specialchars($post_title)) . '
'; if(!$pop3->delete($i)) { - echo 'Oops '.wp_specialchars($pop3->ERROR).'
'; + echo '' . sprintf(__('Oops: %s'), wp_specialchars($pop3->ERROR)) . '
'; $pop3->reset(); exit; } else { - echo "Mission complete, message $i deleted.
"; + echo '' . sprintf(__('Mission complete. Message %s deleted.'), $i) . '
'; } endfor; $pop3->quit(); -?> \ No newline at end of file +?>