Fix screen reader text on the coupons management screen
This commit is contained in:
parent
8c49e81f45
commit
7058facc68
|
@ -354,20 +354,23 @@ class WC_Post_types {
|
|||
apply_filters( 'woocommerce_register_post_type_shop_coupon',
|
||||
array(
|
||||
'labels' => array(
|
||||
'name' => __( 'Coupons', 'woocommerce' ),
|
||||
'singular_name' => __( 'Coupon', 'woocommerce' ),
|
||||
'menu_name' => _x( 'Coupons', 'Admin menu name', 'woocommerce' ),
|
||||
'add_new' => __( 'Add Coupon', 'woocommerce' ),
|
||||
'add_new_item' => __( 'Add New Coupon', 'woocommerce' ),
|
||||
'edit' => __( 'Edit', 'woocommerce' ),
|
||||
'edit_item' => __( 'Edit Coupon', 'woocommerce' ),
|
||||
'new_item' => __( 'New Coupon', 'woocommerce' ),
|
||||
'view' => __( 'View Coupons', 'woocommerce' ),
|
||||
'view_item' => __( 'View Coupon', 'woocommerce' ),
|
||||
'search_items' => __( 'Search Coupons', 'woocommerce' ),
|
||||
'not_found' => __( 'No Coupons found', 'woocommerce' ),
|
||||
'not_found_in_trash' => __( 'No Coupons found in trash', 'woocommerce' ),
|
||||
'parent' => __( 'Parent Coupon', 'woocommerce' )
|
||||
'name' => __( 'Coupons', 'woocommerce' ),
|
||||
'singular_name' => __( 'Coupon', 'woocommerce' ),
|
||||
'menu_name' => _x( 'Coupons', 'Admin menu name', 'woocommerce' ),
|
||||
'add_new' => __( 'Add Coupon', 'woocommerce' ),
|
||||
'add_new_item' => __( 'Add New Coupon', 'woocommerce' ),
|
||||
'edit' => __( 'Edit', 'woocommerce' ),
|
||||
'edit_item' => __( 'Edit Coupon', 'woocommerce' ),
|
||||
'new_item' => __( 'New Coupon', 'woocommerce' ),
|
||||
'view' => __( 'View Coupons', 'woocommerce' ),
|
||||
'view_item' => __( 'View Coupon', 'woocommerce' ),
|
||||
'search_items' => __( 'Search Coupons', 'woocommerce' ),
|
||||
'not_found' => __( 'No Coupons found', 'woocommerce' ),
|
||||
'not_found_in_trash' => __( 'No Coupons found in trash', 'woocommerce' ),
|
||||
'parent' => __( 'Parent Coupon', 'woocommerce' ),
|
||||
'filter_items_list' => __( 'Filter coupons', 'woocommerce' ),
|
||||
'items_list_navigation' => __( 'Coupons navigation', 'woocommerce' ),
|
||||
'items_list' => __( 'Coupons list', 'woocommerce' ),
|
||||
),
|
||||
'description' => __( 'This is where you can add new coupons that customers can use in your store.', 'woocommerce' ),
|
||||
'public' => false,
|
||||
|
|
Loading…
Reference in New Issue