diff --git a/app/MindWork AI Studio/Dialogs/PandocDialog.razor b/app/MindWork AI Studio/Dialogs/PandocDialog.razor
index e79c2b87..80917f27 100644
--- a/app/MindWork AI Studio/Dialogs/PandocDialog.razor
+++ b/app/MindWork AI Studio/Dialogs/PandocDialog.razor
@@ -142,10 +142,36 @@
}
else
{
-
-
- Pandoc ist auf Ihrem System nicht verfügbar
-
+ switch (this.pandocInstallation)
+ {
+ case { CheckWasSuccessful: true, IsAvailable: true }:
+
+
+
+ Pandoc is installed and the version meets the requirements of MindWork AI Studio.
+
+
+ break;
+
+ case { CheckWasSuccessful: true, IsAvailable: false }:
+
+
+
+ Pandoc is installed, but the version is too old and does not meet the requirements of
+ MindWork AI Studio. AI Studio can help you install a newer version.
+
+
+ break;
+
+ case { CheckWasSuccessful: false }:
+
+
+
+ Pandoc doesn't seem to be installed on this system. AI Studio can help you install the correct version.
+
+
+ break;
+ }
}
}
@@ -159,9 +185,16 @@
}
else
{
-
- Proceed to installation
+
+ Cancel
+
+ @if (this.pandocInstallation != default)
+ {
+
+ Proceed to installation
+
+ }
}
\ No newline at end of file