Make WordPress Core

Ticket #4769: comment.diff

File comment.diff, 1.1 KB (added by tmountjr, 18 years ago)

fixes punctuation

  • wp-admin/comment.php

     
    4949
    5050<div class="narrow">
    5151<?php if ( 'spam' == $_GET['dt'] ) { ?>
    52 <p><?php echo '<strong>'.__('Caution:').'</strong> '.__('You are about to mark the following comment as spam:'); ?></p>
     52<p><?php echo '<strong>'.__('Caution:').'</strong> '.__('You are about to mark the following comment as spam.'); ?></p>
    5353<?php } elseif ( 'cdc' == $action ) { ?>
    54 <p><?php echo '<strong>'.__('Caution:').'</strong> '.__('You are about to delete the following comment:'); ?></p>
     54<p><?php echo '<strong>'.__('Caution:').'</strong> '.__('You are about to delete the following comment.'); ?></p>
    5555<?php } else { ?>
    56 <p><?php echo '<strong>'.__('Caution:').'</strong> '.__('You are about to approve the following comment:'); ?></p>
     56<p><?php echo '<strong>'.__('Caution:').'</strong> '.__('You are about to approve the following comment.'); ?></p>
    5757<?php } ?>
    5858
    5959<p><?php _e('Are you sure you want to do that?'); ?></p>