Updating designer files by re-running build resx
This commit is contained in:
parent
85bd056780
commit
fdbac041f9
|
|
@ -1002,7 +1002,7 @@ namespace Microsoft.AspNet.Mvc.Core
|
|||
return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationTypeMustBeUnique"), p0);
|
||||
}
|
||||
|
||||
/// </summary>
|
||||
/// <summary>
|
||||
/// Cannot return null from an action method with a return type of '{0}'.
|
||||
/// </summary>
|
||||
internal static string ActionResult_ActionReturnValueCannotBeNull
|
||||
|
|
|
|||
|
|
@ -379,18 +379,15 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not exist..
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not exist.
|
||||
/// </summary>
|
||||
internal static string DataAnnotationsModelMetadataProvider_UnknownProperty
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetString("DataAnnotationsModelMetadataProvider_UnknownProperty");
|
||||
}
|
||||
get { return GetString("DataAnnotationsModelMetadataProvider_UnknownProperty"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not exist..
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not exist.
|
||||
/// </summary>
|
||||
internal static string FormatDataAnnotationsModelMetadataProvider_UnknownProperty(object p0, object p1)
|
||||
{
|
||||
|
|
@ -398,18 +395,15 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public 'get' method..
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public 'get' method.
|
||||
/// </summary>
|
||||
internal static string DataAnnotationsModelMetadataProvider_UnreadableProperty
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty");
|
||||
}
|
||||
get { return GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public 'get' method..
|
||||
/// {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public 'get' method.
|
||||
/// </summary>
|
||||
internal static string FormatDataAnnotationsModelMetadataProvider_UnreadableProperty(object p0, object p1)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc.Razor.Host
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} <TypeName> <PropertyName>'.
|
||||
/// 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
|
||||
{
|
||||
|
|
@ -35,7 +35,7 @@ namespace Microsoft.AspNet.Mvc.Razor.Host
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} <TypeName> <PropertyName>'.
|
||||
/// 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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue