From 9d6ca8be31609731166dd6b9aeb307aa9d252c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 24 May 2020 20:20:44 +0200 Subject: [PATCH] Added missing translation for action success. --- src/Controller/PartListsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/PartListsController.php b/src/Controller/PartListsController.php index 6e85f7f2..e5e0065b 100644 --- a/src/Controller/PartListsController.php +++ b/src/Controller/PartListsController.php @@ -90,7 +90,7 @@ class PartListsController extends AbstractController //Save changes $this->entityManager->flush(); - $this->addFlash('success', 'Done'); + $this->addFlash('success', 'part.table.actions.success'); }