2025-01-01 14:49:27 +00:00
|
|
|
namespace AIStudio.Assistants.ERI;
|
|
|
|
|
|
|
|
public static class OperatingSystemExtensions
|
|
|
|
{
|
2025-05-28 21:14:05 +00:00
|
|
|
private static string TB(string fallbackEN) => Tools.PluginSystem.I18N.I.T(fallbackEN, typeof(OperatingSystemExtensions).Namespace, nameof(OperatingSystemExtensions));
|
|
|
|
|
2025-01-01 14:49:27 +00:00
|
|
|
public static string Name(this OperatingSystem os) => os switch
|
2025-05-28 21:14:05 +00:00
|
|
|
{
|
|
|
|
OperatingSystem.NONE => TB("No operating system specified"),
|
|
|
|
|
|
|
|
OperatingSystem.WINDOWS => TB("Windows"),
|
|
|
|
OperatingSystem.LINUX => TB("Linux"),
|
|
|
|
|
|
|
|
_ => TB("Unknown operating system")
|
|
|
|
};
|
|
|
|
|
|
|
|
public static string ToPrompt(this OperatingSystem os) => os switch
|
2025-01-01 14:49:27 +00:00
|
|
|
{
|
|
|
|
OperatingSystem.NONE => "No operating system specified",
|
|
|
|
|
|
|
|
OperatingSystem.WINDOWS => "Windows",
|
|
|
|
OperatingSystem.LINUX => "Linux",
|
|
|
|
|
|
|
|
_ => "Unknown operating system"
|
|
|
|
};
|
|
|
|
}
|