From 4d29364ba03b1d6fb958e50d3f254d2c0b20639a Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 29 Jan 2012 08:12:09 +0000 Subject: [PATCH] Kill the exclamation points off an error message for easier translation. props wojtek.szkutnik, fixes #11270. git-svn-id: https://develop.svn.wordpress.org/trunk@19782 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/comment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/comment.php b/wp-admin/comment.php index a1a7b98a64..6963f770cc 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -65,7 +65,7 @@ case 'editcomment' : $comment_id = absint( $_GET['c'] ); if ( !$comment = get_comment( $comment_id ) ) - comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' '.__('Go back').'!', 'javascript:history.go(-1)') ); + comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' ' . __('Go back') . '.', 'javascript:history.go(-1)') ); if ( !current_user_can( 'edit_comment', $comment_id ) ) comment_footer_die( __('You are not allowed to edit this comment.') ); @@ -222,7 +222,7 @@ case 'unapprovecomment' : $noredir = isset($_REQUEST['noredir']); if ( !$comment = get_comment($comment_id) ) - comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' '.__('Go back').'!', 'edit-comments.php') ); + comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' ' . __('Go back') . '.', 'edit-comments.php') ); if ( !current_user_can( 'edit_comment', $comment->comment_ID ) ) comment_footer_die( __('You are not allowed to edit comments on this post.') );