147 lines
5.7 KiB
C#
147 lines
5.7 KiB
C#
// <auto-generated />
|
|
namespace Microsoft.AspNet.Razor.Runtime
|
|
{
|
|
using System.Globalization;
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
|
|
internal static class Resources
|
|
{
|
|
private static readonly ResourceManager _resourceManager
|
|
= new ResourceManager("Microsoft.AspNet.Razor.Runtime.Resources", typeof(Resources).GetTypeInfo().Assembly);
|
|
|
|
/// <summary>
|
|
/// Invalid tag helper directive look up text '{0}'. The correct look up text formats are:
|
|
/// "assemblyName"
|
|
/// "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 formats are:
|
|
/// "assemblyName"
|
|
/// "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"); }
|
|
}
|
|
|
|
/// <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>
|
|
/// Parameter {0} must not contain null tag names.
|
|
/// </summary>
|
|
internal static string TagNameAttribute_AdditionalTagsCannotContainNull
|
|
{
|
|
get { return GetString("TagNameAttribute_AdditionalTagsCannotContainNull"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parameter {0} must not contain null tag names.
|
|
/// </summary>
|
|
internal static string FormatTagNameAttribute_AdditionalTagsCannotContainNull(object p0)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("TagNameAttribute_AdditionalTagsCannotContainNull"), 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);
|
|
}
|
|
|
|
private static string GetString(string name, params string[] formatterNames)
|
|
{
|
|
var value = _resourceManager.GetString(name);
|
|
|
|
System.Diagnostics.Debug.Assert(value != null);
|
|
|
|
if (formatterNames != null)
|
|
{
|
|
for (var i = 0; i < formatterNames.Length; i++)
|
|
{
|
|
value = value.Replace("{" + formatterNames[i] + "}", "{" + i + "}");
|
|
}
|
|
}
|
|
|
|
return value;
|
|
}
|
|
}
|
|
}
|