AI-Studio/app/MindWork AI Studio/Settings/DataModel/LangBehaviourExtensions.cs

12 lines
377 B
C#
Raw Permalink Normal View History

namespace AIStudio.Settings.DataModel;
public static class LangBehaviorExtensions
{
public static string Name(this LangBehavior langBehavior) => langBehavior switch
{
LangBehavior.AUTO => "Choose the language automatically, based on your system language.",
LangBehavior.MANUAL => "Choose the language manually.",
_ => "Unknown option"
};
}