Merge pull request #48 from tr4wzified/typofixes

Fix typos in various files
This commit is contained in:
Timothy Baldridge 2019-09-25 21:36:29 -06:00 committed by GitHub
commit de373ca9e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -65,7 +65,7 @@ Overview video [`https://www.youtube.com/watch?v=5Fwr0Chtcuc`]
1) Download Wabbajack and install it somewhere outside of your normal Mod Organizer 2 folder
(otherwise Wabbajack will try to figure out how to install itself and that might cuase a collapse in the time-space
(otherwise Wabbajack will try to figure out how to install itself and that might cause a collapse in the time-space
continuum).
2) Make sure every archive you used in your MO2 profile has some sort of download information attached.
* If the file was downloaded via MO2 you're good, no extra work is needed

View File

@ -24,7 +24,7 @@ namespace Wabbajack.Common
private static Action<string> _loggerFn;
private static Action<string, int> _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<string> f)
{

View File

@ -63,7 +63,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,

View File

@ -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.Any(a => a.IniData?.General?.gameName != null))
{
@ -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()
{
@ -507,7 +507,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;
}

View File

@ -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
}
}
}
}
}