From af3a543e359458eb1eda699e3a788676d4dd7a55 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 937c13bbba5e9..cd08d6f4e3de3 100644 --- a/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php +++ b/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php @@ -39,7 +39,7 @@ public function __construct( * @since 31.0.0 */ public function getName(): string { - return $this->l->t('ContextAgent'); + return 'ContextAgent'; // We do not translate this } /**