Depending on your theme customization, you could try to add this in function.php
file located in your active child theme or theme:
function custom_excerpt_more($more) {
global $post;
return '' . __("Your Read More Link Text", "your_theme_slug") . '';
}
add_filter( 'excerpt_more', 'custom_excerpt_more' );
WP codex: Customizing the Read More