Hello G,
Please check this article:https://community.theme.co/kb/translation/ and follow the correct steps.
An alternative is adding the following code on your child theme’s functions.php file:
add_filter('gettext', 'translate_text' );
function translate_text($translated) {
$translated = str_ireplace('Related Products', "Related Products TRANSLATION", $translated);
$translated = str_ireplace('You may also like…', "You may also like… TRANSLATION", $translated);
return $translated;
}
Change the translation text.
Hope this helps.