diff options
author | Marcel Klehr <mklehr@gmx.net> | 2025-04-14 08:14:14 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-04-14 06:55:42 +0000 |
commit | af3a543e359458eb1eda699e3a788676d4dd7a55 (patch) | |
tree | 1e9f1b77cb5b628c7787d629e76cd3adde42e6d9 | |
parent | 997ea5e34f4aeab28072281e89698fbb8f75e47d (diff) | |
download | nextcloud-server-backport/52168/stable31.tar.gz nextcloud-server-backport/52168/stable31.zip |
fix(ContextAgent): Do not translate the name ContextAgentbackport/52168/stable31
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
-rw-r--r-- | lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 } /** |