Make WordPress Core

Changeset 48825


Ignore:
Timestamp:
08/19/2020 02:25:46 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Bundled Themes: Correct punctuation in "Your comment is awaiting moderation" string.

Props llizard, mayankmajeji.
Fixes #49867.

Location:
trunk/src/wp-content/themes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyeleven/functions.php

    r48782 r48825  
    750750                        $moderation_note = __( 'Your comment is awaiting moderation.', 'twentyeleven' );
    751751                    } else {
    752                         $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentyeleven' );
     752                        $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentyeleven' );
    753753                    }
    754754                    ?>
  • trunk/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php

    r46827 r48825  
    9494                        $moderation_note = __( 'Your comment is awaiting moderation.', 'twentynineteen' );
    9595                    } else {
    96                         $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentynineteen' );
     96                        $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentynineteen' );
    9797                    }
    9898                    ?>
  • trunk/src/wp-content/themes/twentyten/functions.php

    r48782 r48825  
    436436                    $moderation_note = __( 'Your comment is awaiting moderation.', 'twentyten' );
    437437                } else {
    438                     $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentyten' );
     438                    $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentyten' );
    439439                }
    440440                ?>
  • trunk/src/wp-content/themes/twentytwelve/functions.php

    r48067 r48825  
    452452                    $moderation_note = __( 'Your comment is awaiting moderation.', 'twentytwelve' );
    453453                } else {
    454                     $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentytwelve' );
     454                    $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentytwelve' );
    455455                }
    456456                ?>
Note: See TracChangeset for help on using the changeset viewer.