Changeset 9835 for trunk/wp-admin/includes/template.php
- Timestamp:
- 11/21/2008 06:16:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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>';
Note: See TracChangeset
for help on using the changeset viewer.