diff --git a/app/MindWork AI Studio/Components/Pages/TextSummarizer/CommonLanguagePrompts.cs b/app/MindWork AI Studio/Components/Pages/TextSummarizer/CommonLanguagePrompts.cs index 73bd72cb..503ba243 100644 --- a/app/MindWork AI Studio/Components/Pages/TextSummarizer/CommonLanguagePrompts.cs +++ b/app/MindWork AI Studio/Components/Pages/TextSummarizer/CommonLanguagePrompts.cs @@ -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}).", };