<!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>[13285] trunk/wp-admin:
  Use correct labels for additional hierarchical taxonomies instead of reusing 
 &quot;Categories&quot; text.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13285">13285</a></dd>
<dt>Author</dt> <dd>markjaquith</dd>
<dt>Date</dt> <dd>2010-02-21 21:24:48 +0000 (Sun, 21 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Use correct labels for additional hierarchical taxonomies instead of reusing &quot;Categories&quot; text.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminajaxphp">trunk/wp-admin/admin-ajax.php</a></li>
<li><a href="#trunkwpadminincludesmetaboxesphp">trunk/wp-admin/includes/meta-boxes.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminadminajaxphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-ajax.php (13284 => 13285)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-ajax.php        2010-02-21 18:24:41 UTC (rev 13284)
+++ trunk/wp-admin/admin-ajax.php        2010-02-21 21:24:48 UTC (rev 13285)
</span><span class="lines">@@ -270,7 +270,7 @@
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         ob_start();
</span><del>-                wp_dropdown_categories( array( 'taxonomy' =&gt; $taxonomy-&gt;name, 'hide_empty' =&gt; 0, 'name' =&gt; 'new'.$taxonomy-&gt;name.'_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; __('Parent category') ) );
</del><ins>+                wp_dropdown_categories( array( 'taxonomy' =&gt; $taxonomy-&gt;name, 'hide_empty' =&gt; 0, 'name' =&gt; 'new'.$taxonomy-&gt;name.'_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; sprintf( __('&amp;mdash; Parent %s &amp;mdash;'), $taxonomy-&gt;singular_label ) ) );
</ins><span class="cx">         $sup = ob_get_contents();
</span><span class="cx">         ob_end_clean();
</span><span class="cx">         $add['supplemental'] = array( 'newcat_parent' =&gt; $sup );
</span></span></pre></div>
<a id="trunkwpadminincludesmetaboxesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/meta-boxes.php (13284 => 13285)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/meta-boxes.php        2010-02-21 18:24:41 UTC (rev 13284)
+++ trunk/wp-admin/includes/meta-boxes.php        2010-02-21 21:24:48 UTC (rev 13285)
</span><span class="lines">@@ -290,7 +290,7 @@
</span><span class="cx">          ?&gt;
</span><span class="cx">          &lt;div id=&quot;taxonomy-&lt;?php echo $taxonomy; ?&gt;&quot; class=&quot;categorydiv&quot;&gt;
</span><span class="cx">                  &lt;ul id=&quot;&lt;?php echo $taxonomy; ?&gt;-tabs&quot; class=&quot;category-tabs&quot;&gt;
</span><del>-                         &lt;li class=&quot;tabs&quot;&gt;&lt;a href=&quot;#&lt;?php echo $taxonomy; ?&gt;-all&quot; tabindex=&quot;3&quot;&gt;&lt;?php _e( 'All Categories' ); ?&gt;&lt;/a&gt;&lt;/li&gt;
</del><ins>+                         &lt;li class=&quot;tabs&quot;&gt;&lt;a href=&quot;#&lt;?php echo $taxonomy; ?&gt;-all&quot; tabindex=&quot;3&quot;&gt;&lt;?php printf( __( 'All %s' ), $tax-&gt;label ); ?&gt;&lt;/a&gt;&lt;/li&gt;
</ins><span class="cx">                          &lt;li class=&quot;hide-if-no-js&quot;&gt;&lt;a href=&quot;#&lt;?php echo $taxonomy; ?&gt;-pop&quot; tabindex=&quot;3&quot;&gt;&lt;?php _e( 'Most Used' ); ?&gt;&lt;/a&gt;&lt;/li&gt;
</span><span class="cx">                  &lt;/ul&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -308,10 +308,10 @@
</span><span class="cx"> 
</span><span class="cx">     &lt;?php if ( current_user_can($tax-&gt;edit_cap) ) : ?&gt;
</span><span class="cx">                          &lt;div id=&quot;&lt;?php echo $taxonomy; ?&gt;-adder&quot; class=&quot;wp-hidden-children&quot;&gt;
</span><del>-                                 &lt;h4&gt;&lt;a id=&quot;&lt;?php echo $taxonomy; ?&gt;-add-toggle&quot; href=&quot;#&lt;?php echo $taxonomy; ?&gt;-add&quot; class=&quot;hide-if-no-js&quot; tabindex=&quot;3&quot;&gt;&lt;?php _e( '+ Add New Category' ); ?&gt;&lt;/a&gt;&lt;/h4&gt;
</del><ins>+                                 &lt;h4&gt;&lt;a id=&quot;&lt;?php echo $taxonomy; ?&gt;-add-toggle&quot; href=&quot;#&lt;?php echo $taxonomy; ?&gt;-add&quot; class=&quot;hide-if-no-js&quot; tabindex=&quot;3&quot;&gt;&lt;?php printf( __( '+ Add New %s' ), $tax-&gt;singular_label ); ?&gt;&lt;/a&gt;&lt;/h4&gt;
</ins><span class="cx">                                  &lt;p id=&quot;&lt;?php echo $taxonomy; ?&gt;-add&quot; class=&quot;category-add wp-hidden-child&quot;&gt;
</span><del>-                                         &lt;label class=&quot;screen-reader-text&quot; for=&quot;new&lt;?php echo $taxonomy; ?&gt;&quot;&gt;&lt;?php _e( 'Add New Category' ); ?&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;new&lt;?php echo $taxonomy; ?&gt;&quot; id=&quot;new&lt;?php echo $taxonomy; ?&gt;&quot; class=&quot;form-required form-input-tip&quot; value=&quot;&lt;?php esc_attr_e( 'New category name' ); ?&gt;&quot; tabindex=&quot;3&quot; aria-required=&quot;true&quot;/&gt;
-                                         &lt;label class=&quot;screen-reader-text&quot; for=&quot;new&lt;?php echo $taxonomy; ?&gt;_parent&quot;&gt;&lt;?php _e('Parent category'); ?&gt;:&lt;/label&gt;&lt;?php wp_dropdown_categories( array( 'taxonomy' =&gt; $taxonomy, 'hide_empty' =&gt; 0, 'name' =&gt; 'new'.$taxonomy.'_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; __('Parent category'), 'tab_index' =&gt; 3 ) ); ?&gt;
</del><ins>+                                         &lt;label class=&quot;screen-reader-text&quot; for=&quot;new&lt;?php echo $taxonomy; ?&gt;&quot;&gt;&lt;?php printf( __( 'Add New %s' ), $tax-&gt;singular_label ); ?&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;new&lt;?php echo $taxonomy; ?&gt;&quot; id=&quot;new&lt;?php echo $taxonomy; ?&gt;&quot; class=&quot;form-required form-input-tip&quot; value=&quot;&lt;?php echo esc_attr( sprintf( 'New %s Name', $tax-&gt;singular_label ) ); ?&gt;&quot; tabindex=&quot;3&quot; aria-required=&quot;true&quot;/&gt;
+                                         &lt;label class=&quot;screen-reader-text&quot; for=&quot;new&lt;?php echo $taxonomy; ?&gt;_parent&quot;&gt;&lt;?php printf( __('Parent %s'), $tax-&gt;singular_label ); ?&gt;:&lt;/label&gt;&lt;?php wp_dropdown_categories( array( 'taxonomy' =&gt; $taxonomy, 'hide_empty' =&gt; 0, 'name' =&gt; 'new'.$taxonomy.'_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; sprintf( __('&amp;mdash; Parent %s &amp;mdash;'), $tax-&gt;singular_label ), 'tab_index' =&gt; 3 ) ); ?&gt;
</ins><span class="cx">                                          &lt;input type=&quot;button&quot; id=&quot;&lt;?php echo $taxonomy; ?&gt;-add-submit&quot; class=&quot;add:&lt;?php echo $taxonomy ?&gt;checklist:&lt;?php echo $taxonomy ?&gt;-add button category-add-sumbit&quot; value=&quot;&lt;?php esc_attr_e( 'Add' ); ?&gt;&quot; tabindex=&quot;3&quot; /&gt;
</span><span class="cx">                                          &lt;?php wp_nonce_field( 'add-'.$taxonomy, '_ajax_nonce', false ); ?&gt;
</span><span class="cx">                                          &lt;span id=&quot;&lt;?php echo $taxonomy; ?&gt;-ajax-response&quot;&gt;&lt;/span&gt;
</span></span></pre>
</div>
</div>

</body>
</html>