From 40890f242a39a5e765e64fde795e2f1a98fa852b Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Wed, 19 Mar 2025 14:16:32 -0600 Subject: [PATCH] Fix spelling errors --- Source/LibationAvalonia/ViewModels/ProcessBookViewModel.cs | 4 ++-- Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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),