Changeset 9835
- Timestamp:
- 11/21/2008 06:16:44 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r9807 r9835 124 124 <?php } ?> 125 125 <tr> 126 <th scope="row" valign="top"><?php _e('Comment'); ?></th>126 <th scope="row" valign="top"><?php echo _c('Comment|noun'); ?></th> 127 127 <td><?php echo $comment->comment_content; ?></td> 128 128 </tr> -
trunk/wp-admin/edit-form-advanced.php
r9806 r9835 426 426 <thead> 427 427 <tr> 428 <th scope="col" class="column-comment"><?php _e('Comment') ?></th>428 <th scope="col" class="column-comment"><?php echo _c('Comment|noun') ?></th> 429 429 <th scope="col" class="column-author"><?php _e('Author') ?></th> 430 430 <th scope="col" class="column-date"><?php _e('Submitted') ?></th> -
trunk/wp-admin/edit-form-comment.php
r9656 r9835 48 48 49 49 <div class="misc-pub-section" id="comment-status-radio"> 50 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _e('Approved') ?></label><br />51 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _e('Pending') ?></label><br />52 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php echo _c('Spam| verb'); ?></label>50 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php echo _c('Approved|adjective') ?></label><br /> 51 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php echo _c('Pending|adjective') ?></label><br /> 52 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php echo _c('Spam|adjective'); ?></label> 53 53 </div> 54 54 -
trunk/wp-admin/edit-pages.php
r9779 r9835 282 282 <thead> 283 283 <tr> 284 <th scope="col" class="column-comment"><?php _e('Comment') ?></th>284 <th scope="col" class="column-comment"><?php echo _c('Comment|noun') ?></th> 285 285 <th scope="col" class="column-author"><?php _e('Author') ?></th> 286 286 <th scope="col" class="column-date"><?php _e('Submitted') ?></th> -
trunk/wp-admin/includes/template.php
r9807 r9835 678 678 $posts_columns = array(); 679 679 $posts_columns['cb'] = '<input type="checkbox" />'; 680 $posts_columns['title'] = _ _('Post');680 $posts_columns['title'] = _c('Post|noun'); 681 681 $posts_columns['author'] = __('Author'); 682 682 $posts_columns['categories'] = __('Categories'); … … 765 765 $_wp_column_headers[$page] = array( 766 766 'cb' => '<input type="checkbox" />', 767 'comment' => _ _('Comment'),767 'comment' => _c('Comment|noun'), 768 768 'author' => __('Author'), 769 769 'date' => __('Submitted'), … … 1994 1994 } 1995 1995 if ( 'spam' != $the_comment_status ) 1996 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . _ _( 'Spam' ) . '</a>';1996 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . _c( 'Spam|verb' ) . '</a>'; 1997 1997 $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>'; 1998 1998 $actions['edit'] = "<a href='comment.php?action=editcomment&c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>'; -
trunk/wp-content/themes/classic/comments-popup.php
r9336 r9835 50 50 <li id="comment-<?php comment_ID() ?>"> 51 51 <?php comment_text() ?> 52 <p><cite><?php comment_type(_ _('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p>52 <p><cite><?php comment_type(_c('Comment|noun'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p> 53 53 </li> 54 54 -
trunk/wp-content/themes/classic/comments.php
r9025 r9835 22 22 <?php echo get_avatar( $comment, 32 ); ?> 23 23 <?php comment_text() ?> 24 <p><cite><?php comment_type(_ _('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>24 <p><cite><?php comment_type(_c('Comment|noun'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p> 25 25 </li> 26 26
Note: See TracChangeset
for help on using the changeset viewer.