Change or Translate "You may also like..." Text - WooCommerce Upsell/Cross Sale Products

/* Change "You may also like..." Text - WooCommerce */
 
add_filter( 'gettext', 'upsell_text_translate_like' );
 
function upsell_text_translate_like($translated) {
$translated = str_ireplace('You may also like…', 'Wear with', $translated);
return $translated;
}