chore: update wording
This commit is contained in:
@@ -62,7 +62,7 @@ class CreateController extends AbstractController
|
||||
if ($form->isSubmitted() && $form->isValid()) {
|
||||
$this->entityManager->persist($contact);
|
||||
$this->entityManager->flush();
|
||||
$this->addFlash('success', 'Der Ansprechpartner wurde hinzugefügt');
|
||||
$this->addFlash('success', 'Die Ansprechperson wurde hinzugefügt');
|
||||
$this->logger->info('Create contact', [
|
||||
'contact_id' => $contact->getId(),
|
||||
'contact_name' => $contact->getName(),
|
||||
|
||||
@@ -25,7 +25,7 @@ class DeleteController extends AbstractController
|
||||
$this->entityManager->remove($contact);
|
||||
$this->entityManager->flush();
|
||||
|
||||
$this->addFlash('success', 'Der Ansprechpartner wurde gelöscht');
|
||||
$this->addFlash('success', 'Die Ansprechperson wurde gelöscht');
|
||||
$this->logger->info('Delete contact', [
|
||||
'contact_id' => $contact->getId(),
|
||||
'contact_name' => $contact->getName(),
|
||||
|
||||
@@ -59,7 +59,7 @@ class EditController extends AbstractController
|
||||
|
||||
if ($form->isSubmitted() && $form->isValid()) {
|
||||
$this->entityManager->flush();
|
||||
$this->addFlash('success', 'Der Ansprechpartner wurde aktualisiert');
|
||||
$this->addFlash('success', 'Die Ansprechperson wurde aktualisiert');
|
||||
$this->logger->info('Edit contact', [
|
||||
'contact_id' => $contact->getId(),
|
||||
'contact_name' => $contact->getName(),
|
||||
|
||||
Reference in New Issue
Block a user