diff -r be944660c56a -r 3d72ae0968f4 wp/wp-admin/comment.php --- a/wp/wp-admin/comment.php Wed Sep 21 18:19:35 2022 +0200 +++ b/wp/wp-admin/comment.php Tue Sep 27 16:37:53 2022 +0200 @@ -43,7 +43,7 @@ // Prevent actions on a comment associated with a trashed post. if ( $comment && 'trash' === get_post_status( $comment->comment_post_ID ) ) { wp_die( - __( 'You can’t edit this comment because the associated post is in the Trash. Please restore the post first, then try again.' ) + __( 'You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.' ) ); } } else { @@ -53,6 +53,7 @@ switch ( $action ) { case 'editcomment': + // Used in the HTML title tag. $title = __( 'Edit Comment' ); get_current_screen()->add_help_tab( @@ -96,6 +97,7 @@ case 'approve': case 'trash': case 'spam': + // Used in the HTML title tag. $title = __( 'Moderate Comment' ); if ( ! $comment ) {