From 4ce1d2a3706ee2cd2cc4b426d279cab74ea563e9 Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 6 Mar 2026 09:28:12 +0100 Subject: [PATCH] Add RejectionInfo1ForConfirmation extension method Introduced a new extension method, RejectionInfo1ForConfirmation, to the Extensions class in Resource.cs. This method retrieves the localized string for "RejectionInfo1ForConfirmation" from an IStringLocalizer instance, providing functionality similar to the existing RejectionInfo1 method. --- EnvelopeGenerator.Application/Resources/Resource.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/EnvelopeGenerator.Application/Resources/Resource.cs b/EnvelopeGenerator.Application/Resources/Resource.cs index 18585f98..06a29276 100644 --- a/EnvelopeGenerator.Application/Resources/Resource.cs +++ b/EnvelopeGenerator.Application/Resources/Resource.cs @@ -274,6 +274,13 @@ public static class Extensions /// public static string RejectionInfo1(this IStringLocalizer localizer) => localizer[nameof(RejectionInfo1)].Value; + /// + /// + /// + /// + /// + public static string RejectionInfo1ForConfirmation(this IStringLocalizer localizer) => localizer[nameof(RejectionInfo1ForConfirmation)].Value; + /// /// ///