translate string/text using functions
// translation
add_filter( 'gettext', 'replace_preview_resume_text' );
function replace_preview_resume_text( $text ){
if( $text === 'Find out more' ) {
$text = 'Learn More';
}
return $text;
}