This commit is contained in:
Thorsten Sommer 2024-08-05 13:20:02 +02:00
parent c7ffbdb2b7
commit cb4fc33bdb
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -7,7 +7,7 @@ public static class CommonLanguagePrompts
public static string Prompt(this CommonLanguages language, string customLanguage) => language switch
{
CommonLanguages.AS_IS => "Do not change the language of the text.",
CommonLanguages.OTHER => $"Output you summary in {customLanguage}.",
CommonLanguages.OTHER => $"Output your summary in {customLanguage}.",
_ => $"Output your summary in {language.Name()} ({language}).",
};