Fix update label for link categories. Props duck_. fixes #13515
git-svn-id: http://svn.automattic.com/wordpress/trunk@14841 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8b5b7a7e75
commit
27015b92ee
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @since 2.7
|
* @since 2.7
|
||||||
*
|
*
|
||||||
* Outputs the HTML for the hidden table rows used in Categories, Link Caregories and Tags quick edit.
|
* Outputs the HTML for the hidden table rows used in Categories, Link Categories and Tags quick edit.
|
||||||
*
|
*
|
||||||
* @param string $type "edit-tags", "categoried" or "edit-link-categories"
|
* @param string $type "edit-tags", "categoried" or "edit-link-categories"
|
||||||
* @param string $taxonomy The taxonomy of the row.
|
* @param string $taxonomy The taxonomy of the row.
|
||||||
|
|
|
@ -52,6 +52,7 @@ function create_initial_taxonomies() {
|
||||||
'labels' => array(
|
'labels' => array(
|
||||||
'name' => __( 'Categories' ),
|
'name' => __( 'Categories' ),
|
||||||
'singular_name' => __( 'Category' ),
|
'singular_name' => __( 'Category' ),
|
||||||
|
'update_item' => __( 'Update Category' ),
|
||||||
),
|
),
|
||||||
'query_var' => false,
|
'query_var' => false,
|
||||||
'rewrite' => false,
|
'rewrite' => false,
|
||||||
|
|
Loading…
Reference in New Issue