diff options
| author | VocalFan <45863583+Mou-Ikkai@users.noreply.github.com> | 2021-08-20 17:48:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-20 18:48:00 -0300 |
| commit | d753de6d5de17cfaf36bb5ecfeff0f0d60846171 (patch) | |
| tree | b698e445ff60b87bd271a1e03087ab0f66c946bb | |
| parent | c702943af3c7e9396b8fa86e3c1be3cb9339addc (diff) | |
Seeing if there are any other spelling errors to correct. (#2572)
* "Informations" -> "Information"
* Your -> You
* will use -> using (Plus more detailed Appveyor error msg.)
* Did a dumb thing, fixed it.
| -rw-r--r-- | Ryujinx/Modules/Updater/Updater.cs | 4 | ||||
| -rw-r--r-- | Ryujinx/Ui/Windows/AmiiboWindow.cs | 4 | ||||
| -rw-r--r-- | Ryujinx/Ui/Windows/ControllerWindow.cs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Ryujinx/Modules/Updater/Updater.cs b/Ryujinx/Modules/Updater/Updater.cs index c84639cb..524060d4 100644 --- a/Ryujinx/Modules/Updater/Updater.cs +++ b/Ryujinx/Modules/Updater/Updater.cs @@ -118,7 +118,7 @@ namespace Ryujinx.Modules catch (Exception exception) { Logger.Error?.Print(LogClass.Application, exception.Message); - GtkDialog.CreateErrorDialog("An error has occurred when trying to get release information from AppVeyor."); + GtkDialog.CreateErrorDialog("An error occurred when trying to get release information from AppVeyor. This can be caused if a new release is being compiled by AppVeyor. Try again in a few minutes."); return; } @@ -162,7 +162,7 @@ namespace Ryujinx.Modules catch (Exception ex) { Logger.Warning?.Print(LogClass.Application, ex.Message); - Logger.Warning?.Print(LogClass.Application, "Couldn't determine build size for update, will use single-threaded updater"); + Logger.Warning?.Print(LogClass.Application, "Couldn't determine build size for update, using single-threaded updater"); _buildSize = -1; } diff --git a/Ryujinx/Ui/Windows/AmiiboWindow.cs b/Ryujinx/Ui/Windows/AmiiboWindow.cs index ac087ce1..c949d220 100644 --- a/Ryujinx/Ui/Windows/AmiiboWindow.cs +++ b/Ryujinx/Ui/Windows/AmiiboWindow.cs @@ -254,7 +254,7 @@ namespace Ryujinx.Ui.Windows } else { - GtkDialog.CreateInfoDialog($"Amiibo API", "An error occured while fetching informations from the API."); + GtkDialog.CreateInfoDialog($"Amiibo API", "An error occured while fetching information from the API."); Close(); } @@ -419,4 +419,4 @@ namespace Ryujinx.Ui.Windows base.Dispose(disposing); } } -}
\ No newline at end of file +} diff --git a/Ryujinx/Ui/Windows/ControllerWindow.cs b/Ryujinx/Ui/Windows/ControllerWindow.cs index 36c2a7aa..4b7ca363 100644 --- a/Ryujinx/Ui/Windows/ControllerWindow.cs +++ b/Ryujinx/Ui/Windows/ControllerWindow.cs @@ -1131,7 +1131,7 @@ namespace Ryujinx.Ui.Windows if (_inputDevice.ActiveId == "disabled" || _profile.ActiveId == "default" || _profile.ActiveId == null) return; - MessageDialog confirmDialog = GtkDialog.CreateConfirmationDialog("Deleting Profile", "This action is irreversible, are your sure you want to continue?"); + MessageDialog confirmDialog = GtkDialog.CreateConfirmationDialog("Deleting Profile", "This action is irreversible, are you sure you want to continue?"); if (confirmDialog.Run() == (int)ResponseType.Yes) { |
