File: artifacts\obj\dotnet-user-jwts\Release\net11.0\Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Resources.cs
Project: src\src\Tools\dotnet-user-jwts\src\dotnet-user-jwts.csproj (dotnet-user-jwts)
// <auto-generated>
using System.Reflection;
 
 
namespace Microsoft.AspNetCore.Authentication.JwtBearer.Tools
{
    internal static partial class Resources
    {
        private static global::System.Resources.ResourceManager s_resourceManager;
        internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(Resources)));
        internal static global::System.Globalization.CultureInfo Culture { get; set; }
#if !NET20
        [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
#endif
        internal static string GetResourceString(string resourceKey, string defaultValue = null) =>  ResourceManager.GetString(resourceKey, Culture);
 
        private static string GetResourceString(string resourceKey, string[] formatterNames)
        {
           var value = GetResourceString(resourceKey);
           if (formatterNames != null)
           {
               for (var i = 0; i < formatterNames.Length; i++)
               {
                   value = value.Replace("{" + formatterNames[i] + "}", "{" + i + "}");
               }
           }
           return value;
        }
 
        /// <summary>Canceled! No JWTs were deleted.</summary>
        internal static string @ClearCommand_Canceled => GetResourceString("ClearCommand_Canceled");
        /// <summary>Deleted {0} token(s) from '{1}' successfully.</summary>
        internal static string @ClearCommand_Confirmed => GetResourceString("ClearCommand_Confirmed");
        /// <summary>Deleted {0} token(s) from '{1}' successfully.</summary>
        internal static string FormatClearCommand_Confirmed(object p0, object p1)
           => string.Format(Culture, GetResourceString("ClearCommand_Confirmed"), p0, p1);
 
        /// <summary>Remove all issued JWTs for a project</summary>
        internal static string @ClearCommand_Description => GetResourceString("ClearCommand_Description");
        /// <summary>Don't prompt for confirmation before deleting JWTs.</summary>
        internal static string @ClearCommand_ForceOption_Description => GetResourceString("ClearCommand_ForceOption_Description");
        /// <summary>There are no JWTs to delete from '{0}'.</summary>
        internal static string @ClearCommand_NoJwtsRemoved => GetResourceString("ClearCommand_NoJwtsRemoved");
        /// <summary>There are no JWTs to delete from '{0}'.</summary>
        internal static string FormatClearCommand_NoJwtsRemoved(object p0)
           => string.Format(Culture, GetResourceString("ClearCommand_NoJwtsRemoved"), p0);
 
        /// <summary>Are you sure you want to delete {0} JWT(s) for '{1}'?</summary>
        internal static string @ClearCommand_Permission => GetResourceString("ClearCommand_Permission");
        /// <summary>Are you sure you want to delete {0} JWT(s) for '{1}'?</summary>
        internal static string FormatClearCommand_Permission(object p0, object p1)
           => string.Format(Culture, GetResourceString("ClearCommand_Permission"), p0, p1);
 
        /// <summary>The audiences to create the JWT for. Defaults to the URLs configured in the project's launchSettings.json.</summary>
        internal static string @CreateCommand_AudienceOption_Description => GetResourceString("CreateCommand_AudienceOption_Description");
        /// <summary>Claims to add to the JWT. Specify once for each claim in the format "name=value".</summary>
        internal static string @CreateCommand_ClaimOption_Description => GetResourceString("CreateCommand_ClaimOption_Description");
        /// <summary>New JWT saved with ID '{id}'.</summary>
        internal static string @CreateCommand_Confirmed => GetResourceString("CreateCommand_Confirmed");
        /// <summary>New JWT saved with ID '{id}'.</summary>
        internal static string FormatCreateCommand_Confirmed(object id)
           => string.Format(Culture, GetResourceString("CreateCommand_Confirmed", new [] { "id" }), id);
 
        /// <summary>Issue a new JSON Web Token</summary>
        internal static string @CreateCommand_Description => GetResourceString("CreateCommand_Description");
        /// <summary>The UTC date &amp; time the JWT should expire in the format 'yyyy-MM-dd [[[[HH:mm]]:ss]]'. Defaults to 3 months after the --not-before date. Do not use this option in conjunction with the --valid-for option.</summary>
        internal static string @CreateCommand_ExpiresOnOption_Description => GetResourceString("CreateCommand_ExpiresOnOption_Description");
        /// <summary>Invalid Appsettings file extension. Ensure file extension is .json.</summary>
        internal static string @CreateCommand_InvalidAppsettingsFile_Error => GetResourceString("CreateCommand_InvalidAppsettingsFile_Error");
        /// <summary>Could not find Appsettings file in '{0}'. Check the filename and that the file exists.</summary>
        internal static string @CreateCommand_AppsettingsFileNotFound_Error => GetResourceString("CreateCommand_AppsettingsFileNotFound_Error");
        /// <summary>Could not find Appsettings file in '{0}'. Check the filename and that the file exists.</summary>
        internal static string FormatCreateCommand_AppsettingsFileNotFound_Error(object p0)
           => string.Format(Culture, GetResourceString("CreateCommand_AppsettingsFileNotFound_Error"), p0);
 
        /// <summary>Malformed claims supplied. Ensure each claim is in the format "name=value".</summary>
        internal static string @CreateCommand_InvalidClaims_Error => GetResourceString("CreateCommand_InvalidClaims_Error");
        /// <summary>The date provided for '{type}' could not be parsed. Dates must consist of a date and can include an optional timestamp.</summary>
        internal static string @CreateCommand_InvalidDate_Error => GetResourceString("CreateCommand_InvalidDate_Error");
        /// <summary>The date provided for '{type}' could not be parsed. Dates must consist of a date and can include an optional timestamp.</summary>
        internal static string FormatCreateCommand_InvalidDate_Error(object type)
           => string.Format(Culture, GetResourceString("CreateCommand_InvalidDate_Error", new [] { "type" }), type);
 
        /// <summary>'--valid-for' and '--expires-on' are mutually exclusive flags. Provide either option but not both.</summary>
        internal static string @CreateCommand_InvalidExpiresOn_Error => GetResourceString("CreateCommand_InvalidExpiresOn_Error");
        /// <summary>The period provided for '{0}' could not be parsed. Ensure you use a format like '10d', '22h', '45s' etc.</summary>
        internal static string @CreateCommand_InvalidPeriod_Error => GetResourceString("CreateCommand_InvalidPeriod_Error");
        /// <summary>The period provided for '{0}' could not be parsed. Ensure you use a format like '10d', '22h', '45s' etc.</summary>
        internal static string FormatCreateCommand_InvalidPeriod_Error(object p0)
           => string.Format(Culture, GetResourceString("CreateCommand_InvalidPeriod_Error"), p0);
 
        /// <summary>The issuer of the JWT. Defaults to 'dotnet-user-jwts'.</summary>
        internal static string @CreateCommand_IssuerOption_Description => GetResourceString("CreateCommand_IssuerOption_Description");
        /// <summary>The name of the user to create the JWT for. Defaults to the current environment user.</summary>
        internal static string @CreateCommand_NameOption_Description => GetResourceString("CreateCommand_NameOption_Description");
        /// <summary>Could not determine the project's URL. Please specify an audience for the JWT using the --audience option or ensure that launchSettings.json is configured properly.</summary>
        internal static string @CreateCommand_NoAudience_Error => GetResourceString("CreateCommand_NoAudience_Error");
        /// <summary>The UTC date &amp; time the JWT should not be valid before in the format 'yyyy-MM-dd [[HH:mm[[:ss]]]]'. Defaults to the date &amp; time the JWT is created.</summary>
        internal static string @CreateCommand_NotBeforeOption_Description => GetResourceString("CreateCommand_NotBeforeOption_Description");
        /// <summary>The format to use for displaying output from the command. Can be one of 'default', 'token', or 'json'.</summary>
        internal static string @CreateCommand_OutputOption_Description => GetResourceString("CreateCommand_OutputOption_Description");
        /// <summary>A role claim to add to the JWT. Specify once for each role.</summary>
        internal static string @CreateCommand_RoleOption_Description => GetResourceString("CreateCommand_RoleOption_Description");
        /// <summary>The scheme name to use for the generated token. Defaults to 'Bearer'.</summary>
        internal static string @CreateCommand_SchemeOption_Description => GetResourceString("CreateCommand_SchemeOption_Description");
        /// <summary>A scope claim to add to the JWT. Specify once for each scope.</summary>
        internal static string @CreateCommand_ScopeOption_Description => GetResourceString("CreateCommand_ScopeOption_Description");
        /// <summary>The period the JWT should expire after. Specify using a number followed by a duration type like 'd' for days, 'h' for hours, 'm' for minutes, and 's' for seconds, e.g. '365d'. Do not use this option in conjunction with the --expires-on option.</summary>
        internal static string @CreateCommand_ValidForOption_Description => GetResourceString("CreateCommand_ValidForOption_Description");
        /// <summary>The appSettings configuration file to add the test scheme to.</summary>
        internal static string @CreateCommand_appsettingsFileOption_Description => GetResourceString("CreateCommand_appsettingsFileOption_Description");
        /// <summary>Audience(s)</summary>
        internal static string @JwtPrint_Audiences => GetResourceString("JwtPrint_Audiences");
        /// <summary>Compact Token</summary>
        internal static string @JwtPrint_CompactToken => GetResourceString("JwtPrint_CompactToken");
        /// <summary>Custom Claims</summary>
        internal static string @JwtPrint_CustomClaims => GetResourceString("JwtPrint_CustomClaims");
        /// <summary>Expires On</summary>
        internal static string @JwtPrint_ExpiresOn => GetResourceString("JwtPrint_ExpiresOn");
        /// <summary>ID</summary>
        internal static string @JwtPrint_Id => GetResourceString("JwtPrint_Id");
        /// <summary>Issued On</summary>
        internal static string @JwtPrint_IssuedOn => GetResourceString("JwtPrint_IssuedOn");
        /// <summary>Issuer</summary>
        internal static string @JwtPrint_Issuer => GetResourceString("JwtPrint_Issuer");
        /// <summary>Name</summary>
        internal static string @JwtPrint_Name => GetResourceString("JwtPrint_Name");
        /// <summary>Not Before</summary>
        internal static string @JwtPrint_NotBefore => GetResourceString("JwtPrint_NotBefore");
        /// <summary>Roles</summary>
        internal static string @JwtPrint_Roles => GetResourceString("JwtPrint_Roles");
        /// <summary>Scheme</summary>
        internal static string @JwtPrint_Scheme => GetResourceString("JwtPrint_Scheme");
        /// <summary>Scopes</summary>
        internal static string @JwtPrint_Scopes => GetResourceString("JwtPrint_Scopes");
        /// <summary>Appsettings File</summary>
        internal static string @JwtPrint_appsettingsFile => GetResourceString("JwtPrint_appsettingsFile");
        /// <summary>Token</summary>
        internal static string @JwtPrint_Token => GetResourceString("JwtPrint_Token");
        /// <summary>Token Header</summary>
        internal static string @JwtPrint_TokenHeader => GetResourceString("JwtPrint_TokenHeader");
        /// <summary>Token Payload</summary>
        internal static string @JwtPrint_TokenPayload => GetResourceString("JwtPrint_TokenPayload");
        /// <summary>Key reset canceled.</summary>
        internal static string @KeyCommand_Canceled => GetResourceString("KeyCommand_Canceled");
        /// <summary>Signing Key: '{0}'</summary>
        internal static string @KeyCommand_Confirmed => GetResourceString("KeyCommand_Confirmed");
        /// <summary>Signing Key: '{0}'</summary>
        internal static string FormatKeyCommand_Confirmed(object p0)
           => string.Format(Culture, GetResourceString("KeyCommand_Confirmed"), p0);
 
        /// <summary>Display or reset the signing key used to issue JWTs</summary>
        internal static string @KeyCommand_Description => GetResourceString("KeyCommand_Description");
        /// <summary>Don't prompt for confirmation before resetting the signing key.</summary>
        internal static string @KeyCommand_ForceOption_Description => GetResourceString("KeyCommand_ForceOption_Description");
        /// <summary>New signing key created: '{0}'</summary>
        internal static string @KeyCommand_KeyCreated => GetResourceString("KeyCommand_KeyCreated");
        /// <summary>New signing key created: '{0}'</summary>
        internal static string FormatKeyCommand_KeyCreated(object p0)
           => string.Format(Culture, GetResourceString("KeyCommand_KeyCreated"), p0);
 
        /// <summary>Signing key for JWTs was not found. One will be created automatically when the first JWT is created, or you can force creation of a key with the --reset option.</summary>
        internal static string @KeyCommand_KeyNotFound => GetResourceString("KeyCommand_KeyNotFound");
        /// <summary>Are you sure you want to reset the JWT signing key? This will invalidate all JWTs previously issued for this project.</summary>
        internal static string @KeyCommand_Permission => GetResourceString("KeyCommand_Permission");
        /// <summary>Reset the signing key. This will invalidate all previously issued JWTs for this project.</summary>
        internal static string @KeyCommand_ResetOption_Description => GetResourceString("KeyCommand_ResetOption_Description");
        /// <summary>The scheme name associated with the signing key to be reset or displayed. Defaults to 'Bearer'.</summary>
        internal static string @KeyCommand_SchemeOption_Description => GetResourceString("KeyCommand_SchemeOption_Description");
        /// <summary>Lists the JWTs issued for the project</summary>
        internal static string @ListCommand_Description => GetResourceString("ListCommand_Description");
        /// <summary>No JWTs created yet!</summary>
        internal static string @ListCommand_NoJwts => GetResourceString("ListCommand_NoJwts");
        /// <summary>Project: '{0}'</summary>
        internal static string @ListCommand_Project => GetResourceString("ListCommand_Project");
        /// <summary>Project: '{0}'</summary>
        internal static string FormatListCommand_Project(object p0)
           => string.Format(Culture, GetResourceString("ListCommand_Project"), p0);
 
        /// <summary>Indicates whether JWT base64 strings should be shown.</summary>
        internal static string @ListCommand_ShowTokenOption_Description => GetResourceString("ListCommand_ShowTokenOption_Description");
        /// <summary>User Secrets ID: '{0}'</summary>
        internal static string @ListCommand_UserSecretsId => GetResourceString("ListCommand_UserSecretsId");
        /// <summary>User Secrets ID: '{0}'</summary>
        internal static string FormatListCommand_UserSecretsId(object p0)
           => string.Format(Culture, GetResourceString("ListCommand_UserSecretsId"), p0);
 
        /// <summary>Found JWT with ID '{0}'.</summary>
        internal static string @PrintCommand_Confirmed => GetResourceString("PrintCommand_Confirmed");
        /// <summary>Found JWT with ID '{0}'.</summary>
        internal static string FormatPrintCommand_Confirmed(object p0)
           => string.Format(Culture, GetResourceString("PrintCommand_Confirmed"), p0);
 
        /// <summary>Print the details of a given JWT</summary>
        internal static string @PrintCommand_Description => GetResourceString("PrintCommand_Description");
        /// <summary>The ID of the JWT to print.</summary>
        internal static string @PrintCommand_IdArgument_Description => GetResourceString("PrintCommand_IdArgument_Description");
        /// <summary>No token with ID '{0}' found.</summary>
        internal static string @PrintCommand_NoJwtFound => GetResourceString("PrintCommand_NoJwtFound");
        /// <summary>No token with ID '{0}' found.</summary>
        internal static string FormatPrintCommand_NoJwtFound(object p0)
           => string.Format(Culture, GetResourceString("PrintCommand_NoJwtFound"), p0);
 
        /// <summary>Whether to show all details associated with the JWT.</summary>
        internal static string @PrintCommand_ShowAllOption_Description => GetResourceString("PrintCommand_ShowAllOption_Description");
        /// <summary>No project found at `-p|--project` path or current directory.</summary>
        internal static string @ProjectOption_ProjectNotFound => GetResourceString("ProjectOption_ProjectNotFound");
        /// <summary>Project does not contain a user secrets ID.</summary>
        internal static string @ProjectOption_SercretIdNotFound => GetResourceString("ProjectOption_SercretIdNotFound");
        /// <summary>The path of the project to operate on. Defaults to the project in the current directory.</summary>
        internal static string @ProjectOption_Description => GetResourceString("ProjectOption_Description");
        /// <summary>Deleted JWT with ID '{0}'.</summary>
        internal static string @RemoveCommand_Confirmed => GetResourceString("RemoveCommand_Confirmed");
        /// <summary>Deleted JWT with ID '{0}'.</summary>
        internal static string FormatRemoveCommand_Confirmed(object p0)
           => string.Format(Culture, GetResourceString("RemoveCommand_Confirmed"), p0);
 
        /// <summary>Remove a given JWT</summary>
        internal static string @RemoveCommand_Description => GetResourceString("RemoveCommand_Description");
        /// <summary>The ID of the JWT to delete.</summary>
        internal static string @RemoveCommand_IdArgument_Description => GetResourceString("RemoveCommand_IdArgument_Description");
        /// <summary>No JWT with ID '{0}' found.</summary>
        internal static string @RemoveCommand_NoJwtFound => GetResourceString("RemoveCommand_NoJwtFound");
        /// <summary>No JWT with ID '{0}' found.</summary>
        internal static string FormatRemoveCommand_NoJwtFound(object p0)
           => string.Format(Culture, GetResourceString("RemoveCommand_NoJwtFound"), p0);
 
        /// <summary>The specified appsettings file is invalid. Please provide a valid JSON file.</summary>
        internal static string @RemoveCommand_InvalidAppsettingsFile_Error => GetResourceString("RemoveCommand_InvalidAppsettingsFile_Error");
        /// <summary>Could not find Appsettings file '{0}'. Check the filename and that the file exists.</summary>
        internal static string @RemoveCommand_AppsettingsFileNotFound_Error => GetResourceString("RemoveCommand_AppsettingsFileNotFound_Error");
        /// <summary>Could not find Appsettings file '{0}'. Check the filename and that the file exists.</summary>
        internal static string FormatRemoveCommand_AppsettingsFileNotFound_Error(object p0)
           => string.Format(Culture, GetResourceString("RemoveCommand_AppsettingsFileNotFound_Error"), p0);
 
        /// <summary>The issuer associated with the signing key to be reset or displayed. Defaults to 'dotnet-user-jwts'.</summary>
        internal static string @KeyCommand_IssuerOption_Description => GetResourceString("KeyCommand_IssuerOption_Description");
 
    }
}