127 lines
4.7 KiB
C#
127 lines
4.7 KiB
C#
// <auto-generated />
|
|
namespace Microsoft.AspNet.Mvc.Razor.Host
|
|
{
|
|
using System.Globalization;
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
|
|
internal static class Resources
|
|
{
|
|
private static readonly ResourceManager _resourceManager
|
|
= new ResourceManager("Microsoft.AspNet.Mvc.Razor.Host.Resources", typeof(Resources).GetTypeInfo().Assembly);
|
|
|
|
/// <summary>
|
|
/// Value cannot be null or empty.
|
|
/// </summary>
|
|
internal static string ArgumentCannotBeNullOrEmpy
|
|
{
|
|
get { return GetString("ArgumentCannotBeNullOrEmpy"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Value cannot be null or empty.
|
|
/// </summary>
|
|
internal static string FormatArgumentCannotBeNullOrEmpy()
|
|
{
|
|
return GetString("ArgumentCannotBeNullOrEmpy");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Argument must be an instance of '{0}'.
|
|
/// </summary>
|
|
internal static string ArgumentMustBeOfType
|
|
{
|
|
get { return GetString("ArgumentMustBeOfType"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Argument must be an instance of '{0}'.
|
|
/// </summary>
|
|
internal static string FormatArgumentMustBeOfType(object p0)
|
|
{
|
|
return string.Format(CultureInfo.CurrentCulture, GetString("ArgumentMustBeOfType"), p0);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The 'inherits' keyword is not allowed when a '{0}' keyword is used.
|
|
/// </summary>
|
|
internal static string MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword
|
|
{
|
|
get { return 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);
|
|
}
|
|
|
|
/// <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"); }
|
|
}
|
|
|
|
/// <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);
|
|
}
|
|
|
|
/// <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"); }
|
|
}
|
|
|
|
/// <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);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Only one '{0}' statement is allowed in a file.
|
|
/// </summary>
|
|
internal static string MvcRazorCodeParser_OnlyOneModelStatementIsAllowed
|
|
{
|
|
get { return 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);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|