Remove raquo from buttons. Props filosofo. fixes #5938

git-svn-id: http://svn.automattic.com/wordpress/trunk@6943 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2008-02-20 19:30:55 +00:00
parent d12642fc81
commit ad42d0148a
31 changed files with 54 additions and 54 deletions

View File

@@ -60,13 +60,13 @@ case 'mac' :
<?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');
}
?>