Use 'Comments' and 'Links' as page title instead of Edit %s. fixes #11274.

git-svn-id: https://develop.svn.wordpress.org/trunk@14652 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-15 05:07:31 +00:00
parent 7d118a4628
commit 4d594cc798
2 changed files with 3 additions and 3 deletions

View File

@ -101,9 +101,9 @@ if ( isset($_REQUEST['doaction']) || isset($_REQUEST['doaction2']) || isset($_R
}
if ( $post_id )
$title = sprintf(__('Edit Comments on “%s”'), wp_html_excerpt(_draft_or_post_title($post_id), 50));
$title = sprintf(__('Comments on “%s”'), wp_html_excerpt(_draft_or_post_title($post_id), 50));
else
$title = __('Edit Comments');
$title = __('Comments');
require_once('./admin-header.php');

View File

@ -41,7 +41,7 @@ if ( empty($cat_id) )
if ( empty($order_by) )
$order_by = 'order_name';
$title = __('Edit Links');
$title = __('Links');
$this_file = $parent_file = 'link-manager.php';
include_once ('./admin-header.php');