diff --git a/app/MindWork AI Studio/Dialogs/Settings/SettingsDialogI18N.razor b/app/MindWork AI Studio/Dialogs/Settings/SettingsDialogI18N.razor
index b1de7e2f..6a89328b 100644
--- a/app/MindWork AI Studio/Dialogs/Settings/SettingsDialogI18N.razor	
+++ b/app/MindWork AI Studio/Dialogs/Settings/SettingsDialogI18N.razor	
@@ -16,6 +16,7 @@
             {
                 <ConfigurationText OptionDescription="@T("Preselect another target language")" Disabled="@(() => !this.SettingsManager.ConfigurationData.I18N.PreselectOptions)" Icon="@Icons.Material.Filled.Translate" Text="@(() => this.SettingsManager.ConfigurationData.I18N.PreselectOtherLanguage)" TextUpdate="@(updatedText => this.SettingsManager.ConfigurationData.I18N.PreselectOtherLanguage = updatedText)"/>
             }
+            <ConfigurationSelect OptionDescription="Language plugin used for comparision" SelectedValue="@(() => this.SettingsManager.ConfigurationData.I18N.PreselectedLanguagePluginId)" Data="@ConfigurationSelectDataFactory.GetLanguagesData()" SelectionUpdate="@(selectedValue => this.SettingsManager.ConfigurationData.I18N.PreselectedLanguagePluginId = selectedValue)" OptionHelp="Select the language plugin used for comparision."/>
             <ConfigurationProviderSelection Component="Components.I18N_ASSISTANT" Data="@this.availableLLMProviders" Disabled="@(() => !this.SettingsManager.ConfigurationData.I18N.PreselectOptions)" SelectedValue="@(() => this.SettingsManager.ConfigurationData.I18N.PreselectedProvider)" SelectionUpdate="@(selectedValue => this.SettingsManager.ConfigurationData.I18N.PreselectedProvider = selectedValue)"/>
         </MudPaper>
     </DialogContent>
diff --git a/app/MindWork AI Studio/Settings/DataModel/DataI18N.cs b/app/MindWork AI Studio/Settings/DataModel/DataI18N.cs
index fae02c2e..7f8ddb19 100644
--- a/app/MindWork AI Studio/Settings/DataModel/DataI18N.cs	
+++ b/app/MindWork AI Studio/Settings/DataModel/DataI18N.cs	
@@ -6,6 +6,11 @@ public class DataI18N
     /// Preselect any I18N options?
     /// </summary>
     public bool PreselectOptions { get; set; }
+    
+    /// <summary>
+    /// Preselect a language plugin to where the new content should compare to?
+    /// </summary>
+    public Guid PreselectedLanguagePluginId { get; set; }
 
     /// <summary>
     /// Preselect the target language?