Make WordPress Core


Ignore:
Timestamp:
03/02/2009 07:20:19 PM (16 years ago)
Author:
ryan
Message:

Use _x() and extracted comments. Props nbachiyski. see #9112

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-comment.php

    r10150 r10680  
    4949
    5050<div class="misc-pub-section" id="comment-status-radio">
    51 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php echo _c('Approved|adjective') ?></label><br />
    52 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php echo _c('Pending|adjective') ?></label><br />
    53 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php echo _c('Spam|adjective'); ?></label>
     51<label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php /* translators: comment type radio button */ echo _x('Approved', 'adjective') ?></label><br />
     52<label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php /* translators: comment type radio button */ echo _x('Pending', 'adjective') ?></label><br />
     53<label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php /* translators: comment type radio button */ echo _x('Spam', 'adjective'); ?></label>
    5454</div>
    5555
    5656<div class="misc-pub-section curtime misc-pub-section-last">
    5757<?php
    58 $datef = _c( 'M j, Y @ G:i|Publish box date format');
     58// translators: Publish box date formt, see http://php.net/date
     59$datef = __( 'M j, Y @ G:i' );
    5960$stamp = __('Submitted on: <b>%1$s</b>');
    6061$date = date_i18n( $datef, strtotime( $comment->comment_date ) );
Note: See TracChangeset for help on using the changeset viewer.