diff --git a/Source/LibationAvalonia/ViewModels/ProcessBookViewModel.cs b/Source/LibationAvalonia/ViewModels/ProcessBookViewModel.cs index 16445922..908ee707 100644 --- a/Source/LibationAvalonia/ViewModels/ProcessBookViewModel.cs +++ b/Source/LibationAvalonia/ViewModels/ProcessBookViewModel.cs @@ -76,9 +76,9 @@ namespace LibationAvalonia.ViewModels { ProcessBookResult.Success => "Finished", ProcessBookResult.Cancelled => "Cancelled", - ProcessBookResult.ValidationFail => "Validion fail", + ProcessBookResult.ValidationFail => "Validation fail", ProcessBookResult.FailedRetry => "Error, will retry later", - ProcessBookResult.FailedSkip => "Error, Skippping", + ProcessBookResult.FailedSkip => "Error, Skipping", ProcessBookResult.FailedAbort => "Error, Abort", ProcessBookResult.LicenseDenied => "License Denied", ProcessBookResult.LicenseDeniedPossibleOutage => "Possible Service Interruption", diff --git a/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs b/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs index 3254f5d0..9f840338 100644 --- a/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs +++ b/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs @@ -65,9 +65,9 @@ namespace LibationWinForms.ProcessQueue ProcessBookResult.Success => ("Finished", ProcessBookStatus.Completed), ProcessBookResult.Cancelled => ("Cancelled", ProcessBookStatus.Cancelled), ProcessBookResult.FailedRetry => ("Error, will retry later", ProcessBookStatus.Failed), - ProcessBookResult.FailedSkip => ("Error, Skippping", ProcessBookStatus.Failed), + ProcessBookResult.FailedSkip => ("Error, Skipping", ProcessBookStatus.Failed), ProcessBookResult.FailedAbort => ("Error, Abort", ProcessBookStatus.Failed), - ProcessBookResult.ValidationFail => ("Validion fail", ProcessBookStatus.Failed), + ProcessBookResult.ValidationFail => ("Validation fail", ProcessBookStatus.Failed), ProcessBookResult.LicenseDenied => ("License Denied", ProcessBookStatus.Failed), ProcessBookResult.LicenseDeniedPossibleOutage => ("Possible Service Interruption", ProcessBookStatus.Failed), _ => ("UNKNOWN", ProcessBookStatus.Failed),