From c18dab2e96ae4fa27cd1411d473b941693a96a45 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 19 Aug 2020 02:28:13 +0000 Subject: [PATCH] Bundled Themes: Correct punctuation in "Your comment is awaiting moderation" string. Props llizard, mayankmajeji. Fixes #49867. Built from https://develop.svn.wordpress.org/trunk@48825 git-svn-id: http://core.svn.wordpress.org/trunk@48587 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 21b1967c7..5df652952 100644 --- a/functions.php +++ b/functions.php @@ -451,7 +451,7 @@ if ( ! function_exists( 'twentytwelve_comment' ) ) : if ( $commenter['comment_author_email'] ) { $moderation_note = __( 'Your comment is awaiting moderation.', 'twentytwelve' ); } else { - $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentytwelve' ); + $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentytwelve' ); } ?>