2025-04-24 14:49:32 +00:00
|
|
|
namespace AIStudio.Settings.DataModel;
|
|
|
|
|
|
|
|
public class DataI18N
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect any I18N options?
|
|
|
|
/// </summary>
|
|
|
|
public bool PreselectOptions { get; set; }
|
2025-04-25 13:28:59 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect a language plugin to where the new content should compare to?
|
|
|
|
/// </summary>
|
|
|
|
public Guid PreselectedLanguagePluginId { get; set; }
|
2025-04-24 14:49:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect the target language?
|
|
|
|
/// </summary>
|
|
|
|
public CommonLanguages PreselectedTargetLanguage { get; set; } = CommonLanguages.EN_GB;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect any other language?
|
|
|
|
/// </summary>
|
|
|
|
public string PreselectOtherLanguage { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Which LLM provider should be preselected?
|
|
|
|
/// </summary>
|
|
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
|
|
|
}
|