diff --git a/app/MindWork AI Studio/Tools/Services/RustService.Clipboard.cs b/app/MindWork AI Studio/Tools/Services/RustService.Clipboard.cs
index 09fad915..2e447867 100644
--- a/app/MindWork AI Studio/Tools/Services/RustService.Clipboard.cs
+++ b/app/MindWork AI Studio/Tools/Services/RustService.Clipboard.cs
@@ -5,8 +5,6 @@ namespace AIStudio.Tools.Services;
public sealed partial class RustService
{
- private static string TB_Clipboard(string fallbackEN) => I18N.I.T(fallbackEN, typeof(RustService).Namespace, $"{nameof(RustService)}.Clipboard");
-
///
/// Tries to copy the given text to the clipboard.
///
@@ -14,8 +12,6 @@ public sealed partial class RustService
/// The text to copy to the clipboard.
public async Task CopyText2Clipboard(ISnackbar snackbar, string text)
{
- static string TB(string fallbackEN) => TB_Clipboard(fallbackEN);
-
var message = TB("Successfully copied the text to your clipboard");
var iconColor = Color.Error;
var severity = Severity.Error;
diff --git a/app/MindWork AI Studio/Tools/Services/RustService.cs b/app/MindWork AI Studio/Tools/Services/RustService.cs
index 41628992..c1b90e2f 100644
--- a/app/MindWork AI Studio/Tools/Services/RustService.cs
+++ b/app/MindWork AI Studio/Tools/Services/RustService.cs
@@ -2,6 +2,7 @@ using System.Security.Cryptography;
using System.Text.Json;
using AIStudio.Settings;
+using AIStudio.Tools.PluginSystem;
using Version = System.Version;
@@ -14,6 +15,8 @@ namespace AIStudio.Tools.Services;
///
public sealed partial class RustService : BackgroundService
{
+ private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(RustService).Namespace, nameof(RustService));
+
private readonly HttpClient http;
private readonly JsonSerializerOptions jsonRustSerializerOptions = new()