Sorry, missed that the line of code has an apply_filters around it. This code will change the string for you! Just add to child theme:
function custom_upload_images_string() {
return 'your translation';
}
add_filter( 'rwmb_image_advanced_select_string', 'custom_upload_images_string' );
– Ed