Dear, i not see Loco plugin is installed on your site, if you don't want use Loco plugin to change text of button via translate theme, you can change text via hook action, to do it please: Update Jobmonster theme on your site to latest version 4.6.1 then install and switch your site to use Jobmonster child theme.
After update theme and switch your site to use child theme, please add custom code in file functions.php of Jobmonster child theme to change text. code is:
add_filter('jm_get_button_text',function($button_text, $type){
if('resume' == $type){
$button_text = 'CV';
}
return $button_text;
},10,2);
Best regards.