From edfe6aa04629cfc00c9e510fb44d3a7640d6f109 Mon Sep 17 00:00:00 2001 From: nilsk Date: Wed, 25 Mar 2026 00:37:55 +0100 Subject: [PATCH] fixed translation key --- .../Agents/AssistantAudit/AssistantAuditAgent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Agents/AssistantAudit/AssistantAuditAgent.cs b/app/MindWork AI Studio/Agents/AssistantAudit/AssistantAuditAgent.cs index 12397db6..090c8ac8 100644 --- a/app/MindWork AI Studio/Agents/AssistantAudit/AssistantAuditAgent.cs +++ b/app/MindWork AI Studio/Agents/AssistantAudit/AssistantAuditAgent.cs @@ -11,7 +11,7 @@ namespace AIStudio.Agents.AssistantAudit; public sealed class AssistantAuditAgent(ILogger logger, ILogger baseLogger, SettingsManager settingsManager, DataSourceService dataSourceService, ThreadSafeRandom rng) : AgentBase(baseLogger, settingsManager, dataSourceService, rng) { - private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(PluginTypeExtensions).Namespace, nameof(PluginTypeExtensions)); + private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(AssistantAuditAgent).Namespace, nameof(AssistantAuditAgent)); protected override Type Type => Type.SYSTEM;