Changeset 10680 for trunk/wp-admin/edit-form-comment.php
- Timestamp:
- 03/02/2009 07:20:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r10150 r10680 49 49 50 50 <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> 54 54 </div> 55 55 56 56 <div class="misc-pub-section curtime misc-pub-section-last"> 57 57 <?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' ); 59 60 $stamp = __('Submitted on: <b>%1$s</b>'); 60 61 $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
Note: See TracChangeset
for help on using the changeset viewer.