aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx/Ui/MainWindow.cs8
-rw-r--r--Ryujinx/Ui/Widgets/GameTableContextMenu.cs10
-rw-r--r--Ryujinx/Ui/Widgets/GtkDialog.cs4
-rw-r--r--Ryujinx/Ui/Windows/ControllerWindow.cs4
-rw-r--r--Ryujinx/Ui/Windows/DlcWindow.cs4
5 files changed, 15 insertions, 15 deletions
diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs
index 634a1781..56a426a5 100644
--- a/Ryujinx/Ui/MainWindow.cs
+++ b/Ryujinx/Ui/MainWindow.cs
@@ -452,7 +452,7 @@ namespace Ryujinx.Ui
{
if (_gameLoaded)
{
- GtkDialog.CreateInfoDialog("A game has already been loaded", "Please close it first and try again.");
+ GtkDialog.CreateInfoDialog("A game has already been loaded", "Please stop emulation or close the emulator before launching another game.");
}
else
{
@@ -559,14 +559,14 @@ namespace Ryujinx.Ui
_emulationContext.LoadNsp(path);
break;
default:
- Logger.Info?.Print(LogClass.Application, "Loading as homebrew.");
+ Logger.Info?.Print(LogClass.Application, "Loading as Homebrew.");
try
{
_emulationContext.LoadProgram(path);
}
catch (ArgumentOutOfRangeException)
{
- Logger.Error?.Print(LogClass.Application, "The file which you have specified is unsupported by Ryujinx.");
+ Logger.Error?.Print(LogClass.Application, "The specified file is not supported by Ryujinx.");
}
break;
}
@@ -1230,7 +1230,7 @@ namespace Ryujinx.Ui
{
Updater.BeginParse(this, true).ContinueWith(task =>
{
- Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
+ Logger.Error?.Print(LogClass.Application, $"Updater error: {task.Exception}");
}, TaskContinuationOptions.OnlyOnFaulted);
}
}
diff --git a/Ryujinx/Ui/Widgets/GameTableContextMenu.cs b/Ryujinx/Ui/Widgets/GameTableContextMenu.cs
index 79cda5ae..487433c2 100644
--- a/Ryujinx/Ui/Widgets/GameTableContextMenu.cs
+++ b/Ryujinx/Ui/Widgets/GameTableContextMenu.cs
@@ -259,11 +259,11 @@ namespace Ryujinx.Ui.Widgets
if (mainNca == null)
{
- Logger.Error?.Print(LogClass.Application, "Extraction failed. The main NCA was not present in the selected file.");
+ Logger.Error?.Print(LogClass.Application, "Extraction failure. The main NCA is not present in the selected file.");
Gtk.Application.Invoke(delegate
{
- GtkDialog.CreateErrorDialog("Extraction failed. The main NCA was not present in the selected file.");
+ GtkDialog.CreateErrorDialog("Extraction failure. The main NCA is not present in the selected file.");
});
return;
@@ -314,7 +314,7 @@ namespace Ryujinx.Ui.Widgets
{
Title = "Ryujinx - NCA Section Extractor",
Icon = new Gdk.Pixbuf(Assembly.GetExecutingAssembly(), "Ryujinx.Ui.Resources.Logo_Ryujinx.png"),
- SecondaryText = "Extraction has completed successfully.",
+ SecondaryText = "Extraction completed successfully.",
WindowPosition = WindowPosition.Center
};
@@ -572,7 +572,7 @@ namespace Ryujinx.Ui.Widgets
}
catch (Exception e)
{
- GtkDialog.CreateErrorDialog($"Error purging shader cache {directory.Name}: {e}");
+ GtkDialog.CreateErrorDialog($"Error purging shader cache at {directory.Name}: {e}");
}
}
}
@@ -580,4 +580,4 @@ namespace Ryujinx.Ui.Widgets
warningDialog.Dispose();
}
}
-} \ No newline at end of file
+}
diff --git a/Ryujinx/Ui/Widgets/GtkDialog.cs b/Ryujinx/Ui/Widgets/GtkDialog.cs
index d8bad60f..3d19724d 100644
--- a/Ryujinx/Ui/Widgets/GtkDialog.cs
+++ b/Ryujinx/Ui/Widgets/GtkDialog.cs
@@ -78,7 +78,7 @@ namespace Ryujinx.Ui.Widgets
internal static bool CreateExitDialog()
{
- return CreateChoiceDialog("Ryujinx - Exit", "Are you sure you want to stop emulation?", "All unsaved data will be lost!");
+ return CreateChoiceDialog("Ryujinx - Exit", "Are you sure you want to close Ryujinx?", "All unsaved data will be lost!");
}
}
-} \ No newline at end of file
+}
diff --git a/Ryujinx/Ui/Windows/ControllerWindow.cs b/Ryujinx/Ui/Windows/ControllerWindow.cs
index 67c02a0b..8654fc6f 100644
--- a/Ryujinx/Ui/Windows/ControllerWindow.cs
+++ b/Ryujinx/Ui/Windows/ControllerWindow.cs
@@ -579,7 +579,7 @@ namespace Ryujinx.Ui.Windows
if (!_inputDevice.ActiveId.StartsWith("disabled"))
{
- GtkDialog.CreateErrorDialog("Some fields entered where invalid and therefore your config was not saved.");
+ GtkDialog.CreateErrorDialog("Invalid data detected in one or more fields; the configuration was not saved.");
}
return null;
@@ -959,4 +959,4 @@ namespace Ryujinx.Ui.Windows
Dispose();
}
}
-} \ No newline at end of file
+}
diff --git a/Ryujinx/Ui/Windows/DlcWindow.cs b/Ryujinx/Ui/Windows/DlcWindow.cs
index 13a63088..458b0900 100644
--- a/Ryujinx/Ui/Windows/DlcWindow.cs
+++ b/Ryujinx/Ui/Windows/DlcWindow.cs
@@ -160,7 +160,7 @@ namespace Ryujinx.Ui.Windows
if (!containsDlc)
{
- GtkDialog.CreateErrorDialog("The specified file does not contain a DLC for the selected title!");
+ GtkDialog.CreateErrorDialog("The specified file does not contain DLC for the selected title!");
}
}
}
@@ -250,4 +250,4 @@ namespace Ryujinx.Ui.Windows
Dispose();
}
}
-} \ No newline at end of file
+}