Skip to content

Commit

Permalink
Grammatical errors in UpdateChecker.cs (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
wturner859 authored and julianxhokaxhiu committed Feb 28, 2022
1 parent f1bc88b commit 708e8d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SeventhHeavenUI/Classes/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void CheckForUpdates(AppUpdateChannelOptions channel, bool manualCheck =
case -1: // OLDER
if (
MessageDialogWindow.Show(
$"Your current version seems newer to the one currently available.\n\nCurrent Version: {curVersion.ToString()}\nNew Version: {newVersion.ToString()}\n\nWould you like to install it anyway?",
$"Your current version seems newer than the one presently available.\n\nCurrent Version: {curVersion.ToString()}\nNew Version: {newVersion.ToString()}\n\nWould you like to install it anyway?",
"Update found!",
System.Windows.MessageBoxButton.YesNo,
System.Windows.MessageBoxImage.Question
Expand Down Expand Up @@ -196,7 +196,7 @@ private void DownloadAndExtract(string url, string version)
SwitchToModPanel();
MessageDialogWindow.Show($"Successfully downloaded version {version}.\n\nWe will now start the update process. 7th Heaven will restart automatically when the update will be completed.\n\nEnjoy!", "Success", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Information);
MessageDialogWindow.Show($"Successfully downloaded version {version}.\n\nWe will now start the update process. 7th Heaven will restart automatically when the update is completed.\n\nEnjoy!", "Success", System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Information);
Sys.Message(new WMessage() { Text = $"Successfully extracted the 7thHeaven version {version}. Ready to launch the update." });
File.Delete(download.SaveFilePath);
Expand Down

0 comments on commit 708e8d1

Please sign in to comment.