mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 13:09:07 +00:00
13 lines
392 B
C#
13 lines
392 B
C#
|
using AIStudio.Tools;
|
||
|
|
||
|
namespace AIStudio.Components.Pages.Translator;
|
||
|
|
||
|
public static class CommonLanguageExtension
|
||
|
{
|
||
|
public static string Prompt(this CommonLanguages language, string customLanguage) => language switch
|
||
|
{
|
||
|
CommonLanguages.OTHER => $"Translate the text in {customLanguage}.",
|
||
|
|
||
|
_ => $"Translate the given text in {language.Name()} ({language}).",
|
||
|
};
|
||
|
}
|