epl_get_property_building_area_label Floor Area is Label

By default the building area label displayed as:

Floor Area is {value}

You can adjust the Floor Area is label with the epl_get_property_land_area_label filter

function my_ epl_get_property_building_area_label( $label ) {
     $label = 'Building Area:';
     return $label;
}
add_filter( 'epl_get_property_building_area_label' , 'epl_get_property_building_area_label' );