<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13077] trunk/wp-admin: Introduce Custom Taxonomies Translation strings,
  Correctly identifies the taxonomy in the Strings of the edit pages.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13077">13077</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-02-13 03:08:16 +0000 (Sat, 13 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Introduce Custom Taxonomies Translation strings, Correctly identifies the taxonomy in the Strings of the edit pages. See <a href="http://trac.wordpress.org/ticket/11838">#11838</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminedittagformphp">trunk/wp-admin/edit-tag-form.php</a></li>
<li><a href="#trunkwpadminedittagsphp">trunk/wp-admin/edit-tags.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminedittagformphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-tag-form.php (13076 => 13077)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-tag-form.php        2010-02-13 02:54:54 UTC (rev 13076)
+++ trunk/wp-admin/edit-tag-form.php        2010-02-13 03:08:16 UTC (rev 13077)
</span><span class="lines">@@ -10,11 +10,8 @@
</span><span class="cx"> if ( !defined('ABSPATH') )
</span><span class="cx">         die('-1');
</span><span class="cx"> 
</span><del>-if ( !current_user_can('manage_categories') )
-        wp_die(__('You do not have sufficient permissions to edit tags for this blog.'));
-
</del><span class="cx"> if ( empty($tag_ID) ) { ?&gt;
</span><del>-        &lt;div id=&quot;message&quot; class=&quot;updated&quot;&gt;&lt;p&gt;&lt;strong&gt;&lt;?php _e('A tag was not selected for editing.'); ?&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;
</del><ins>+        &lt;div id=&quot;message&quot; class=&quot;updated&quot;&gt;&lt;p&gt;&lt;strong&gt;&lt;?php _e('A item was not selected for editing.'); ?&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;
</ins><span class="cx"> &lt;?php
</span><span class="cx">         return;
</span><span class="cx"> }
</span><span class="lines">@@ -27,7 +24,7 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;div class=&quot;wrap&quot;&gt;
</span><span class="cx"> &lt;?php screen_icon(); ?&gt;
</span><del>-&lt;h2&gt;&lt;?php _e('Edit Tag'); ?&gt;&lt;/h2&gt;
</del><ins>+&lt;h2&gt;&lt;?php printf(_x('Edit %s', '%s: singular taxonomy name'), $tax-&gt;singular_label); ?&gt;&lt;/h2&gt;
</ins><span class="cx"> &lt;div id=&quot;ajax-response&quot;&gt;&lt;/div&gt;
</span><span class="cx"> &lt;form name=&quot;edittag&quot; id=&quot;edittag&quot; method=&quot;post&quot; action=&quot;edit-tags.php&quot; class=&quot;validate&quot;&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;editedtag&quot; /&gt;
</span><span class="lines">@@ -36,27 +33,30 @@
</span><span class="cx"> &lt;?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?&gt;
</span><span class="cx">         &lt;table class=&quot;form-table&quot;&gt;
</span><span class="cx">                 &lt;tr class=&quot;form-field form-required&quot;&gt;
</span><del>-                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;name&quot;&gt;&lt;?php _e('Tag name') ?&gt;&lt;/label&gt;&lt;/th&gt;
-                        &lt;td&gt;&lt;input name=&quot;name&quot; id=&quot;name&quot; type=&quot;text&quot; value=&quot;&lt;?php if ( isset( $tag-&gt;name ) ) echo esc_attr($tag-&gt;name); ?&gt;&quot; size=&quot;40&quot; aria-required=&quot;true&quot; /&gt;&lt;/td&gt;
</del><ins>+                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;name&quot;&gt;&lt;?php echo _x('Name', 'Taxonomy Name'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+                        &lt;td&gt;&lt;input name=&quot;name&quot; id=&quot;name&quot; type=&quot;text&quot; value=&quot;&lt;?php if ( isset( $tag-&gt;name ) ) echo esc_attr($tag-&gt;name); ?&gt;&quot; size=&quot;40&quot; aria-required=&quot;true&quot; /&gt;
+                        &lt;p class=&quot;description&quot;&gt;&lt;?php _e('The name is how it appears on your site.'); ?&gt;&lt;/p&gt;&lt;/td&gt;
</ins><span class="cx">                 &lt;/tr&gt;
</span><span class="cx"> &lt;?php if ( !is_multisite() ) { ?&gt;
</span><span class="cx">                 &lt;tr class=&quot;form-field&quot;&gt;
</span><del>-                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;slug&quot;&gt;&lt;?php _e('Tag slug') ?&gt;&lt;/label&gt;&lt;/th&gt;
</del><ins>+                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;slug&quot;&gt;&lt;?php echo _x('Slug', 'Taxonomy Slug'); ?&gt;&lt;/label&gt;&lt;/th&gt;
</ins><span class="cx">                         &lt;td&gt;&lt;input name=&quot;slug&quot; id=&quot;slug&quot; type=&quot;text&quot; value=&quot;&lt;?php if ( isset( $tag-&gt;slug ) ) echo esc_attr(apply_filters('editable_slug', $tag-&gt;slug)); ?&gt;&quot; size=&quot;40&quot; /&gt;
</span><span class="cx">                         &lt;p class=&quot;description&quot;&gt;&lt;?php _e('The &amp;#8220;slug&amp;#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?&gt;&lt;/p&gt;&lt;/td&gt;
</span><span class="cx">                 &lt;/tr&gt;
</span><span class="cx"> &lt;?php } ?&gt;
</span><del>-&lt;?php if ( is_taxonomy_hierarchical($taxonomy) ) { ?&gt;
</del><ins>+&lt;?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?&gt;
</ins><span class="cx">                 &lt;tr class=&quot;form-field&quot;&gt;
</span><del>-                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;parent&quot;&gt;&lt;?php _e('Category Parent') ?&gt;&lt;/label&gt;&lt;/th&gt;
</del><ins>+                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;parent&quot;&gt;&lt;?php echo _x('Parent', 'Taxonomy Parent'); ?&gt;&lt;/label&gt;&lt;/th&gt;
</ins><span class="cx">                         &lt;td&gt;
</span><span class="cx">                                 &lt;?php wp_dropdown_categories(array('hide_empty' =&gt; 0, 'hide_if_empty' =&gt; false, 'name' =&gt; 'parent', 'orderby' =&gt; 'name', 'taxonomy' =&gt; $taxonomy, 'selected' =&gt; $tag-&gt;parent, 'exclude' =&gt; $tag-&gt;term_id, 'hierarchical' =&gt; true, 'show_option_none' =&gt; __('None'))); ?&gt;&lt;br /&gt;
</span><ins>+                                &lt;?php if ( 'category' == $taxonomy ) : ?&gt;
</ins><span class="cx">                                 &lt;span class=&quot;description&quot;&gt;&lt;?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?&gt;&lt;/span&gt;
</span><ins>+                                &lt;?php endif; ?&gt;
</ins><span class="cx">                         &lt;/td&gt;
</span><span class="cx">                 &lt;/tr&gt;
</span><del>-&lt;?php } ?&gt;
</del><ins>+&lt;?php endif; // is_taxonomy_hierarchical() ?&gt;
</ins><span class="cx">                 &lt;tr class=&quot;form-field&quot;&gt;
</span><del>-                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;description&quot;&gt;&lt;?php _e('Description') ?&gt;&lt;/label&gt;&lt;/th&gt;
</del><ins>+                        &lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;description&quot;&gt;&lt;?php echo _x('Description', 'Taxonomy Description'); ?&gt;&lt;/label&gt;&lt;/th&gt;
</ins><span class="cx">                         &lt;td&gt;&lt;textarea name=&quot;description&quot; id=&quot;description&quot; rows=&quot;5&quot; cols=&quot;50&quot; style=&quot;width: 97%;&quot;&gt;&lt;?php echo esc_html($tag-&gt;description); ?&gt;&lt;/textarea&gt;&lt;br /&gt;
</span><span class="cx">                         &lt;span class=&quot;description&quot;&gt;&lt;?php _e('The description is not prominent by default, however some themes may show it.'); ?&gt;&lt;/span&gt;&lt;/td&gt;
</span><span class="cx">                 &lt;/tr&gt;
</span><span class="lines">@@ -68,7 +68,7 @@
</span><span class="cx">                 do_action($taxonomy . '_edit_form_fields', $tag, $taxonomy);
</span><span class="cx">                 ?&gt;
</span><span class="cx">         &lt;/table&gt;
</span><del>-&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; class=&quot;button-primary&quot; name=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e('Update Tag'); ?&gt;&quot; /&gt;&lt;/p&gt;
</del><ins>+&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; class=&quot;button-primary&quot; name=&quot;submit&quot; value=&quot;&lt;?php echo esc_attr( sprintf(_x('Update %s', '%s: singular taxonomy name'), $tax-&gt;singular_label)); ?&gt;&quot; /&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php
</span><span class="cx"> if ( 'category' == $taxonomy )
</span><span class="cx">         do_action('edit_category_form', $tag);
</span></span></pre></div>
<a id="trunkwpadminedittagsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-tags.php (13076 => 13077)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-tags.php        2010-02-13 02:54:54 UTC (rev 13076)
+++ trunk/wp-admin/edit-tags.php        2010-02-13 03:08:16 UTC (rev 13077)
</span><span class="lines">@@ -150,13 +150,15 @@
</span><span class="cx"> 
</span><span class="cx"> require_once ('admin-header.php');
</span><span class="cx"> 
</span><del>-$messages[1] = __('Tag added.');
-$messages[2] = __('Tag deleted.');
-$messages[3] = __('Tag updated.');
-$messages[4] = __('Tag not added.');
-$messages[5] = __('Tag not updated.');
-$messages[6] = __('Tags deleted.'); ?&gt;
</del><ins>+$messages[1] = __('Item added.');
+$messages[2] = __('Item deleted.');
+$messages[3] = __('Item updated.');
+$messages[4] = __('Item not added.');
+$messages[5] = __('Item not updated.');
+$messages[6] = __('Items deleted.');
</ins><span class="cx"> 
</span><ins>+?&gt;
+
</ins><span class="cx"> &lt;div class=&quot;wrap nosubsub&quot;&gt;
</span><span class="cx"> &lt;?php screen_icon(); ?&gt;
</span><span class="cx"> &lt;h2&gt;&lt;?php echo esc_html( $title );
</span><span class="lines">@@ -174,9 +176,9 @@
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;taxonomy&quot; value=&quot;&lt;?php echo esc_attr($taxonomy); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;post_type&quot; value=&quot;&lt;?php echo esc_attr($post_type); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;p class=&quot;search-box&quot;&gt;
</span><del>-        &lt;label class=&quot;screen-reader-text&quot; for=&quot;tag-search-input&quot;&gt;&lt;?php _e( 'Search Tags' ); ?&gt;:&lt;/label&gt;
</del><ins>+        &lt;label class=&quot;screen-reader-text&quot; for=&quot;tag-search-input&quot;&gt;&lt;?php printf(_x('Search %s', '%s: plural taxonomy name'), $tax-&gt;label); ?&gt;:&lt;/label&gt;
</ins><span class="cx">         &lt;input type=&quot;text&quot; id=&quot;tag-search-input&quot; name=&quot;s&quot; value=&quot;&lt;?php _admin_search_query(); ?&gt;&quot; /&gt;
</span><del>-        &lt;input type=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e( 'Search Tags' ); ?&gt;&quot; class=&quot;button&quot; /&gt;
</del><ins>+        &lt;input type=&quot;submit&quot; value=&quot;&lt;?php echo esc_attr( sprintf(_x('Search %s', '%s: plural taxonomy name'), $tax-&gt;label) ); ?&gt;&quot; class=&quot;button&quot; /&gt;
</ins><span class="cx"> &lt;/p&gt;
</span><span class="cx"> &lt;/form&gt;
</span><span class="cx"> &lt;br class=&quot;clear&quot; /&gt;
</span><span class="lines">@@ -234,17 +236,17 @@
</span><span class="cx"> &lt;/div&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</span><del>-
</del><ins>+&lt;?php $table_type = ('category' == $taxonomy ? 'categories' : 'edit-tags'); ?&gt;
</ins><span class="cx"> &lt;table class=&quot;widefat tag fixed&quot; cellspacing=&quot;0&quot;&gt;
</span><span class="cx">         &lt;thead&gt;
</span><span class="cx">         &lt;tr&gt;
</span><del>-&lt;?php print_column_headers('edit-tags'); ?&gt;
</del><ins>+&lt;?php print_column_headers($table_type); ?&gt;
</ins><span class="cx">         &lt;/tr&gt;
</span><span class="cx">         &lt;/thead&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;tfoot&gt;
</span><span class="cx">         &lt;tr&gt;
</span><del>-&lt;?php print_column_headers('edit-tags', false); ?&gt;
</del><ins>+&lt;?php print_column_headers($table_type, false); ?&gt;
</ins><span class="cx">         &lt;/tr&gt;
</span><span class="cx">         &lt;/tfoot&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -272,6 +274,15 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;br class=&quot;clear&quot; /&gt;
</span><span class="cx"> &lt;/form&gt;
</span><ins>+
+&lt;?php if ( 'category' == $taxonomy ) : ?&gt;
+&lt;div class=&quot;form-wrap&quot;&gt; 
+&lt;p&gt;&lt;?php printf(__('&lt;strong&gt;Note:&lt;/strong&gt;&lt;br /&gt;Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category &lt;strong&gt;%s&lt;/strong&gt;.'), apply_filters('the_category', get_cat_name(get_option('default_category')))) ?&gt;&lt;/p&gt; 
+&lt;p&gt;&lt;?php printf(__('Categories can be selectively converted to tags using the &lt;a href=&quot;%s&quot;&gt;category to tag converter&lt;/a&gt;.'), 'admin.php?import=wp-cat2tag') ?&gt;&lt;/p&gt; 
+&lt;/div&gt; 
+&lt;?php endif; ?&gt;
+
+
</ins><span class="cx"> &lt;/div&gt;
</span><span class="cx"> &lt;/div&gt;&lt;!-- /col-right --&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -279,7 +290,7 @@
</span><span class="cx"> &lt;div class=&quot;col-wrap&quot;&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;div class=&quot;tagcloud&quot;&gt;
</span><del>-&lt;h3&gt;&lt;?php _e('Popular Tags'); ?&gt;&lt;/h3&gt;
</del><ins>+&lt;h3&gt;&lt;?php printf(_x('Popular %s', '%s: plural taxonomy name'), $tax-&gt;label); ?&gt;&lt;/h3&gt;
</ins><span class="cx"> &lt;?php
</span><span class="cx"> if ( current_user_can($tax-&gt;edit_cap) )
</span><span class="cx">         wp_tag_cloud(array('taxonomy' =&gt; $taxonomy, 'link' =&gt; 'edit'));
</span><span class="lines">@@ -288,7 +299,8 @@
</span><span class="cx"> ?&gt;
</span><span class="cx"> &lt;/div&gt;
</span><span class="cx"> 
</span><del>-&lt;?php if ( current_user_can($tax-&gt;edit_cap) ) {
</del><ins>+&lt;?php
+if ( current_user_can($tax-&gt;edit_cap) ) {
</ins><span class="cx">         if ( 'category' == $taxonomy )
</span><span class="cx">                 do_action('add_category_form_pre', (object)array('parent' =&gt; 0) );  // Back compat hook. Deprecated in preference to $taxonomy_pre_add_form
</span><span class="cx">         else
</span><span class="lines">@@ -297,33 +309,35 @@
</span><span class="cx"> ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;div class=&quot;form-wrap&quot;&gt;
</span><del>-&lt;h3&gt;&lt;?php _e('Add a New Tag'); ?&gt;&lt;/h3&gt;
</del><ins>+&lt;h3&gt;&lt;?php printf(_x('Add a New %s', '%s: singular taxonomy name'), $tax-&gt;singular_label); ?&gt;&lt;/h3&gt;
</ins><span class="cx"> &lt;form id=&quot;addtag&quot; method=&quot;post&quot; action=&quot;edit-tags.php&quot; class=&quot;validate&quot;&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;add-tag&quot; /&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;taxonomy&quot; value=&quot;&lt;?php echo esc_attr($taxonomy); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;?php wp_nonce_field('add-tag'); ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;div class=&quot;form-field form-required&quot;&gt;
</span><del>-        &lt;label for=&quot;tag-name&quot;&gt;&lt;?php _e('Tag name') ?&gt;&lt;/label&gt;
</del><ins>+        &lt;label for=&quot;tag-name&quot;&gt;&lt;?php echo _x('Name', 'Taxonomy Name'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;input name=&quot;tag-name&quot; id=&quot;tag-name&quot; type=&quot;text&quot; value=&quot;&quot; size=&quot;40&quot; aria-required=&quot;true&quot; /&gt;
</span><del>-        &lt;p&gt;&lt;?php _e('The name is how the tag appears on your site.'); ?&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php _e('The name is how it appears on your site.'); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;/div&gt;
</span><del>-&lt;?php if ( !is_multisite() ) { ?&gt;
</del><ins>+&lt;?php if ( !is_multisite() ) : ?&gt;
</ins><span class="cx"> &lt;div class=&quot;form-field&quot;&gt;
</span><del>-        &lt;label for=&quot;slug&quot;&gt;&lt;?php _e('Tag slug') ?&gt;&lt;/label&gt;
</del><ins>+        &lt;label for=&quot;slug&quot;&gt;&lt;?php echo _x('Slug', 'Taxonomy Slug'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;input name=&quot;slug&quot; id=&quot;slug&quot; type=&quot;text&quot; value=&quot;&quot; size=&quot;40&quot; /&gt;
</span><span class="cx">         &lt;p&gt;&lt;?php _e('The &amp;#8220;slug&amp;#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?&gt;&lt;/p&gt;
</span><span class="cx"> &lt;/div&gt;
</span><del>-&lt;?php } ?&gt;
-&lt;?php if ( is_taxonomy_hierarchical($taxonomy) ) { ?&gt;
</del><ins>+&lt;?php endif; // is_multisite() ?&gt;
+&lt;?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?&gt;
</ins><span class="cx"> &lt;div class=&quot;form-field&quot;&gt;
</span><del>-        &lt;label for=&quot;category_parent&quot;&gt;&lt;?php _e('Category Parent') ?&gt;&lt;/label&gt;
</del><ins>+        &lt;label for=&quot;parent&quot;&gt;&lt;?php echo _x('Parent', 'Taxonomy Parent'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;?php wp_dropdown_categories(array('hide_empty' =&gt; 0, 'hide_if_empty' =&gt; false, 'taxonomy' =&gt; $taxonomy, 'name' =&gt; 'parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; true, 'show_option_none' =&gt; __('None'))); ?&gt;
</span><del>-        &lt;p&gt;&lt;?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?&gt;&lt;/p&gt;
</del><ins>+        &lt;?php if ( 'category' == $taxonomy ) : // @todo: Generic text for hierarchical taxonomies ?&gt;
+                &lt;p&gt;&lt;?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?&gt;&lt;/p&gt;
+        &lt;?php endif; ?&gt;
</ins><span class="cx"> &lt;/div&gt;
</span><del>-&lt;?php } ?&gt;
</del><ins>+&lt;?php endif; // is_taxonomy_hierarchical() ?&gt;
</ins><span class="cx"> &lt;div class=&quot;form-field&quot;&gt;
</span><del>-        &lt;label for=&quot;description&quot;&gt;&lt;?php _e('Description') ?&gt;&lt;/label&gt;
</del><ins>+        &lt;label for=&quot;description&quot;&gt;&lt;?php echo _x('Description', 'Taxonomy Description'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;textarea name=&quot;description&quot; id=&quot;description&quot; rows=&quot;5&quot; cols=&quot;40&quot;&gt;&lt;/textarea&gt;
</span><span class="cx">         &lt;p&gt;&lt;?php _e('The description is not prominent by default; however, some themes may show it.'); ?&gt;&lt;/p&gt;
</span><span class="cx"> &lt;/div&gt;
</span><span class="lines">@@ -333,8 +347,7 @@
</span><span class="cx">         do_action('add_tag_form_fields', $taxonomy);
</span><span class="cx"> do_action($taxonomy . '_add_form_fields', $taxonomy);
</span><span class="cx"> ?&gt;
</span><del>-
-&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;submit&quot; id=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e('Add Tag'); ?&gt;&quot; /&gt;&lt;/p&gt;
</del><ins>+&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;submit&quot; id=&quot;submit&quot; value=&quot;&lt;?php echo esc_attr(sprintf(_x('Add %s', '%s: singular  taxonomy name'), $tax-&gt;singular_label)); ?&gt;&quot; /&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php
</span><span class="cx"> if ( 'category' == $taxonomy )
</span><span class="cx">         do_action('edit_category_form',        (object)array('parent' =&gt; 0) );  // Back compat hook. Deprecated in preference to $taxonomy_add_form
</span><span class="lines">@@ -359,4 +372,4 @@
</span><span class="cx"> 
</span><span class="cx"> include('admin-footer.php');
</span><span class="cx"> 
</span><del>-?&gt;
</del><ins>+?&gt;
</ins><span class="cx">\ No newline at end of file
</span></span></pre>
</div>
</div>

</body>
</html>