Add this to your child theme’s functions.php file. (Put this anywhere between opening and closing php tags)
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Go back to the front page' => 'You wanna start the tour from home page again?',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );
Change You wanna start the tour from home page again? to whatever you want. It will be shown instead of Go back to the front page.