Hi,
Please use this code at functions.php of child theme-:
function sf_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'bag' :
$translated_text = __( 'cart', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'sf_text_strings', 20, 3 );
Thanks