add following code in your theme’s (child theme’s if you are using) functions.php
add_filter('fep_menu_buttons', function( $menu ){
$menu['announcements']['title'] = sprintf(__('Announcements%s', 'front-end-pm'), fep_get_new_announcement_button() );
return $menu;
}, 99);