Skip to content

Commit

Permalink
Bundled Themes: Correct punctuation in "Your comment is awaiting mode…
Browse files Browse the repository at this point in the history
…ration" string.

Props llizard, mayankmajeji.
Fixes #49867.

git-svn-id: https://develop.svn.wordpress.org/trunk@48825 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Aug 19, 2020
1 parent 27a2494 commit c101a86
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/wp-content/themes/twentyeleven/functions.php
Expand Up @@ -749,7 +749,7 @@ function twentyeleven_comment( $comment, $args, $depth ) {
if ( $commenter['comment_author_email'] ) {
$moderation_note = __( 'Your comment is awaiting moderation.', 'twentyeleven' );
} else {
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentyeleven' );
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentyeleven' );
}
?>

Expand Down
Expand Up @@ -93,7 +93,7 @@ protected function html5_comment( $comment, $depth, $args ) {
if ( $commenter['comment_author_email'] ) {
$moderation_note = __( 'Your comment is awaiting moderation.', 'twentynineteen' );
} else {
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentynineteen' );
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentynineteen' );
}
?>

Expand Down
2 changes: 1 addition & 1 deletion src/wp-content/themes/twentyten/functions.php
Expand Up @@ -435,7 +435,7 @@ function twentyten_comment( $comment, $args, $depth ) {
if ( $commenter['comment_author_email'] ) {
$moderation_note = __( 'Your comment is awaiting moderation.', 'twentyten' );
} else {
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentyten' );
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentyten' );
}
?>

Expand Down
2 changes: 1 addition & 1 deletion src/wp-content/themes/twentytwelve/functions.php
Expand Up @@ -451,7 +451,7 @@ function twentytwelve_comment( $comment, $args, $depth ) {
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' );
}
?>

Expand Down

0 comments on commit c101a86

Please sign in to comment.