This was answerd a few times before. Search the forum before you open topic.
Ad this in your child theme functions.php
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'View full post' => 'Custom Text',
);
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 );