Index: wp-admin/comment.php
===================================================================
--- wp-admin/comment.php	(revision 9626)
+++ wp-admin/comment.php	(working copy)
@@ -123,7 +123,7 @@
 </tr>
 <?php } ?>
 <tr>
-<th scope="row" valign="top"><?php _e('Comment'); ?></th>
+<th scope="row" valign="top"><?php echo _c('Comment|'); ?></th>
 <td><?php echo $comment->comment_content; ?></td>
 </tr>
 </table>
Index: wp-admin/edit-form-comment.php
===================================================================
--- wp-admin/edit-form-comment.php	(revision 9626)
+++ wp-admin/edit-form-comment.php	(working copy)
@@ -47,8 +47,8 @@
 <div id="misc-publishing-actions">
 
 <div class="misc-pub-section" id="comment-status-radio">
-<label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _e('Approved') ?></label><br />
-<label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _e('Awaiting Moderation') ?></label><br />
+<label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php echo _c('Approved|'); ?></label><br />
+<label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php echo _c('Awaiting Moderation|'); ?></label><br />
 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php echo _c('Spam|verb'); ?></label>
 </div>
 
Index: wp-admin/edit-form.php
===================================================================
--- wp-admin/edit-form.php	(revision 9626)
+++ wp-admin/edit-form.php	(working copy)
@@ -29,7 +29,7 @@
 
 <br />
 <fieldset id="postdiv">
-    <legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
+    <legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php echo _c('Post|'); ?></a></legend>
 <?php
  $rows = get_option('default_post_edit_rows');
  if (($rows < 3) || ($rows > 100)) {
Index: wp-admin/edit-pages.php
===================================================================
--- wp-admin/edit-pages.php	(revision 9626)
+++ wp-admin/edit-pages.php	(working copy)
@@ -284,7 +284,7 @@
 <table class="widefat" style="margin-top: .5em">
 <thead>
   <tr>
-    <th scope="col"><?php _e('Comment') ?></th>
+    <th scope="col"><?php echo _c('Comment|'); ?></th>
     <th scope="col"><?php _e('Date') ?></th>
     <th scope="col"><?php _e('Actions') ?></th>
   </tr>
Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 9626)
+++ wp-admin/edit.php	(working copy)
@@ -289,7 +289,7 @@
 <table class="widefat" style="margin-top: .5em">
 <thead>
   <tr>
-    <th scope="col"><?php _e('Comment') ?></th>
+    <th scope="col"><?php echo _c('Comment|'); ?></th>
     <th scope="col"><?php _e('Author') ?></th>
     <th scope="col"><?php _e('Submitted') ?></th>
   </tr>
@@ -297,7 +297,7 @@
 
 <tfoot>
   <tr>
-    <th scope="col"><?php _e('Comment') ?></th>
+    <th scope="col"><?php echo _c('Comment|'); ?></th>
     <th scope="col"><?php _e('Author') ?></th>
     <th scope="col"><?php _e('Submitted') ?></th>
   </tr>
Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 9626)
+++ wp-admin/includes/template.php	(working copy)
@@ -678,7 +678,7 @@
 function wp_manage_posts_columns() {
 	$posts_columns = array();
 	$posts_columns['cb'] = '<input type="checkbox" />';
-	$posts_columns['title'] = __('Post');
+	$posts_columns['title'] = _c('Post|');
 	$posts_columns['author'] = __('Author');
 	$posts_columns['categories'] = __('Categories');
 	$posts_columns['tags'] = __('Tags');
@@ -754,7 +754,7 @@
 		case 'comment':
 			$columns = array(
 				'cb' => '<input type="checkbox" />',
-				'comment' => __('Comment'),
+				'comment' => _c('Comment|'),
 				'author' => __('Author'),
 				'date' => __('Submitted'),
 				'response' => __('In Response To')
@@ -1948,7 +1948,7 @@
 						}
 					}
 					if ( 'spam' != $the_comment_status )
-						$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>';
+						$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>';
 					$actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>';
 					$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>';
 					$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&nbsp;Edit') . '</a>';
Index: wp-admin/press-this.php
===================================================================
--- wp-admin/press-this.php	(revision 9626)
+++ wp-admin/press-this.php	(working copy)
@@ -517,7 +517,7 @@
 	
 	</div>
 	
-				<h2 id="content_type"><label for="content"><?php _e('Post') ?></label></h2>
+				<h2 id="content_type"><label for="content"><?php echo _c('Post|'); ?></label></h2>
 			
 				<div class="editor-container">
 					<textarea name="content" id="content" style="width:100%;" class="mceEditor" rows="15">
Index: wp-admin/upload.php
===================================================================
--- wp-admin/upload.php	(revision 9626)
+++ wp-admin/upload.php	(working copy)
@@ -425,7 +425,7 @@
 <table class="widefat" style="margin-top: .5em">
 <thead>
 	<tr>
-		<th scope="col"><?php _e('Comment') ?></th>
+		<th scope="col"><?php echo _c('Comment|'); ?></th>
 		<th scope="col"><?php _e('Date') ?></th>
 		<th scope="col"><?php _e('Actions') ?></th>
 	</tr>
Index: wp-content/themes/classic/comments-popup.php
===================================================================
--- wp-content/themes/classic/comments-popup.php	(revision 9626)
+++ wp-content/themes/classic/comments-popup.php	(working copy)
@@ -49,7 +49,7 @@
 <?php foreach ($comments as $comment) { ?>
 	<li id="comment-<?php comment_ID() ?>">
 	<?php comment_text() ?>
-	<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p>
+	<p><cite><?php comment_type(_c('Comment|'), __('Trackback'), __('Pingback')); ?> <?php _e("by"); ?> <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p>
 	</li>
 
 <?php } // end for each comment ?>
Index: wp-content/themes/classic/comments.php
===================================================================
--- wp-content/themes/classic/comments.php	(revision 9626)
+++ wp-content/themes/classic/comments.php	(working copy)
@@ -21,7 +21,7 @@
 	<li <?php comment_class(); ?> id="comment-<?php comment_ID() ?>">
 	<?php echo get_avatar( $comment, 32 ); ?>
 	<?php comment_text() ?>
-	<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
+	<p><cite><?php comment_type(_c('Comment|'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
 	</li>
 
 <?php endforeach; ?>
Index: wp-includes/comment.php
===================================================================
--- wp-includes/comment.php	(revision 9626)
+++ wp-includes/comment.php	(working copy)
@@ -252,7 +252,7 @@
 function get_comment_statuses( ) {
 	$status = array(
 		'hold'		=> __('Unapproved'),
-		'approve'	=> __('Approved'),
+		'approve'	=> _c('Approved|'),
 		'spam'		=> _c('Spam|adjective'),
 	);
 
