Updating designer files by re-running build resx

This commit is contained in:
Pranav K 2014-06-16 16:27:30 -07:00
parent 85bd056780
commit fdbac041f9
3 changed files with 9 additions and 15 deletions

View File

@ -1002,7 +1002,7 @@ namespace Microsoft.AspNet.Mvc.Core
return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationTypeMustBeUnique"), p0); return string.Format(CultureInfo.CurrentCulture, GetString("UnobtrusiveJavascript_ValidationTypeMustBeUnique"), p0);
} }
/// </summary> /// <summary>
/// Cannot return null from an action method with a return type of '{0}'. /// Cannot return null from an action method with a return type of '{0}'.
/// </summary> /// </summary>
internal static string ActionResult_ActionReturnValueCannotBeNull internal static string ActionResult_ActionReturnValueCannotBeNull

View File

@ -379,18 +379,15 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
} }
/// <summary> /// <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> /// </summary>
internal static string DataAnnotationsModelMetadataProvider_UnknownProperty internal static string DataAnnotationsModelMetadataProvider_UnknownProperty
{ {
get get { return GetString("DataAnnotationsModelMetadataProvider_UnknownProperty"); }
{
return GetString("DataAnnotationsModelMetadataProvider_UnknownProperty");
}
} }
/// <summary> /// <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> /// </summary>
internal static string FormatDataAnnotationsModelMetadataProvider_UnknownProperty(object p0, object p1) internal static string FormatDataAnnotationsModelMetadataProvider_UnknownProperty(object p0, object p1)
{ {
@ -398,18 +395,15 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
} }
/// <summary> /// <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> /// </summary>
internal static string DataAnnotationsModelMetadataProvider_UnreadableProperty internal static string DataAnnotationsModelMetadataProvider_UnreadableProperty
{ {
get get { return GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty"); }
{
return GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty");
}
} }
/// <summary> /// <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> /// </summary>
internal static string FormatDataAnnotationsModelMetadataProvider_UnreadableProperty(object p0, object p1) internal static string FormatDataAnnotationsModelMetadataProvider_UnreadableProperty(object p0, object p1)
{ {

View File

@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc.Razor.Host
} }
/// <summary> /// <summary>
/// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} &lt;TypeName&gt; &lt;PropertyName&gt;'. /// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} &lt;Type Name&gt; &lt;Property Name&gt;'.
/// </summary> /// </summary>
internal static string MvcRazorCodeParser_InjectDirectivePropertyNameRequired internal static string MvcRazorCodeParser_InjectDirectivePropertyNameRequired
{ {
@ -35,7 +35,7 @@ namespace Microsoft.AspNet.Mvc.Razor.Host
} }
/// <summary> /// <summary>
/// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} &lt;TypeName&gt; &lt;PropertyName&gt;'. /// A property name must be specified when using the '{0}' statement. Format for a '{0}' statement is '@{0} &lt;Type Name&gt; &lt;Property Name&gt;'.
/// </summary> /// </summary>
internal static string FormatMvcRazorCodeParser_InjectDirectivePropertyNameRequired(object p0) internal static string FormatMvcRazorCodeParser_InjectDirectivePropertyNameRequired(object p0)
{ {