public functionentityBundleDelete($entity_type_id, $bundle) {
// Remove the content language settings associated with the bundle.$settings = ContentLanguageSettings::loadByEntityTypeBundle($entity_type_id, $bundle);
if (!$settings->isNew()) {
$settings->delete();
}
}