Add BulkInfoProviderImportJobPart to element type name generator

This commit is contained in:
barisgit 2025-08-04 23:37:56 +02:00 committed by Jan Böhmer
parent 9729a43f2b
commit 5a4f151ca3

View file

@ -27,6 +27,7 @@ use App\Entity\Attachments\Attachment;
use App\Entity\Attachments\AttachmentType; use App\Entity\Attachments\AttachmentType;
use App\Entity\Base\AbstractDBElement; use App\Entity\Base\AbstractDBElement;
use App\Entity\BulkInfoProviderImportJob; use App\Entity\BulkInfoProviderImportJob;
use App\Entity\BulkInfoProviderImportJobPart;
use App\Entity\Contracts\NamedElementInterface; use App\Entity\Contracts\NamedElementInterface;
use App\Entity\Parts\PartAssociation; use App\Entity\Parts\PartAssociation;
use App\Entity\ProjectSystem\Project; use App\Entity\ProjectSystem\Project;
@ -81,6 +82,7 @@ class ElementTypeNameGenerator
LabelProfile::class => $this->translator->trans('label_profile.label'), LabelProfile::class => $this->translator->trans('label_profile.label'),
PartAssociation::class => $this->translator->trans('part_association.label'), PartAssociation::class => $this->translator->trans('part_association.label'),
BulkInfoProviderImportJob::class => $this->translator->trans('bulk_info_provider_import_job.label'), BulkInfoProviderImportJob::class => $this->translator->trans('bulk_info_provider_import_job.label'),
BulkInfoProviderImportJobPart::class => $this->translator->trans('bulk_info_provider_import_job_part.label'),
]; ];
} }