How to change menu labels

In order to change the menu labels you will have to go to add this code into your functions.php:

add_filter( 'gettext', 'change_woocommerce_text' );

function change_woocommerce_text( $translated ) 
{  
    $translated = str_replace( 'WooCommerce', 'Store', $translated );
    return $translated;
}

Tested.