1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace System.Web.Mvc.Resources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class MvcResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal MvcResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("System.Web.Mvc.Resources.MvcResources", typeof(MvcResources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The current request for action '{0}' on controller type '{1}' is ambiguous between the following action methods:{2}.
/// </summary>
internal static string ActionMethodSelector_AmbiguousMatch {
get {
return ResourceManager.GetString("ActionMethodSelector_AmbiguousMatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} on type {1}.
/// </summary>
internal static string ActionMethodSelector_AmbiguousMatchType {
get {
return ResourceManager.GetString("ActionMethodSelector_AmbiguousMatchType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lookup for method '{0}' on controller type '{1}' failed because of an ambiguity between the following methods:{2}.
/// </summary>
internal static string AsyncActionMethodSelector_AmbiguousMethodMatch {
get {
return ResourceManager.GetString("AsyncActionMethodSelector_AmbiguousMethodMatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not locate a method named '{0}' on controller type {1}..
/// </summary>
internal static string AsyncActionMethodSelector_CouldNotFindMethod {
get {
return ResourceManager.GetString("AsyncActionMethodSelector_CouldNotFindMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The provided IAsyncResult has already been consumed..
/// </summary>
internal static string AsyncCommon_AsyncResultAlreadyConsumed {
get {
return ResourceManager.GetString("AsyncCommon_AsyncResultAlreadyConsumed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The controller of type '{0}' must subclass AsyncController or implement the IAsyncManagerContainer interface..
/// </summary>
internal static string AsyncCommon_ControllerMustImplementIAsyncManagerContainer {
get {
return ResourceManager.GetString("AsyncCommon_ControllerMustImplementIAsyncManagerContainer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The provided IAsyncResult is not valid for this method..
/// </summary>
internal static string AsyncCommon_InvalidAsyncResult {
get {
return ResourceManager.GetString("AsyncCommon_InvalidAsyncResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The timeout value must be non-negative or Timeout.Infinite..
/// </summary>
internal static string AsyncCommon_InvalidTimeout {
get {
return ResourceManager.GetString("AsyncCommon_InvalidTimeout", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AuthorizeAttribute cannot be used within a child action caching block..
/// </summary>
internal static string AuthorizeAttribute_CannotUseWithinChildActionCache {
get {
return ResourceManager.GetString("AuthorizeAttribute_CannotUseWithinChildActionCache", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The action '{0}' is accessible only by a child request..
/// </summary>
internal static string ChildActionOnlyAttribute_MustBeInChildRequest {
get {
return ResourceManager.GetString("ChildActionOnlyAttribute_MustBeInChildRequest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The field {0} must be a number..
/// </summary>
internal static string ClientDataTypeModelValidatorProvider_FieldMustBeNumeric {
get {
return ResourceManager.GetString("ClientDataTypeModelValidatorProvider_FieldMustBeNumeric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No route in the route table matches the supplied values..
/// </summary>
internal static string Common_NoRouteMatched {
get {
return ResourceManager.GetString("Common_NoRouteMatched", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Value cannot be null or empty..
/// </summary>
internal static string Common_NullOrEmpty {
get {
return ResourceManager.GetString("Common_NullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The partial view '{0}' was not found or no view engine supports the searched locations. The following locations were searched:{1}.
/// </summary>
internal static string Common_PartialViewNotFound {
get {
return ResourceManager.GetString("Common_PartialViewNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The property '{0}' cannot be null or empty..
/// </summary>
internal static string Common_PropertyCannotBeNullOrEmpty {
get {
return ResourceManager.GetString("Common_PropertyCannotBeNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The property {0}.{1} could not be found..
/// </summary>
internal static string Common_PropertyNotFound {
get {
return ResourceManager.GetString("Common_PropertyNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to False.
/// </summary>
internal static string Common_TriState_False {
get {
return ResourceManager.GetString("Common_TriState_False", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not Set.
/// </summary>
internal static string Common_TriState_NotSet {
get {
return ResourceManager.GetString("Common_TriState_NotSet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to True.
/// </summary>
internal static string Common_TriState_True {
get {
return ResourceManager.GetString("Common_TriState_True", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} must derive from {1}.
/// </summary>
internal static string Common_TypeMustDriveFromType {
get {
return ResourceManager.GetString("Common_TypeMustDriveFromType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value '{0}' is invalid..
/// </summary>
internal static string Common_ValueNotValidForProperty {
get {
return ResourceManager.GetString("Common_ValueNotValidForProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The view '{0}' or its master was not found or no view engine supports the searched locations. The following locations were searched:{1}.
/// </summary>
internal static string Common_ViewNotFound {
get {
return ResourceManager.GetString("Common_ViewNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' and '{1}' do not match..
/// </summary>
internal static string CompareAttribute_MustMatch {
get {
return ResourceManager.GetString("CompareAttribute_MustMatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find a property named {0}..
/// </summary>
internal static string CompareAttribute_UnknownProperty {
get {
return ResourceManager.GetString("CompareAttribute_UnknownProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A public action method '{0}' was not found on controller '{1}'..
/// </summary>
internal static string Controller_UnknownAction {
get {
return ResourceManager.GetString("Controller_UnknownAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The model of type '{0}' could not be updated..
/// </summary>
internal static string Controller_UpdateModel_UpdateUnsuccessful {
get {
return ResourceManager.GetString("Controller_UpdateModel_UpdateUnsuccessful", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The model of type '{0}' is not valid..
/// </summary>
internal static string Controller_Validate_ValidationFailed {
get {
return ResourceManager.GetString("Controller_Validate_ValidationFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot execute Controller with a null HttpContext..
/// </summary>
internal static string ControllerBase_CannotExecuteWithNullHttpContext {
get {
return ResourceManager.GetString("ControllerBase_CannotExecuteWithNullHttpContext", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A single instance of controller '{0}' cannot be used to handle multiple requests. If a custom controller factory is in use, make sure that it creates a new instance of the controller for each request..
/// </summary>
internal static string ControllerBase_CannotHandleMultipleRequests {
get {
return ResourceManager.GetString("ControllerBase_CannotHandleMultipleRequests", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred when trying to create the IControllerFactory '{0}'. Make sure that the controller factory has a public parameterless constructor..
/// </summary>
internal static string ControllerBuilder_ErrorCreatingControllerFactory {
get {
return ResourceManager.GetString("ControllerBuilder_ErrorCreatingControllerFactory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The IControllerFactory '{0}' did not return a controller for the name '{1}'..
/// </summary>
internal static string ControllerBuilder_FactoryReturnedNull {
get {
return ResourceManager.GetString("ControllerBuilder_FactoryReturnedNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The controller factory type '{0}' must implement the IControllerFactory interface..
/// </summary>
internal static string ControllerBuilder_MissingIControllerFactory {
get {
return ResourceManager.GetString("ControllerBuilder_MissingIControllerFactory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The view found at '{0}' was not created..
/// </summary>
internal static string CshtmlView_ViewCouldNotBeCreated {
get {
return ResourceManager.GetString("CshtmlView_ViewCouldNotBeCreated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The view at '{0}' must derive from WebViewPage, or WebViewPage<TModel>..
/// </summary>
internal static string CshtmlView_WrongViewBase {
get {
return ResourceManager.GetString("CshtmlView_WrongViewBase", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} has a DisplayColumn attribute for {1}, but property {1} does not exist..
/// </summary>
internal static string DataAnnotationsModelMetadataProvider_UnknownProperty {
get {
return ResourceManager.GetString("DataAnnotationsModelMetadataProvider_UnknownProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} has a DisplayColumn attribute for {1}, but property {1} does not have a public getter..
/// </summary>
internal static string DataAnnotationsModelMetadataProvider_UnreadableProperty {
get {
return ResourceManager.GetString("DataAnnotationsModelMetadataProvider_UnreadableProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} must have a public constructor which accepts three parameters of types {1}, {2}, and {3}.
/// </summary>
internal static string DataAnnotationsModelValidatorProvider_ConstructorRequirements {
get {
return ResourceManager.GetString("DataAnnotationsModelValidatorProvider_ConstructorRequirements", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} must have a public constructor which accepts two parameters of types {1} and {2}..
/// </summary>
internal static string DataAnnotationsModelValidatorProvider_ValidatableConstructorRequirements {
get {
return ResourceManager.GetString("DataAnnotationsModelValidatorProvider_ValidatableConstructorRequirements", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple types were found that match the controller named '{0}'. This can happen if the route that services this request does not specify namespaces to search for a controller that matches the request. If this is the case, register this route by calling an overload of the 'MapRoute' method that takes a 'namespaces' parameter.
///
///The request for '{0}' has found the following matching controllers:{1}.
/// </summary>
internal static string DefaultControllerFactory_ControllerNameAmbiguous_WithoutRouteUrl {
get {
return ResourceManager.GetString("DefaultControllerFactory_ControllerNameAmbiguous_WithoutRouteUrl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple types were found that match the controller named '{0}'. This can happen if the route that services this request ('{1}') does not specify namespaces to search for a controller that matches the request. If this is the case, register this route by calling an overload of the 'MapRoute' method that takes a 'namespaces' parameter.
///
///The request for '{0}' has found the following matching controllers:{2}.
/// </summary>
internal static string DefaultControllerFactory_ControllerNameAmbiguous_WithRouteUrl {
get {
return ResourceManager.GetString("DefaultControllerFactory_ControllerNameAmbiguous_WithRouteUrl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred when trying to create a controller of type '{0}'. Make sure that the controller has a parameterless public constructor..
/// </summary>
internal static string DefaultControllerFactory_ErrorCreatingController {
get {
return ResourceManager.GetString("DefaultControllerFactory_ErrorCreatingController", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The controller for path '{0}' was not found or does not implement IController..
/// </summary>
internal static string DefaultControllerFactory_NoControllerFound {
get {
return ResourceManager.GetString("DefaultControllerFactory_NoControllerFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The controller type '{0}' must implement IController..
/// </summary>
internal static string DefaultControllerFactory_TypeDoesNotSubclassControllerBase {
get {
return ResourceManager.GetString("DefaultControllerFactory_TypeDoesNotSubclassControllerBase", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value '{0}' is not valid for {1}..
/// </summary>
internal static string DefaultModelBinder_ValueInvalid {
get {
return ResourceManager.GetString("DefaultModelBinder_ValueInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A value is required..
/// </summary>
internal static string DefaultModelBinder_ValueRequired {
get {
return ResourceManager.GetString("DefaultModelBinder_ValueRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The number of ticks for the TimeSpan value must be greater than or equal to 0..
/// </summary>
internal static string DefaultViewLocationCache_NegativeTimeSpan {
get {
return ResourceManager.GetString("DefaultViewLocationCache_NegativeTimeSpan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} does not appear to implement Microsoft.Practices.ServiceLocation.IServiceLocator..
/// </summary>
internal static string DependencyResolver_DoesNotImplementICommonServiceLocator {
get {
return ResourceManager.GetString("DependencyResolver_DoesNotImplementICommonServiceLocator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type '{0}' does not inherit from Exception..
/// </summary>
internal static string ExceptionViewAttribute_NonExceptionType {
get {
return ResourceManager.GetString("ExceptionViewAttribute_NonExceptionType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The expression compiler was unable to evaluate the indexer expression '{0}' because it references the model parameter '{1}' which is unavailable..
/// </summary>
internal static string ExpressionHelper_InvalidIndexerExpression {
get {
return ResourceManager.GetString("ExpressionHelper_InvalidIndexerExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Order must be greater than or equal to -1..
/// </summary>
internal static string FilterAttribute_OrderOutOfRange {
get {
return ResourceManager.GetString("FilterAttribute_OrderOutOfRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The GET and POST HTTP methods are not supported..
/// </summary>
internal static string HtmlHelper_InvalidHttpMethod {
get {
return ResourceManager.GetString("HtmlHelper_InvalidHttpMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified HttpVerbs value is not supported. The supported values are Delete, Head, and Put..
/// </summary>
internal static string HtmlHelper_InvalidHttpVerb {
get {
return ResourceManager.GetString("HtmlHelper_InvalidHttpVerb", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is no ViewData item of type '{1}' that has the key '{0}'..
/// </summary>
internal static string HtmlHelper_MissingSelectData {
get {
return ResourceManager.GetString("HtmlHelper_MissingSelectData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value must be greater than or equal to zero..
/// </summary>
internal static string HtmlHelper_TextAreaParameterOutOfRange {
get {
return ResourceManager.GetString("HtmlHelper_TextAreaParameterOutOfRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Validation parameter names in unobtrusive client validation rules cannot be empty. Client rule type: {0}.
/// </summary>
internal static string HtmlHelper_ValidationParameterCannotBeEmpty {
get {
return ResourceManager.GetString("HtmlHelper_ValidationParameterCannotBeEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Validation parameter names in unobtrusive client validation rules must start with a lowercase letter and consist of only lowercase letters or digits. Validation parameter name: {0}, client rule type: {1}.
/// </summary>
internal static string HtmlHelper_ValidationParameterMustBeLegal {
get {
return ResourceManager.GetString("HtmlHelper_ValidationParameterMustBeLegal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Validation type names in unobtrusive client validation rules cannot be empty. Client rule type: {0}.
/// </summary>
internal static string HtmlHelper_ValidationTypeCannotBeEmpty {
get {
return ResourceManager.GetString("HtmlHelper_ValidationTypeCannotBeEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Validation type names in unobtrusive client validation rules must consist of only lowercase letters. Invalid name: "{0}", client rule type: {1}.
/// </summary>
internal static string HtmlHelper_ValidationTypeMustBeLegal {
get {
return ResourceManager.GetString("HtmlHelper_ValidationTypeMustBeLegal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: {0}.
/// </summary>
internal static string HtmlHelper_ValidationTypeMustBeUnique {
get {
return ResourceManager.GetString("HtmlHelper_ValidationTypeMustBeUnique", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ViewData item that has the key '{0}' is of type '{1}' but must be of type '{2}'..
/// </summary>
internal static string HtmlHelper_WrongSelectDataType {
get {
return ResourceManager.GetString("HtmlHelper_WrongSelectDataType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet..
/// </summary>
internal static string JsonRequest_GetNotAllowed {
get {
return ResourceManager.GetString("JsonRequest_GetNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred when trying to create the IModelBinder '{0}'. Make sure that the binder has a public parameterless constructor..
/// </summary>
internal static string ModelBinderAttribute_ErrorCreatingModelBinder {
get {
return ResourceManager.GetString("ModelBinderAttribute_ErrorCreatingModelBinder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type '{0}' does not implement the IModelBinder interface..
/// </summary>
internal static string ModelBinderAttribute_TypeNotIModelBinder {
get {
return ResourceManager.GetString("ModelBinderAttribute_TypeNotIModelBinder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type '{0}' contains multiple attributes that inherit from CustomModelBinderAttribute..
/// </summary>
internal static string ModelBinderDictionary_MultipleAttributes {
get {
return ResourceManager.GetString("ModelBinderDictionary_MultipleAttributes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This property setter is obsolete, because its value is derived from ModelMetadata.Model now..
/// </summary>
internal static string ModelMetadata_PropertyNotSettable {
get {
return ResourceManager.GetString("ModelMetadata_PropertyNotSettable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'inherits' keyword is not allowed when a '{0}' keyword is used..
/// </summary>
internal static string MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword {
get {
return ResourceManager.GetString("MvcRazorCodeParser_CannotHaveModelAndInheritsKeyword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The '{0}' keyword must be followed by a type name on the same line..
/// </summary>
internal static string MvcRazorCodeParser_ModelKeywordMustBeFollowedByTypeName {
get {
return ResourceManager.GetString("MvcRazorCodeParser_ModelKeywordMustBeFollowedByTypeName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only one '{0}' statement is allowed in a file..
/// </summary>
internal static string MvcRazorCodeParser_OnlyOneModelStatementIsAllowed {
get {
return ResourceManager.GetString("MvcRazorCodeParser_OnlyOneModelStatementIsAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OutputCacheAttribute is not allowed on child actions which are children of an already cached child action..
/// </summary>
internal static string OutputCacheAttribute_CannotNestChildCache {
get {
return ResourceManager.GetString("OutputCacheAttribute_CannotNestChildCache", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OutputCacheAttribute for child actions only supports Duration, VaryByCustom, and VaryByParam values. Please do not set CacheProfile, Location, NoStore, SqlDependency, VaryByContentEncoding, or VaryByHeader values for child actions..
/// </summary>
internal static string OutputCacheAttribute_ChildAction_UnsupportedSetting {
get {
return ResourceManager.GetString("OutputCacheAttribute_ChildAction_UnsupportedSetting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duration must be a positive number..
/// </summary>
internal static string OutputCacheAttribute_InvalidDuration {
get {
return ResourceManager.GetString("OutputCacheAttribute_InvalidDuration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to VaryByParam must be '*', 'none', or a semicolon-delimited list of keys..
/// </summary>
internal static string OutputCacheAttribute_InvalidVaryByParam {
get {
return ResourceManager.GetString("OutputCacheAttribute_InvalidVaryByParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The associated metadata type for type '{0}' contains the following unknown properties or fields: {1}. Please make sure that the names of these members match the names of the properties on the main type..
/// </summary>
internal static string PrivateAssociatedMetadataTypeTypeDescriptor_MetadataTypeContainsUnknownProperties {
get {
return ResourceManager.GetString("PrivateAssociatedMetadataTypeTypeDescriptor_MetadataTypeContainsUnknownProperties" +
"", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Child actions are not allowed to perform redirect actions..
/// </summary>
internal static string RedirectAction_CannotRedirectInChildAction {
get {
return ResourceManager.GetString("RedirectAction_CannotRedirectInChildAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot create a descriptor for instance method '{0}' on type '{1}' because the type does not derive from ControllerBase..
/// </summary>
internal static string ReflectedActionDescriptor_CannotCallInstanceMethodOnNonControllerType {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_CannotCallInstanceMethodOnNonControllerType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot call action method '{0}' on controller '{1}' because the parameter '{2}' is passed by reference..
/// </summary>
internal static string ReflectedActionDescriptor_CannotCallMethodsWithOutOrRefParameters {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_CannotCallMethodsWithOutOrRefParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot call action method '{0}' on controller '{1}' because the action method is a generic method..
/// </summary>
internal static string ReflectedActionDescriptor_CannotCallOpenGenericMethods {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_CannotCallOpenGenericMethods", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot call action method '{0}' on controller '{1}' because the action method is a static method..
/// </summary>
internal static string ReflectedActionDescriptor_CannotCallStaticMethod {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_CannotCallStaticMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters dictionary contains a null entry for parameter '{0}' of non-nullable type '{1}' for method '{2}' in '{3}'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter..
/// </summary>
internal static string ReflectedActionDescriptor_ParameterCannotBeNull {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_ParameterCannotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters dictionary does not contain an entry for parameter '{0}' of type '{1}' for method '{2}' in '{3}'. The dictionary must contain an entry for each parameter, including parameters that have null values..
/// </summary>
internal static string ReflectedActionDescriptor_ParameterNotInDictionary {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_ParameterNotInDictionary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters dictionary contains an invalid entry for parameter '{0}' for method '{1}' in '{2}'. The dictionary contains a value of type '{3}', but the parameter requires a value of type '{4}'..
/// </summary>
internal static string ReflectedActionDescriptor_ParameterValueHasWrongType {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_ParameterValueHasWrongType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The asynchronous action method '{0}' cannot be executed synchronously..
/// </summary>
internal static string ReflectedAsyncActionDescriptor_CannotExecuteSynchronously {
get {
return ResourceManager.GetString("ReflectedAsyncActionDescriptor_CannotExecuteSynchronously", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter '{0}' on method '{1}' contains multiple attributes that inherit from CustomModelBinderAttribute..
/// </summary>
internal static string ReflectedParameterBindingInfo_MultipleConverterAttributes {
get {
return ResourceManager.GetString("ReflectedParameterBindingInfo_MultipleConverterAttributes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No url for remote validation could be found..
/// </summary>
internal static string RemoteAttribute_NoUrlFound {
get {
return ResourceManager.GetString("RemoteAttribute_NoUrlFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is invalid..
/// </summary>
internal static string RemoteAttribute_RemoteValidationFailed {
get {
return ResourceManager.GetString("RemoteAttribute_RemoteValidationFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The requested resource can only be accessed via SSL..
/// </summary>
internal static string RequireHttpsAttribute_MustUseSsl {
get {
return ResourceManager.GetString("RequireHttpsAttribute_MustUseSsl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The SessionStateTempDataProvider class requires session state to be enabled..
/// </summary>
internal static string SessionStateTempDataProvider_SessionStateDisabled {
get {
return ResourceManager.GetString("SessionStateTempDataProvider_SessionStateDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An instance of {0} was found in the resolver as well as a custom registered provider in {1}. Please set only one or the other..
/// </summary>
internal static string SingleServiceResolver_CannotRegisterTwoInstances {
get {
return ResourceManager.GetString("SingleServiceResolver_CannotRegisterTwoInstances", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An operation that crossed a synchronization context failed. See the inner exception for more information..
/// </summary>
internal static string SynchronizationContextUtil_ExceptionThrown {
get {
return ResourceManager.GetString("SynchronizationContextUtil_ExceptionThrown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to locate an appropriate template for type {0}..
/// </summary>
internal static string TemplateHelpers_NoTemplate {
get {
return ResourceManager.GetString("TemplateHelpers_NoTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions..
/// </summary>
internal static string TemplateHelpers_TemplateLimitations {
get {
return ResourceManager.GetString("TemplateHelpers_TemplateLimitations", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Collection template was used with an object of type '{0}', which does not implement System.IEnumerable..
/// </summary>
internal static string Templates_TypeMustImplementIEnumerable {
get {
return ResourceManager.GetString("Templates_TypeMustImplementIEnumerable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This file is automatically generated. Please do not modify the contents of this file..
/// </summary>
internal static string TypeCache_DoNotModify {
get {
return ResourceManager.GetString("TypeCache_DoNotModify", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The model object inside the metadata claimed to be compatible with {0}, but was actually {1}..
/// </summary>
internal static string ValidatableObjectAdapter_IncompatibleType {
get {
return ResourceManager.GetString("ValidatableObjectAdapter_IncompatibleType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter conversion from type '{0}' to type '{1}' failed. See the inner exception for more information..
/// </summary>
internal static string ValueProviderResult_ConversionThrew {
get {
return ResourceManager.GetString("ValueProviderResult_ConversionThrew", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter conversion from type '{0}' to type '{1}' failed because no type converter can convert between these types..
/// </summary>
internal static string ValueProviderResult_NoConverterExists {
get {
return ResourceManager.GetString("ValueProviderResult_NoConverterExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The model item passed into the dictionary is null, but this dictionary requires a non-null model item of type '{0}'..
/// </summary>
internal static string ViewDataDictionary_ModelCannotBeNull {
get {
return ResourceManager.GetString("ViewDataDictionary_ModelCannotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The model item passed into the dictionary is of type '{0}', but this dictionary requires a model item of type '{1}'..
/// </summary>
internal static string ViewDataDictionary_WrongTModelType {
get {
return ResourceManager.GetString("ViewDataDictionary_WrongTModelType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A ViewMasterPage can be used only with content pages that derive from ViewPage or ViewPage<TModel>..
/// </summary>
internal static string ViewMasterPage_RequiresViewPage {
get {
return ResourceManager.GetString("ViewMasterPage_RequiresViewPage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Execution of the child request failed. Please examine the InnerException for more information..
/// </summary>
internal static string ViewPageHttpHandlerWrapper_ExceptionOccurred {
get {
return ResourceManager.GetString("ViewPageHttpHandlerWrapper_ExceptionOccurred", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A ViewStartPage can be used only with with a page that derives from WebViewPage or another ViewStartPage..
/// </summary>
internal static string ViewStartPage_RequiresMvcRazorView {
get {
return ResourceManager.GetString("ViewStartPage_RequiresMvcRazorView", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ViewUserControl '{0}' cannot find an IViewDataContainer object. The ViewUserControl must be inside a ViewPage, a ViewMasterPage, or another ViewUserControl..
/// </summary>
internal static string ViewUserControl_RequiresViewDataProvider {
get {
return ResourceManager.GetString("ViewUserControl_RequiresViewDataProvider", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A ViewUserControl can be used only in pages that derive from ViewPage or ViewPage<TModel>..
/// </summary>
internal static string ViewUserControl_RequiresViewPage {
get {
return ResourceManager.GetString("ViewUserControl_RequiresViewPage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A master name cannot be specified when the view is a ViewUserControl..
/// </summary>
internal static string WebFormViewEngine_UserControlCannotHaveMaster {
get {
return ResourceManager.GetString("WebFormViewEngine_UserControlCannotHaveMaster", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The view found at '{0}' was not created..
/// </summary>
internal static string WebFormViewEngine_ViewCouldNotBeCreated {
get {
return ResourceManager.GetString("WebFormViewEngine_ViewCouldNotBeCreated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The view at '{0}' must derive from ViewPage, ViewPage<TModel>, ViewUserControl, or ViewUserControl<TModel>..
/// </summary>
internal static string WebFormViewEngine_WrongViewBase {
get {
return ResourceManager.GetString("WebFormViewEngine_WrongViewBase", resourceCulture);
}
}
}
}
|