Index: wp-admin/edit-comments.php
===================================================================
--- wp-admin/edit-comments.php	(revision 6942)
+++ wp-admin/edit-comments.php	(working copy)
@@ -158,8 +158,8 @@
 		} // end foreach
 	?></tbody>
 </table>
-<p class="submit"><input type="submit" name="delete_button" class="delete" value="<?php _e('Delete Checked Comments &raquo;') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to delete")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to delete %s comments permanently \n  'Cancel' to stop, 'OK' to delete.")), "' + numchecked + '"); ?>')" />
-			<input type="submit" name="spam_button" value="<?php _e('Mark Checked Comments as Spam &raquo;') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to mark as spam")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to mark %s comments as spam \n  'Cancel' to stop, 'OK' to mark as spam.")), "' + numchecked + '"); ?>')" /></p>
+<p class="submit"><input type="submit" name="delete_button" class="delete" value="<?php _e('Delete Checked Comments') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to delete")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to delete %s comments permanently \n  'Cancel' to stop, 'OK' to delete.")), "' + numchecked + '"); ?>')" />
+			<input type="submit" name="spam_button" value="<?php _e('Mark Checked Comments as Spam') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to mark as spam")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to mark %s comments as spam \n  'Cancel' to stop, 'OK' to mark as spam.")), "' + numchecked + '"); ?>')" /></p>
   </form>
 <div id="ajax-response"></div>
 <?php
Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 6942)
+++ wp-admin/includes/template.php	(working copy)
@@ -756,7 +756,7 @@
 
 <tr class="submit"><td colspan="3">
 	<?php wp_nonce_field( 'change_meta', '_ajax_nonce', false ); ?>
-	<input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field &raquo;' ) ?>" />
+	<input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field' ) ?>" />
 </td></tr>
 </table>
 <?php
@@ -945,7 +945,7 @@
 <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
 </p>
 <p class="submit">
-<input type="submit" value="<?php _e( 'Upload file and import &raquo;' ); ?>" />
+<input type="submit" value="<?php _e( 'Upload file and import' ); ?>" />
 </p>
 </form>
 <?php
Index: wp-admin/includes/media.php
===================================================================
--- wp-admin/includes/media.php	(revision 6942)
+++ wp-admin/includes/media.php	(working copy)
@@ -666,7 +666,7 @@
 	$description_label = __('Description');
 	$tags_label = __('Tags');
 
-	$toggle_on = __('Describe &raquo;');
+	$toggle_on = __('Describe');
 	$toggle_off = __('Describe &laquo;');
 
 	$post = get_post($attachment_id);
Index: wp-admin/includes/upload.php
===================================================================
--- wp-admin/includes/upload.php	(revision 6942)
+++ wp-admin/includes/upload.php	(working copy)
@@ -222,7 +222,7 @@
 <?php	endif; ?>
 					<?php wp_nonce_field( 'inlineuploading' ); ?>
 					<div class="submit">
-						<input type="submit" value="<?php $id ? _e('Save &raquo;') : _e('Upload &raquo;'); ?>" />
+						<input type="submit" value="<?php $id ? _e('Save') : _e('Upload'); ?>" />
 					</div>
 				</td>
 			</tr>
Index: wp-admin/update.php
===================================================================
--- wp-admin/update.php	(revision 6942)
+++ wp-admin/update.php	(working copy)
@@ -59,7 +59,7 @@
 </tr>
 </table>
 <p class="submit">
-<input type="submit" name="submit" value="<?php _e('Proceed &raquo;'); ?>" />
+<input type="submit" name="submit" value="<?php _e('Proceed'); ?>" />
 </p>
 </div>
 </form>
Index: wp-admin/custom-header.php
===================================================================
--- wp-admin/custom-header.php	(revision 6942)
+++ wp-admin/custom-header.php	(working copy)
@@ -169,7 +169,7 @@
 <input type="button" value="<?php _e('Hide Text'); ?>" onclick="hide_text()" id="hidetext" />
 <input type="button" value="<?php _e('Select a Text Color'); ?>" onclick="colorSelect($('textcolor'), 'pickcolor')" id="pickcolor" /><input type="button" value="<?php _e('Use Original Color'); ?>" onclick="colorDefault()" id="defaultcolor" />
 <?php wp_nonce_field('custom-header') ?>
-<input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes &raquo;'); ?>" /></form>
+<input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes'); ?>" /></form>
 <?php } ?>
 
 <div id="colorPickerDiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;"> </div>
@@ -183,7 +183,7 @@
 <input type="hidden" name="action" value="save" />
 <?php wp_nonce_field('custom-header') ?>
 <p class="submit">
-<input type="submit" value="<?php _e('Upload &raquo;'); ?>" />
+<input type="submit" value="<?php _e('Upload'); ?>" />
 </p>
 </form>
 
@@ -262,7 +262,7 @@
 <input type="hidden" name="attachment_id" id="attachment_id" value="<?php echo $id; ?>" />
 <input type="hidden" name="oitar" id="oitar" value="<?php echo $oitar; ?>" />
 <?php wp_nonce_field('custom-header') ?>
-<input type="submit" value="<?php _e('Crop Header &raquo;'); ?>" />
+<input type="submit" value="<?php _e('Crop Header'); ?>" />
 </p>
 
 </form>
Index: wp-admin/moderation.php
===================================================================
--- wp-admin/moderation.php	(revision 6942)
+++ wp-admin/moderation.php	(working copy)
@@ -219,7 +219,7 @@
 		</noscript>
 
 		<p class="submit">
-			<input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments &raquo;' ); ?>" />
+			<input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments' ); ?>" />
 		</p>
 
 		<script type="text/javascript">
Index: wp-admin/comment.php
===================================================================
--- wp-admin/comment.php	(revision 6942)
+++ wp-admin/comment.php	(working copy)
@@ -60,13 +60,13 @@
 <?php
 if ( 'spam' == $_GET['dt'] ) {
 	$caution_msg = __('You are about to mark the following comment as spam:');
-	$button = __('Spam Comment &raquo;');
+	$button = __('Spam Comment');
 } elseif ( 'cdc' == $action ) {
 	$caution_msg = __('You are about to delete the following comment:');
-	$button = __('Delete Comment &raquo;');
+	$button = __('Delete Comment');
 } else {
 	$caution_msg = __('You are about to approve the following comment:');
-	$button = __('Approve Comment &raquo;');
+	$button = __('Approve Comment');
 }
 ?>
 
Index: wp-admin/edit-link-form.php
===================================================================
--- wp-admin/edit-link-form.php	(revision 6942)
+++ wp-admin/edit-link-form.php	(working copy)
@@ -1,12 +1,12 @@
 <?php
 if ( ! empty($link_id) ) {
 	$heading = __('Edit Link');
-	$submit_text = __('Save Changes &raquo;');
+	$submit_text = __('Save Changes');
 	$form = '<form name="editlink" id="editlink" method="post" action="link.php">';
 	$nonce_action = 'update-bookmark_' . $link_id;
 } else {
 	$heading = __('Add Link');
-	$submit_text = __('Add Link &raquo;');
+	$submit_text = __('Add Link');
 	$form = '<form name="addlink" id="addlink" method="post" action="link.php">';
 	$nonce_action = 'add-bookmark';
 }
Index: wp-admin/import/wp-cat2tag.php
===================================================================
--- wp-admin/import/wp-cat2tag.php	(revision 6942)
+++ wp-admin/import/wp-cat2tag.php	(working copy)
@@ -90,7 +90,7 @@
 
 		echo '</ul>';
 
-		echo '<p class="submit"><input type="submit" name="submit" value="' . __('Convert Tags &raquo;') . '" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="' . __('Convert Tags') . '" /></p>';
 
 		echo '</form>';
 	}
Index: wp-admin/import/btt.php
===================================================================
--- wp-admin/import/btt.php	(revision 6942)
+++ wp-admin/import/btt.php	(working copy)
@@ -20,7 +20,7 @@
 		echo '<p><strong>'.__('Don&#8217;t be stupid - backup your database before proceeding!').'</strong></p>';
 		echo '<form action="admin.php?import=btt&amp;step=1" method="post">';
 		wp_nonce_field('import-btt');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Tags &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Tags').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -90,7 +90,7 @@
 
 		echo '<form action="admin.php?import=btt&amp;step='.($precheck? 2:3).'" method="post">';
 		wp_nonce_field('import-btt');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
Index: wp-admin/import/jkw.php
===================================================================
--- wp-admin/import/jkw.php	(revision 6942)
+++ wp-admin/import/jkw.php	(working copy)
@@ -20,11 +20,11 @@
 		echo '<p><strong>'.__('Don&#8217;t be stupid - backup your database before proceeding!').'</strong></p>';
 		echo '<form action="admin.php?import=jkw&amp;step=1" method="post">';
 		wp_nonce_field('import-jkw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 1.x &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 1.x').'" /></p>';
 		echo '</form>';
 		echo '<form action="admin.php?import=jkw&amp;step=3" method="post">';
 		wp_nonce_field('import-jkw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 2.0a &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 2.0a').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -106,7 +106,7 @@
 
 		echo '<form action="admin.php?import=jkw&amp;step='.($precheck? 2:6).'" method="post">';
 		wp_nonce_field('import-jkw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -139,7 +139,7 @@
 		}
 		echo '<form action="admin.php?import=jkw&amp;step='.($precheck? 4:5).'" method="post">';
 		wp_nonce_field('import-jkw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
Index: wp-admin/import/dotclear.php
===================================================================
--- wp-admin/import/dotclear.php	(revision 6942)
+++ wp-admin/import/dotclear.php	(working copy)
@@ -128,7 +128,7 @@
 		echo '<form action="admin.php?import=dotclear&amp;step=1" method="post">';
 		wp_nonce_field('import-dotclear');
 		$this->db_form();
-		echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories &raquo;')).'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories')).'" /></p>';
 		echo '</form></div>';
 	}
 
Index: wp-admin/import/utw.php
===================================================================
--- wp-admin/import/utw.php	(revision 6942)
+++ wp-admin/import/utw.php	(working copy)
@@ -19,7 +19,7 @@
 		echo '<p>'.__('To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!').'</p>';
 		echo '<p><strong>'.__('Don&#8217;t be stupid - backup your database before proceeding!').'</strong></p>';
 		echo '<form action="admin.php?import=utw&amp;step=1" method="post">';
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -106,7 +106,7 @@
 
 		echo '<form action="admin.php?import=utw&amp;step=2" method="post">';
 		wp_nonce_field('import-utw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -142,7 +142,7 @@
 
 		echo '<form action="admin.php?import=utw&amp;step=3" method="post">';
 		wp_nonce_field('import-utw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 
@@ -161,7 +161,7 @@
 
 		echo '<form action="admin.php?import=utw&amp;step=4" method="post">';
 		wp_nonce_field('import-utw');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 4 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 4').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 
Index: wp-admin/import/mt.php
===================================================================
--- wp-admin/import/mt.php	(revision 6942)
+++ wp-admin/import/mt.php	(working copy)
@@ -30,7 +30,7 @@
 	<input type="hidden" name="upload_type" value="ftp" />
 <?php _e('Or use <code>mt-export.txt</code> in your <code>/wp-content/</code> directory'); ?></p>
 <p class="submit">
-<input type="submit" value="<?php echo attribute_escape(__('Import mt-export.txt &raquo;')); ?>" />
+<input type="submit" value="<?php echo attribute_escape(__('Import mt-export.txt')); ?>" />
 </p>
 </form>
 <p><?php _e('The importer is smart enough not to import duplicates, so you can run this multiple times without worry if&#8212;for whatever reason&#8212;it doesn\'t finish. If you get an <strong>out of memory</strong> error try splitting up the import file into pieces.'); ?> </p>
Index: wp-admin/import/blogger.php
===================================================================
--- wp-admin/import/blogger.php	(revision 6942)
+++ wp-admin/import/blogger.php	(working copy)
@@ -613,7 +613,7 @@
 		$blogtitle = "{$blog['title']} ({$blog['host']})";
 		$mapthis = __('Blogger username');
 		$tothis = __('WordPress login');
-		$submit = js_escape( __('Save Changes &raquo;') );
+		$submit = js_escape( __('Save Changes') );
 
 		foreach ( $blog['authors'] as $i => $author )
 			$rows .= "<tr><td><label for='authors[$i]'>{$author[0]}</label></td><td><select name='authors[$i]' id='authors[$i]'>" . $this->get_user_options($author[1]) . "</select></td></tr>";
Index: wp-admin/import/textpattern.php
===================================================================
--- wp-admin/import/textpattern.php	(revision 6942)
+++ wp-admin/import/textpattern.php	(working copy)
@@ -46,7 +46,7 @@
 		echo '<form action="admin.php?import=textpattern&amp;step=1" method="post">';
 		wp_nonce_field('import-textpattern');
 		$this->db_form();
-		echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories &raquo;')).'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories')).'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
Index: wp-admin/import/stp.php
===================================================================
--- wp-admin/import/stp.php	(revision 6942)
+++ wp-admin/import/stp.php	(working copy)
@@ -18,7 +18,7 @@
 		echo '<p><strong>'.__('Don&#8217;t be stupid - backup your database before proceeding!').'</strong></p>';
 		echo '<form action="admin.php?import=stp&amp;step=1" method="post">';
 		wp_nonce_field('import-stp');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -78,7 +78,7 @@
 
 		echo '<form action="admin.php?import=stp&amp;step=2" method="post">';
 		wp_nonce_field('import-stp');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
@@ -94,7 +94,7 @@
 		echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> tags where added!', 'Done! <strong>%s</strong> tags where added!', $tags_added), $tags_added ) . '<br /></p>';
 		echo '<form action="admin.php?import=stp&amp;step=3" method="post">';
 		wp_nonce_field('import-stp');
-		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3 &raquo;').'" /></p>';
+		echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>';
 		echo '</form>';
 		echo '</div>';
 	}
Index: wp-admin/edit-form.php
===================================================================
--- wp-admin/edit-form.php	(revision 6942)
+++ wp-admin/edit-form.php	(working copy)
@@ -62,7 +62,7 @@
 <?php endif; ?>
 
 <?php if ('bookmarklet' != $mode) {
-		echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' .  __('Advanced Editing &raquo;') . '" />';
+		echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' .  __('Advanced Editing') . '" />';
 	} ?>
 	<input name="referredby" type="hidden" id="referredby" value="<?php if ( $refby = wp_get_referer() ) echo urlencode($refby); ?>" />
 </p>
Index: wp-admin/edit-form-comment.php
===================================================================
--- wp-admin/edit-form-comment.php	(revision 6942)
+++ wp-admin/edit-form-comment.php	(working copy)
@@ -1,5 +1,5 @@
 <?php
-$submitbutton_text = __('Edit Comment &raquo;');
+$submitbutton_text = __('Edit Comment');
 $toprow_title = sprintf(__('Editing Comment # %s'), $comment->comment_ID);
 $form_action = 'editedcomment';
 $form_extra = "' />\n<input type='hidden' name='comment_ID' value='" . $comment->comment_ID . "' />\n<input type='hidden' name='comment_post_ID' value='" . $comment->comment_post_ID;
Index: wp-admin/edit-link-category-form.php
===================================================================
--- wp-admin/edit-link-category-form.php	(revision 6942)
+++ wp-admin/edit-link-category-form.php	(working copy)
@@ -1,14 +1,14 @@
 <?php
 if ( ! empty($cat_ID) ) {
 	$heading = __('Edit Category');
-	$submit_text = __('Edit Category &raquo;');
+	$submit_text = __('Edit Category');
 	$form = '<form name="editcat" id="editcat" method="post" action="link-category.php">';
 	$action = 'editedcat';
 	$nonce_action = 'update-link-category_' . $cat_ID;
 	do_action('edit_link_category_form_pre', $category);
 } else {
 	$heading = __('Add Category');
-	$submit_text = __('Add Category &raquo;');
+	$submit_text = __('Add Category');
 	$form = '<form name="addcat" id="addcat" class="add:the-list:" method="post" action="link-category.php">';
 	$action = 'addcat';
 	$nonce_action = 'add-link-category';
Index: wp-admin/edit-tag-form.php
===================================================================
--- wp-admin/edit-tag-form.php	(revision 6942)
+++ wp-admin/edit-tag-form.php	(working copy)
@@ -1,14 +1,14 @@
 <?php
 if ( ! empty($tag_ID) ) {
 	$heading = __('Edit Tag');
-	$submit_text = __('Edit Tag &raquo;');
+	$submit_text = __('Edit Tag');
 	$form = '<form name="edittag" id="edittag" method="post" action="edit-tags.php">';
 	$action = 'editedtag';
 	$nonce_action = 'update-tag_' . $tag_ID;
 	do_action('edit_tag_form_pre', $tag);
 } else {
 	$heading = __('Add Tag');
-	$submit_text = __('Add Tag &raquo;');
+	$submit_text = __('Add Tag');
 	$form = '<form name="addtag" id="addtag" method="post" action="edit-tags.php" class="add:the-list:">';
 	$action = 'addtag';
 	$nonce_action = 'add-tag';
Index: wp-admin/link-import.php
===================================================================
--- wp-admin/link-import.php	(revision 6942)
+++ wp-admin/link-import.php	(working copy)
@@ -53,7 +53,7 @@
 ?>
 </select></p>
 
-<p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File &raquo;') ?>" /></p>
+<p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File') ?>" /></p>
 </form>
 
 </div>
Index: wp-admin/upgrade.php
===================================================================
--- wp-admin/upgrade.php	(revision 6942)
+++ wp-admin/upgrade.php	(working copy)
@@ -27,7 +27,7 @@
 
 <h2><?php _e('No Upgrade Required'); ?></h2>
 <p><?php _e('Your WordPress database is already up-to-date!'); ?></p>
-<h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue &raquo;'); ?></a></h2>
+<h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></h2>
 
 <?php else :
 switch($step) :
@@ -37,7 +37,7 @@
 <h2><?php _e('Database Upgrade Required'); ?></h2>
 <p><?php _e('Your WordPress database is out-of-date, and must be upgraded before you can continue.'); ?></p>
 <p><?php _e('The upgrade process may take a while, so please be patient.'); ?></p>
-<h2 class="step"><a href="upgrade.php?step=1&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress &raquo;'); ?></a></h2>
+<h2 class="step"><a href="upgrade.php?step=1&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></h2>
 <?php
 		break;
 	case 1:
@@ -50,7 +50,7 @@
 ?>
 <h2><?php _e('Upgrade Complete'); ?></h2>
 	<p><?php _e('Your WordPress database has been successfully upgraded!'); ?></p>
-	<h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue &raquo;'); ?></a></h2>
+	<h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></h2>
 
 <!--
 <pre>
Index: wp-admin/edit-category-form.php
===================================================================
--- wp-admin/edit-category-form.php	(revision 6942)
+++ wp-admin/edit-category-form.php	(working copy)
@@ -1,14 +1,14 @@
 <?php
 if ( ! empty($cat_ID) ) {
 	$heading = __('Edit Category');
-	$submit_text = __('Edit Category &raquo;');
+	$submit_text = __('Edit Category');
 	$form = '<form name="editcat" id="editcat" method="post" action="categories.php">';
 	$action = 'editedcat';
 	$nonce_action = 'update-category_' . $cat_ID;
 	do_action('edit_category_form_pre', $category);
 } else {
 	$heading = __('Add Category');
-	$submit_text = __('Add Category &raquo;');
+	$submit_text = __('Add Category');
 	$form = '<form name="addcat" id="addcat" method="post" action="categories.php" class="add:the-list:">';
 	$action = 'addcat';
 	$nonce_action = 'add-category';
Index: wp-admin/user-edit.php
===================================================================
--- wp-admin/user-edit.php	(revision 6942)
+++ wp-admin/user-edit.php	(working copy)
@@ -156,7 +156,7 @@
 	}
 ?>
 
-<p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile &raquo;') : _e('Update User &raquo;'); ?>" name="submit" /></p>
+<p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile') : _e('Update User'); ?>" name="submit" /></p>
 
 <fieldset>
 <legend><?php _e('Name'); ?></legend>
@@ -300,7 +300,7 @@
 <p class="submit">
 	<input type="hidden" name="action" value="update" />
 	<input type="hidden" name="user_id" id="user_id" value="<?php echo $user_id; ?>" />
-	<input type="submit" value="<?php $is_profile_page? _e('Update Profile &raquo;') : _e('Update User &raquo;') ?>" name="submit" />
+	<input type="submit" value="<?php $is_profile_page? _e('Update Profile') : _e('Update User') ?>" name="submit" />
  </p>
 </form>
 </div>
Index: wp-admin/page-new.php
===================================================================
--- wp-admin/page-new.php	(revision 6942)
+++ wp-admin/page-new.php	(working copy)
@@ -14,7 +14,7 @@
 ?>
 
 <?php if ( (isset($_GET['posted']) && $_GET['posted'])  || isset($_GET['saved'])  ) : ?>
-<div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page &raquo;') ; ?></a></p></div>
+<div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page') ; ?></a></p></div>
 <?php endif; ?>
 
 <?php
Index: wp-admin/install.php
===================================================================
--- wp-admin/install.php	(revision 6942)
+++ wp-admin/install.php	(working copy)
@@ -39,7 +39,7 @@
 ?>
 <h1><?php _e('Welcome'); ?></h1>
 <p><?php printf(__('Welcome to the famous five minute WordPress installation process! You may want to browse the <a href="%s">ReadMe documentation</a> at your leisure.  Otherwise, just fill in the information below and you\'ll be on your way to using the most extendable and powerful personal publishing platform in the world.'), '../readme.html'); ?></p>
-<!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step &raquo;'); ?></a></h2>-->
+<!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step'); ?></a></h2>-->
 
 <h1><?php _e('Information needed'); ?></h1>
 <p><?php _e("Please provide the following information.  Don't worry, you can always change these settings later."); ?></p>
@@ -60,7 +60,7 @@
 		</tr>
 	</table>
 	<p><em><?php _e('Double-check your email address before continuing.'); ?></em></p>
-	<h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress &raquo;'); ?>" /></h2>
+	<h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" /></h2>
 </form>
 
 <?php
Index: wp-admin/export.php
===================================================================
--- wp-admin/export.php	(revision 6942)
+++ wp-admin/export.php	(working copy)
@@ -38,7 +38,7 @@
 </td>
 </tr>
 </table>
-<p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?> &raquo;" />
+<p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?>" />
 <input type="hidden" name="download" value="true" />
 </p>
 </form>
Index: wp-admin/plugin-editor.php
===================================================================
--- wp-admin/plugin-editor.php	(revision 6942)
+++ wp-admin/plugin-editor.php	(working copy)
@@ -135,7 +135,7 @@
 	<p class="submit">
 	<?php
 		if ( isset($_GET['phperror']) )
-			echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' value='" . __('Update File and Attempt to Reactivate &raquo;') . "' tabindex='2' />";
+			echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' value='" . __('Update File and Attempt to Reactivate') . "' tabindex='2' />";
 		else
 			echo "<input type='submit' name='submit' value='" . __('Update File') . "' tabindex='2' />";
 	?>
Index: wp-admin/themes.php
===================================================================
--- wp-admin/themes.php	(revision 6942)
+++ wp-admin/themes.php	(working copy)
@@ -19,7 +19,7 @@
 <?php if ( ! validate_current_theme() ) : ?>
 <div id="message1" class="updated fade"><p><?php _e('The active theme is broken.  Reverting to the default theme.'); ?></p></div>
 <?php elseif ( isset($_GET['activated']) ) : ?>
-<div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site &raquo;</a>'), get_bloginfo('url') . '/'); ?></p></div>
+<div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site</a>'), get_bloginfo('url') . '/'); ?></p></div>
 <?php endif; ?>
 
 <?php
