forked from Mirror/Ryujinx
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.
This commit is contained in:
parent
c702943af3
commit
d753de6d5d
3 changed files with 5 additions and 5 deletions
|
@ -118,7 +118,7 @@ namespace Ryujinx.Modules
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
{
|
{
|
||||||
Logger.Error?.Print(LogClass.Application, exception.Message);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -162,7 +162,7 @@ namespace Ryujinx.Modules
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logger.Warning?.Print(LogClass.Application, ex.Message);
|
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;
|
_buildSize = -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -254,7 +254,7 @@ namespace Ryujinx.Ui.Windows
|
||||||
}
|
}
|
||||||
else
|
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();
|
Close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1131,7 +1131,7 @@ namespace Ryujinx.Ui.Windows
|
||||||
|
|
||||||
if (_inputDevice.ActiveId == "disabled" || _profile.ActiveId == "default" || _profile.ActiveId == null) return;
|
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)
|
if (confirmDialog.Run() == (int)ResponseType.Yes)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue