diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c398267..f13d0d7a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to Wabbajack -The following is a set of guidelines for contributing to the `halgari/wabbajack` repo on Github. These are guildeines but not rules so be free to propose changes. +The following is a set of guidelines for contributing to the `halgari/wabbajack` repo on GitHub. These are guidelines but not rules so be free to propose changes. ## How Can I Contribute? @@ -39,7 +39,7 @@ You can download it [here](https://visualstudio.microsoft.com/vs/) but make sure The installer may have selected other options as well but these are the most important ones. -### Starting developement +### Starting development 1) **Fork and clone the project:** go to the Github repo page, click the fork button, copy the url from the forked repo, navigate to your project folder, open Git Bash or normal command prompt and type `git clone url name` and replace url with the copied url and name with the folder name 2) **Open Wabbajack.sln** in Visual Studio 2019 diff --git a/Wabbajack.Common/Utils.cs b/Wabbajack.Common/Utils.cs index ea1aee6c..81611db9 100644 --- a/Wabbajack.Common/Utils.cs +++ b/Wabbajack.Common/Utils.cs @@ -24,7 +24,7 @@ namespace Wabbajack.Common private static Action _loggerFn; private static Action _statusFn; - private static readonly string[] Suffix = {"B", "KB", "MB", "GB", "TB", "PB", "EB"}; //Longs run out around EB + private static readonly string[] Suffix = {"B", "KB", "MB", "GB", "TB", "PB", "EB"}; // Longs run out around EB public static void SetLoggerFn(Action f) { diff --git a/Wabbajack/AppState.cs b/Wabbajack/AppState.cs index 177a5c22..c1aadfba 100644 --- a/Wabbajack/AppState.cs +++ b/Wabbajack/AppState.cs @@ -48,7 +48,7 @@ namespace Wabbajack if (Assembly.GetEntryAssembly().Location.ToLower().Contains("\\downloads\\")) { MessageBox.Show( - "This app seems to be running inside a folder called `Downloads`, such folders are often highly monitored by Antivirus software and they can often " + + "This app seems to be running inside a folder called `Downloads`, such folders are often highly monitored by antivirus software and they can often " + "conflict with the operations Wabbajack needs to perform. Please move this executable outside of your `Downloads` folder and then restart the app.", "Cannot run inside `Downloads`", MessageBoxButton.OK, diff --git a/Wabbajack/Compiler.cs b/Wabbajack/Compiler.cs index 1ec3079f..9e6f3cc8 100644 --- a/Wabbajack/Compiler.cs +++ b/Wabbajack/Compiler.cs @@ -232,7 +232,7 @@ namespace Wabbajack InstallDirectives = results.Where(i => !(i is IgnoredDirectly)).ToList(); - Info("Getting nexus api_key please click authorize if a browser window appears"); + Info("Getting Nexus api_key, please click authorize if a browser window appears"); if (IndexedArchives.OfType().Any()) { @@ -439,7 +439,7 @@ namespace Wabbajack } else if (general.directURL != null && general.directURL.StartsWith("http://www.mediafire.com/file/")) { - Error("Mediafire links are not currently supported"); + Error("MediaFire links are not currently supported"); return null; /*result = new MediaFireArchive() { @@ -502,7 +502,7 @@ namespace Wabbajack installer.NexusAPIKey = NexusKey; if (!installer.DownloadArchive(result, false)) Error( - $"Unable to resolve link for {found.Name}. If this is hosted on the nexus the file may have been removed."); + $"Unable to resolve link for {found.Name}. If this is hosted on the Nexus the file may have been removed."); return result; } diff --git a/Wabbajack/Installer.cs b/Wabbajack/Installer.cs index d39b5912..2f6a4053 100644 --- a/Wabbajack/Installer.cs +++ b/Wabbajack/Installer.cs @@ -88,7 +88,7 @@ namespace Wabbajack if (Directory.Exists(Path.Combine(Outputfolder, "mods"))) { if (MessageBox.Show( - "There already appears to be a Mod Organize 2 install in this folder, are you sure you wish to continue" + + "There already appears to be a Mod Organizer 2 install in this folder, are you sure you wish to continue" + " with installation? If you do, you may render both your existing install and the new modlist inoperable.", "Existing MO2 installation in install folder", MessageBoxButton.YesNo, @@ -657,4 +657,4 @@ namespace Wabbajack } } } -} \ No newline at end of file +}