From 19ede62b901a615198d03dfe782976860cb79d0e Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 14 Apr 2025 08:14:14 +0200 Subject: [PATCH] fix(ContextAgent): Do not translate the name ContextAgent Signed-off-by: Marcel Klehr --- lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php b/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php index 937c13bbba5..cd08d6f4e3d 100644 --- a/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php +++ b/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php @@ -39,7 +39,7 @@ class ContextAgentInteraction implements ITaskType { * @since 31.0.0 */ public function getName(): string { - return $this->l->t('ContextAgent'); + return 'ContextAgent'; // We do not translate this } /**