Merge branch 'pr/13712'
This commit is contained in:
commit
cf35375260
|
@ -94,7 +94,7 @@ class WC_Admin_Menus {
|
||||||
* Add menu item.
|
* Add menu item.
|
||||||
*/
|
*/
|
||||||
public function status_menu() {
|
public function status_menu() {
|
||||||
add_submenu_page( 'woocommerce', __( 'WooCommerce status', 'woocommerce' ), __( 'System status', 'woocommerce' ) , 'manage_woocommerce', 'wc-status', array( $this, 'status_page' ) );
|
add_submenu_page( 'woocommerce', __( 'WooCommerce status', 'woocommerce' ), __( 'Status', 'woocommerce' ) , 'manage_woocommerce', 'wc-status', array( $this, 'status_page' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -257,8 +257,9 @@ class WC_Post_types {
|
||||||
'labels' => array(
|
'labels' => array(
|
||||||
'name' => __( 'Products', 'woocommerce' ),
|
'name' => __( 'Products', 'woocommerce' ),
|
||||||
'singular_name' => __( 'Product', 'woocommerce' ),
|
'singular_name' => __( 'Product', 'woocommerce' ),
|
||||||
|
'all_items' => __( 'All Products', 'woocommerce' ),
|
||||||
'menu_name' => _x( 'Products', 'Admin menu name', 'woocommerce' ),
|
'menu_name' => _x( 'Products', 'Admin menu name', 'woocommerce' ),
|
||||||
'add_new' => __( 'Add product', 'woocommerce' ),
|
'add_new' => __( 'Add New', 'woocommerce' ),
|
||||||
'add_new_item' => __( 'Add new product', 'woocommerce' ),
|
'add_new_item' => __( 'Add new product', 'woocommerce' ),
|
||||||
'edit' => __( 'Edit', 'woocommerce' ),
|
'edit' => __( 'Edit', 'woocommerce' ),
|
||||||
'edit_item' => __( 'Edit product', 'woocommerce' ),
|
'edit_item' => __( 'Edit product', 'woocommerce' ),
|
||||||
|
|
Loading…
Reference in New Issue