Hi,
Please paste this code at functions.php of child theme.
<?php
function sf_text_strings( $translated_text, $text, $domain ) {
$translated_text = strtolower($translated_text);
switch ( $translated_text ) {
case 'no items in the cart' :
//please change this text as you want to translate.
$translated_text = __( 'no items in the cart', 'woocommerce' );
break;
case 'view all products' :
//please change this text as you want to translate.
$translated_text = __( 'view all products', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'sf_text_strings', 20, 3 );
?>
Thanks
Mohammad