From 36af10b6b72484d7b38e666916d4d5ea0acea131 Mon Sep 17 00:00:00 2001 From: nacin Date: Sat, 15 May 2010 05:07:31 +0000 Subject: [PATCH] Use 'Comments' and 'Links' as page title instead of Edit %s. fixes #11274. git-svn-id: http://svn.automattic.com/wordpress/trunk@14652 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-comments.php | 4 ++-- wp-admin/link-manager.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index 31c31eab6..ef4e6b982 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -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'); diff --git a/wp-admin/link-manager.php b/wp-admin/link-manager.php index 53594fa6d..6be8cc4ba 100644 --- a/wp-admin/link-manager.php +++ b/wp-admin/link-manager.php @@ -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');