From ce8693de30e8da06a8a4982e321f0a33fbeee979 Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 26 Feb 2007 14:03:58 +0000 Subject: WP Merge to rev 4950 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@900 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-admin/edit.php | 10 +++++----- wp-admin/users.php | 4 ++-- wp-admin/wp-admin.css | 5 +++++ 3 files changed, 12 insertions(+), 7 deletions(-) (limited to 'wp-admin') diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 1f87056..6b47fe4 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -283,13 +283,13 @@ foreach ($comments as $comment) { comment_post_ID) ) { echo " " . __('Edit') . ''; - echo ' | comment_author)) . "', theCommentList );\">" . __('Delete') . ' '; + echo ' | comment_author)) . "', theCommentList );\">" . __('Delete') . ' '; if ( ('none' != $comment_status) && ( current_user_can('moderate_comments') ) ) { - echo ' | ' . __('Unapprove') . ' '; - echo ' | ' . __('Approve') . ' '; + echo ' | ' . __('Unapprove') . ' '; + echo ' | ' . __('Approve') . ' '; } - echo " | comment_post_ID."&c=".$comment->comment_ID, 'delete-comment_' . $comment->comment_ID) . "\" onclick=\"return deleteSomething( 'comment-as-spam', $comment->comment_ID, '" . sprintf(__("You are about to mark as spam this comment by '%s'.\n'Cancel' to stop, 'OK' to mark as spam."), js_escape( $comment->comment_author)) . "', theCommentList );\">" . __('Spam') . " ]"; -} // end if any comments to show + echo " | comment_post_ID . "&c=" . $comment->comment_ID, 'delete-comment_' . $comment->comment_ID) . "\" onclick=\"return deleteSomething( 'comment-as-spam', $comment->comment_ID, '" . js_escape(sprintf(__("You are about to mark as spam this comment by '%s'.\n'Cancel' to stop, 'OK' to mark as spam."), $comment->comment_author)) . "', theCommentList );\">" . __('Spam') . " "; +} ?>

diff --git a/wp-admin/users.php b/wp-admin/users.php index 9ebe224..9febd1a 100644 --- a/wp-admin/users.php +++ b/wp-admin/users.php @@ -85,8 +85,8 @@ class WP_User_Search { $this->paging_text = paginate_links( array( 'total' => ceil($this->total_users_for_query / $this->users_per_page), 'current' => $this->page, - 'prev_text' => '« Previous Page', - 'next_text' => 'Next Page »', + 'prev_text' => __('« Previous Page'), + 'next_text' => __('Next Page »'), 'base' => 'users.php?%_%', 'format' => 'userspage=%#%', 'add_args' => array( 'usersearch' => urlencode($this->search_term) ) diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index f49b366..5a784a3 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -292,6 +292,11 @@ form#upload #post_content { margin: 0; } +.commentlist li li { + border-bottom: 0px; + padding: 0; +} + .commentlist p { padding: 0; margin: 0 0 .8em; -- cgit