From 3e9d7f8975c88d6707e9ffb852662e9f29c88eda Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 29 Mar 2010 10:23:25 +0000 Subject: [PATCH] Display "Edit $taxonomy" on edit-tags.php Edit screen. Props jfarthing84. See #12746 git-svn-id: https://develop.svn.wordpress.org/trunk@13876 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php index 5efc1550af..63030a68fe 100644 --- a/wp-admin/edit-tags.php +++ b/wp-admin/edit-tags.php @@ -116,7 +116,7 @@ case 'bulk-delete': break; case 'edit': - $title = __('Edit Tag'); + $title = sprintf(_x('Edit %s', '%s: singular taxonomy name'), $tax->singular_label); require_once ('admin-header.php'); $tag_ID = (int) $_GET['tag_ID'];