mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 20:39:48 +00:00
12 lines
377 B
C#
12 lines
377 B
C#
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"
|
|
};
|
|
} |