refactor(WebKey.Formate): Aktualisiert, um in der resx-Datei in alphabetischer Reihenfolge gruppieren zu können.

This commit is contained in:
Developer 02 2024-12-11 16:39:01 +01:00
parent 10a5adeeee
commit 15f3bd1bbd

View File

@ -44,15 +44,15 @@
public static class Formats
{
public static readonly string LockedTitle = "Locked{0}Title";
public static readonly string LockedTitle = nameof(LockedTitle) + "{0}";
public static readonly string LockedBody = "Locked{0}Body";
public static readonly string LockedBody = nameof(LockedBody) + "{0}";
public static readonly string LockedCodeLabel = "Locked{0}CodeLabel";
public static readonly string LockedCodeLabel = nameof(LockedCodeLabel) + "{0}";
public static readonly string LockedFooterTitle = "Locked{0}FooterTitle";
public static readonly string LockedFooterTitle = nameof(LockedFooterTitle) + "{0}";
public static readonly string LockedFooterBody = "Locked{0}FooterBody";
public static readonly string LockedFooterBody = nameof(LockedFooterBody) + "{0}";
}
public static string Format(this string st, object? arg0) => string.Format(st, arg0: arg0);