Rename the title of a meta box.
Source: https://bryce.se/2012/10/14/change-title-of-wordpress-meta-boxes/
Additional: https://easywebdesigntutorials.com/customizing-the-excerpts-meta-box/
//Rename Meta Box Titles
add_action('do_meta_boxes', 'replace_metabox_title');
function replace_metabox_title()
{
\!h remove_meta_box( '__METABOX_ID__', '__POST_TYPE__', 'side' ); //old metabox info
\!h add_meta_box('__METABOX_ID__', __('__META BOX TITLE__'), '__METABOX_CALLBACK__', '__POST_TYPE__', 'normal', 'high'); //new metabox info
}