Hi Martin,
Please do note it may take 24hrs (sometimes 48hrs, at periods of peak activity) before we can respond: while we do try to answer threads in order unfortunately ‘bumping’ them can cause them to appear as if they are newer than they really are.
To the question at hand, though, would adding something like this to your theme’s functions.php file help?
add_action( 'tribe_pre_get_view', 'change_organizer_field_meta_label' );
function change_custom_field_meta_label() {
tribe_set_meta_label( 'tribe_event_organizer', 'NEW LABEL!', 'meta_group' );
}