Update generated designer files
This commit is contained in:
parent
1bd31f42c0
commit
dbb682799e
|
|
@ -15,96 +15,84 @@ namespace Microsoft.AspNetCore.Mvc.Razor.Extensions
|
|||
/// </summary>
|
||||
internal static string ArgumentCannotBeNullOrEmpy
|
||||
{
|
||||
get { return GetString("ArgumentCannotBeNullOrEmpy"); }
|
||||
get => GetString("ArgumentCannotBeNullOrEmpy");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Value cannot be null or empty.
|
||||
/// </summary>
|
||||
internal static string FormatArgumentCannotBeNullOrEmpy()
|
||||
{
|
||||
return GetString("ArgumentCannotBeNullOrEmpy");
|
||||
}
|
||||
=> GetString("ArgumentCannotBeNullOrEmpy");
|
||||
|
||||
/// <summary>
|
||||
/// The 'inherits' keyword is not allowed when a '{0}' keyword is used.
|
||||
/// </summary>
|
||||
internal static string MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword
|
||||
{
|
||||
get { return GetString("MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword"); }
|
||||
get => GetString("MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The 'inherits' keyword is not allowed when a '{0}' keyword is used.
|
||||
/// </summary>
|
||||
internal static string FormatMvcRazorCodeParser_CannotHaveModelAndInheritsKeyword(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword"), p0);
|
||||
}
|
||||
=> string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword"), p0);
|
||||
|
||||
/// <summary>
|
||||
/// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} <Type Name> <Property Name>'.
|
||||
/// </summary>
|
||||
internal static string MvcRazorCodeParser_InjectDirectivePropertyNameRequired
|
||||
{
|
||||
get { return GetString("MvcRazorCodeParser_InjectDirectivePropertyNameRequired"); }
|
||||
get => GetString("MvcRazorCodeParser_InjectDirectivePropertyNameRequired");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} <Type Name> <Property Name>'.
|
||||
/// </summary>
|
||||
internal static string FormatMvcRazorCodeParser_InjectDirectivePropertyNameRequired(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_InjectDirectivePropertyNameRequired"), p0);
|
||||
}
|
||||
=> string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_InjectDirectivePropertyNameRequired"), p0);
|
||||
|
||||
/// <summary>
|
||||
/// The '{0}' keyword must be followed by a type name on the same line.
|
||||
/// </summary>
|
||||
internal static string MvcRazorCodeParser_KeywordMustBeFollowedByTypeName
|
||||
{
|
||||
get { return GetString("MvcRazorCodeParser_KeywordMustBeFollowedByTypeName"); }
|
||||
get => GetString("MvcRazorCodeParser_KeywordMustBeFollowedByTypeName");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The '{0}' keyword must be followed by a type name on the same line.
|
||||
/// </summary>
|
||||
internal static string FormatMvcRazorCodeParser_KeywordMustBeFollowedByTypeName(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_KeywordMustBeFollowedByTypeName"), p0);
|
||||
}
|
||||
=> string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_KeywordMustBeFollowedByTypeName"), p0);
|
||||
|
||||
/// <summary>
|
||||
/// Only one '{0}' statement is allowed in a file.
|
||||
/// </summary>
|
||||
internal static string MvcRazorCodeParser_OnlyOneModelStatementIsAllowed
|
||||
{
|
||||
get { return GetString("MvcRazorCodeParser_OnlyOneModelStatementIsAllowed"); }
|
||||
get => GetString("MvcRazorCodeParser_OnlyOneModelStatementIsAllowed");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Only one '{0}' statement is allowed in a file.
|
||||
/// </summary>
|
||||
internal static string FormatMvcRazorCodeParser_OnlyOneModelStatementIsAllowed(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_OnlyOneModelStatementIsAllowed"), p0);
|
||||
}
|
||||
=> string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorCodeParser_OnlyOneModelStatementIsAllowed"), p0);
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper property '{0}.{1}'. Dictionary values must not be of type '{2}'.
|
||||
/// </summary>
|
||||
internal static string MvcRazorParser_InvalidPropertyType
|
||||
{
|
||||
get { return GetString("MvcRazorParser_InvalidPropertyType"); }
|
||||
get => GetString("MvcRazorParser_InvalidPropertyType");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper property '{0}.{1}'. Dictionary values must not be of type '{2}'.
|
||||
/// </summary>
|
||||
internal static string FormatMvcRazorParser_InvalidPropertyType(object p0, object p1, object p2)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorParser_InvalidPropertyType"), p0, p1, p2);
|
||||
}
|
||||
=> string.Format(CultureInfo.CurrentCulture, GetString("MvcRazorParser_InvalidPropertyType"), p0, p1, p2);
|
||||
|
||||
private static string GetString(string name, params string[] formatterNames)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -10,501 +10,19 @@ namespace Microsoft.AspNetCore.Razor.Runtime
|
|||
private static readonly ResourceManager _resourceManager
|
||||
= new ResourceManager("Microsoft.AspNetCore.Razor.Runtime.Resources", typeof(Resources).GetTypeInfo().Assembly);
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper directive look up text '{0}'. The correct look up text format is: "typeName, assemblyName".
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorResolver_InvalidTagHelperLookupText
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorResolver_InvalidTagHelperLookupText"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper directive look up text '{0}'. The correct look up text format is: "typeName, assemblyName".
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorResolver_InvalidTagHelperLookupText(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorResolver_InvalidTagHelperLookupText"), p0);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cannot resolve TagHelper containing assembly '{0}'. Error: {1}
|
||||
/// </summary>
|
||||
internal static string TagHelperTypeResolver_CannotResolveTagHelperAssembly
|
||||
{
|
||||
get { return GetString("TagHelperTypeResolver_CannotResolveTagHelperAssembly"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cannot resolve TagHelper containing assembly '{0}'. Error: {1}
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperTypeResolver_CannotResolveTagHelperAssembly(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperTypeResolver_CannotResolveTagHelperAssembly"), p0, p1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tag helper directive assembly name cannot be null or empty.
|
||||
/// </summary>
|
||||
internal static string TagHelperTypeResolver_TagHelperAssemblyNameCannotBeEmptyOrNull
|
||||
{
|
||||
get { return GetString("TagHelperTypeResolver_TagHelperAssemblyNameCannotBeEmptyOrNull"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tag helper directive assembly name cannot be null or empty.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperTypeResolver_TagHelperAssemblyNameCannotBeEmptyOrNull()
|
||||
{
|
||||
return GetString("TagHelperTypeResolver_TagHelperAssemblyNameCannotBeEmptyOrNull");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Must call '{2}.{1}' before calling '{2}.{0}'.
|
||||
/// </summary>
|
||||
internal static string ScopeManager_EndCannotBeCalledWithoutACallToBegin
|
||||
{
|
||||
get { return GetString("ScopeManager_EndCannotBeCalledWithoutACallToBegin"); }
|
||||
get => GetString("ScopeManager_EndCannotBeCalledWithoutACallToBegin");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Must call '{2}.{1}' before calling '{2}.{0}'.
|
||||
/// </summary>
|
||||
internal static string FormatScopeManager_EndCannotBeCalledWithoutACallToBegin(object p0, object p1, object p2)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("ScopeManager_EndCannotBeCalledWithoutACallToBegin"), p0, p1, p2);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// {0} name cannot be null or whitespace.
|
||||
/// </summary>
|
||||
internal static string HtmlTargetElementAttribute_NameCannotBeNullOrWhitespace
|
||||
{
|
||||
get { return GetString("HtmlTargetElementAttribute_NameCannotBeNullOrWhitespace"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// {0} name cannot be null or whitespace.
|
||||
/// </summary>
|
||||
internal static string FormatHtmlTargetElementAttribute_NameCannotBeNullOrWhitespace(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("HtmlTargetElementAttribute_NameCannotBeNullOrWhitespace"), p0);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The value cannot be null or empty.
|
||||
/// </summary>
|
||||
internal static string ArgumentCannotBeNullOrEmpty
|
||||
{
|
||||
get { return GetString("ArgumentCannotBeNullOrEmpty"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The value cannot be null or empty.
|
||||
/// </summary>
|
||||
internal static string FormatArgumentCannotBeNullOrEmpty()
|
||||
{
|
||||
return GetString("ArgumentCannotBeNullOrEmpty");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Encountered an unexpected error when attempting to resolve tag helper directive '{0}' with value '{1}'. Error: {2}
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorResolver_EncounteredUnexpectedError
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorResolver_EncounteredUnexpectedError"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Encountered an unexpected error when attempting to resolve tag helper directive '{0}' with value '{1}'. Error: {2}
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorResolver_EncounteredUnexpectedError(object p0, object p1, object p2)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorResolver_EncounteredUnexpectedError"), p0, p1, p2);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tag helpers cannot target {0} name '{1}' because it contains a '{2}' character.
|
||||
/// </summary>
|
||||
internal static string HtmlTargetElementAttribute_InvalidName
|
||||
{
|
||||
get { return GetString("HtmlTargetElementAttribute_InvalidName"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tag helpers cannot target {0} name '{1}' because it contains a '{2}' character.
|
||||
/// </summary>
|
||||
internal static string FormatHtmlTargetElementAttribute_InvalidName(object p0, object p1, object p2)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("HtmlTargetElementAttribute_InvalidName"), p0, p1, p2);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper directive '{0}'. Cannot have multiple '{0}' directives on a page.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorResolver_InvalidTagHelperDirective
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorResolver_InvalidTagHelperDirective"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper directive '{0}'. Cannot have multiple '{0}' directives on a page.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorResolver_InvalidTagHelperDirective(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorResolver_InvalidTagHelperDirective"), p0);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorResolver_InvalidTagHelperPrefixValue
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorResolver_InvalidTagHelperPrefixValue"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorResolver_InvalidTagHelperPrefixValue(object p0, object p1, object p2)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorResolver_InvalidTagHelperPrefixValue"), p0, p1, p2);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Attribute
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_Attribute
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_Attribute"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Attribute
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_Attribute()
|
||||
{
|
||||
return GetString("TagHelperDescriptorFactory_Attribute");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// name
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_Name
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_Name"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// name
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_Name()
|
||||
{
|
||||
return GetString("TagHelperDescriptorFactory_Name");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// prefix
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_Prefix
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_Prefix"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// prefix
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_Prefix()
|
||||
{
|
||||
return GetString("TagHelperDescriptorFactory_Prefix");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tag
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_Tag
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_Tag"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tag
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_Tag()
|
||||
{
|
||||
return GetString("TagHelperDescriptorFactory_Tag");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. An '{2}' must not be associated with a property with no public setter unless its type implements '{3}'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributeNameAttribute
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributeNameAttribute"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. An '{2}' must not be associated with a property with no public setter unless its type implements '{3}'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributeNameAttribute(object p0, object p1, object p2, object p3)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributeNameAttribute"), p0, p1, p2, p3);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with {2} '{3}' because {2} contains a '{4}' character.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixCharacter
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixCharacter"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with {2} '{3}' because {2} contains a '{4}' character.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributeNameOrPrefixCharacter(object p0, object p1, object p2, object p3, object p4)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixCharacter"), p0, p1, p2, p3, p4);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with {2} '{3}' because {2} starts with '{4}'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixStart
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixStart"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with {2} '{3}' because {2} starts with '{4}'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributeNameOrPrefixStart(object p0, object p1, object p2, object p3, object p4)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixStart"), p0, p1, p2, p3, p4);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with a whitespace {2}.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixWhitespace
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixWhitespace"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with a whitespace {2}.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributeNameOrPrefixWhitespace(object p0, object p1, object p2)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributeNameOrPrefixWhitespace"), p0, p1, p2);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with a null or empty name.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributeNameNullOrEmpty
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributeNameNullOrEmpty"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. Tag helpers cannot bind to HTML attributes with a null or empty name.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributeNameNullOrEmpty(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributeNameNullOrEmpty"), p0, p1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. '{2}.{3}' must be null or empty if property has no public setter.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributeNameNotNullOrEmpty
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributeNameNotNullOrEmpty"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. '{2}.{3}' must be null or empty if property has no public setter.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributeNameNotNullOrEmpty(object p0, object p1, object p2, object p3)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributeNameNotNullOrEmpty"), p0, p1, p2, p3);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. '{2}.{3}' must not be null if property has no public setter and its type implements '{4}'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributePrefixNull
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributePrefixNull"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. '{2}.{3}' must not be null if property has no public setter and its type implements '{4}'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributePrefixNull(object p0, object p1, object p2, object p3, object p4)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributePrefixNull"), p0, p1, p2, p3, p4);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. '{2}.{3}' must be null unless property type implements '{4}'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidAttributePrefixNotNull
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidAttributePrefixNotNull"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid tag helper bound property '{0}.{1}'. '{2}.{3}' must be null unless property type implements '{4}'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidAttributePrefixNotNull(object p0, object p1, object p2, object p3, object p4)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidAttributePrefixNotNull"), p0, p1, p2, p3, p4);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid '{0}' tag name '{1}' for tag helper '{2}'. Tag helpers cannot restrict child elements that contain a '{3}' character.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidRestrictChildrenAttributeName
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidRestrictChildrenAttributeName"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid '{0}' tag name '{1}' for tag helper '{2}'. Tag helpers cannot restrict child elements that contain a '{3}' character.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidRestrictChildrenAttributeName(object p0, object p1, object p2, object p3)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidRestrictChildrenAttributeName"), p0, p1, p2, p3);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid '{0}' tag name for tag helper '{1}'. Name cannot be null or whitespace.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidRestrictChildrenAttributeNameNullWhitespace
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidRestrictChildrenAttributeNameNullWhitespace"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid '{0}' tag name for tag helper '{1}'. Name cannot be null or whitespace.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidRestrictChildrenAttributeNameNullWhitespace(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidRestrictChildrenAttributeNameNullWhitespace"), p0, p1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Parent Tag
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_ParentTag
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_ParentTag"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Parent Tag
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_ParentTag()
|
||||
{
|
||||
return GetString("TagHelperDescriptorFactory_ParentTag");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Argument must be an instance of '{0}'.
|
||||
/// </summary>
|
||||
internal static string ArgumentMustBeAnInstanceOf
|
||||
{
|
||||
get { return GetString("ArgumentMustBeAnInstanceOf"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Argument must be an instance of '{0}'.
|
||||
/// </summary>
|
||||
internal static string FormatArgumentMustBeAnInstanceOf(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("ArgumentMustBeAnInstanceOf"), p0);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Could not find matching ']' for required attribute '{0}'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_CouldNotFindMatchingEndBrace
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_CouldNotFindMatchingEndBrace"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Could not find matching ']' for required attribute '{0}'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_CouldNotFindMatchingEndBrace(object p0)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_CouldNotFindMatchingEndBrace"), p0);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid required attribute character '{0}' in required attribute '{1}'. Separate required attributes with commas.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidRequiredAttributeCharacter
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidRequiredAttributeCharacter"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid required attribute character '{0}' in required attribute '{1}'. Separate required attributes with commas.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidRequiredAttributeCharacter(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidRequiredAttributeCharacter"), p0, p1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required attribute '{0}' has mismatched quotes '{1}' around value.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidRequiredAttributeMismatchedQuotes
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidRequiredAttributeMismatchedQuotes"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required attribute '{0}' has mismatched quotes '{1}' around value.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidRequiredAttributeMismatchedQuotes(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidRequiredAttributeMismatchedQuotes"), p0, p1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required attribute '{0}' has a partial CSS operator. '{1}' must be followed by an equals.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_PartialRequiredAttributeOperator
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_PartialRequiredAttributeOperator"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required attribute '{0}' has a partial CSS operator. '{1}' must be followed by an equals.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_PartialRequiredAttributeOperator(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_PartialRequiredAttributeOperator"), p0, p1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid character '{0}' in required attribute '{1}'. Expected supported CSS operator or ']'.
|
||||
/// </summary>
|
||||
internal static string TagHelperDescriptorFactory_InvalidRequiredAttributeOperator
|
||||
{
|
||||
get { return GetString("TagHelperDescriptorFactory_InvalidRequiredAttributeOperator"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invalid character '{0}' in required attribute '{1}'. Expected supported CSS operator or ']'.
|
||||
/// </summary>
|
||||
internal static string FormatTagHelperDescriptorFactory_InvalidRequiredAttributeOperator(object p0, object p1)
|
||||
{
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("TagHelperDescriptorFactory_InvalidRequiredAttributeOperator"), p0, p1);
|
||||
}
|
||||
=> string.Format(CultureInfo.CurrentCulture, GetString("ScopeManager_EndCannotBeCalledWithoutACallToBegin"), p0, p1, p2);
|
||||
|
||||
private static string GetString(string name, params string[] formatterNames)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue