From 3b4446d600bbda605d99fd73eb37fd970f198a8b Mon Sep 17 00:00:00 2001 From: SoulRepo Date: Mon, 30 Sep 2019 19:49:18 -0400 Subject: [PATCH] Update GamesWindow.xaml.cs --- UWPHook/GamesWindow.xaml.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/UWPHook/GamesWindow.xaml.cs b/UWPHook/GamesWindow.xaml.cs index 72149d6..5d0af11 100644 --- a/UWPHook/GamesWindow.xaml.cs +++ b/UWPHook/GamesWindow.xaml.cs @@ -119,7 +119,7 @@ namespace UWPHook { grid.IsEnabled = true; progressBar.Visibility = Visibility.Collapsed; - MessageBox.Show("Your apps were successfuly exported, please restart Steam in order to see your apps in it.", "UWPHook", MessageBoxButton.OK, MessageBoxImage.Information); + MessageBox.Show("Your apps were successfuly exported, please restart Steam in order to see your apps.", "UWPHook", MessageBoxButton.OK, MessageBoxImage.Information); } private void BwrSave_DoWork(object sender, DoWorkEventArgs e) @@ -150,7 +150,7 @@ namespace UWPHook //If it's a short VDF, let's just overwrite it if (ex.GetType() != typeof(VDFTooShortException)) { - throw new Exception("Error trying to load existing Steam shortcuts." + Environment.NewLine + ex.Message); + throw new Exception("Error: Program failed to load existing Steam shortcuts." + Environment.NewLine + ex.Message); } } @@ -184,13 +184,13 @@ namespace UWPHook } catch (Exception ex) { - throw new Exception("Error while trying to write your Steam shortcuts" + Environment.NewLine + ex.Message); + throw new Exception("Error: Program failed while trying to write your Steam shortcuts" + Environment.NewLine + ex.Message); } } } catch (Exception ex) { - MessageBox.Show("Error exporting your games:" + Environment.NewLine + ex.Message + ex.StackTrace); + MessageBox.Show("Error: Program failed exporting your games:" + Environment.NewLine + ex.Message + ex.StackTrace); } } } @@ -301,4 +301,4 @@ namespace UWPHook window.ShowDialog(); } } -} \ No newline at end of file +}