From cf16143ec251475ae80b2b37c0c6e312291275b3 Mon Sep 17 00:00:00 2001 From: Dagg Date: Wed, 9 Nov 2022 14:33:06 -0800 Subject: [PATCH] Grammar --- UnionPatcher.Gui/Forms/ModeSelectionForm.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UnionPatcher.Gui/Forms/ModeSelectionForm.cs b/UnionPatcher.Gui/Forms/ModeSelectionForm.cs index 04e3abc..d23fdbd 100644 --- a/UnionPatcher.Gui/Forms/ModeSelectionForm.cs +++ b/UnionPatcher.Gui/Forms/ModeSelectionForm.cs @@ -31,17 +31,17 @@ public class ModeSelectionForm : Form { { if (OSUtil.GetPlatform() == OSPlatform.OSX) { - Gui.CreateOkDialog("Workaround", "UnionPatcher RemotePatcher requires a staging folder on macOS, please set this to the directory of the UnionPatcher.app!"); + Gui.CreateOkDialog("Workaround", "UnionPatcher RemotePatcher requires a staging folder on macOS, please set this to the directory of the UnionPatcher app!"); SelectFolderDialog dialog = new SelectFolderDialog(); if (dialog.ShowDialog(this) != DialogResult.Ok) { - Gui.CreateOkDialog("Workaround", "Was not specified a staging folder, aborting!"); + Gui.CreateOkDialog("Workaround", "User did not specify a staging folder, aborting!"); return; } Directory.SetCurrentDirectory(dialog.Directory); if (!Directory.Exists("scetool")) { - Gui.CreateOkDialog("Workaround", "Invalid folder, remember to set the folder to the directory of UnionPatcher.app!"); + Gui.CreateOkDialog("Workaround", "Invalid folder, remember to set the folder to the directory of the UnionPatcher app!"); return; } }