Hi There,
Please add the following code under functions.php file locates in your child theme:
add_filter('gettext', 'x_translate_text' , 20, 3);
function x_translate_text ( $translated_text, $text, $domain ) {
$translation = array (
'Type and Press “enter” to Search' => 'Your text will go here',
);
if( isset( $translation[$text] ) ) {
return $translation[$text];
}
return $translated_text;
}
Hope it helps 🙂