home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Source / Vcl / webconst.pas < prev   
Pascal/Delphi Source File  |  1999-08-11  |  1KB  |  34 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1997,99 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit WebConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   sInvalidActionRegistration = 'Invalid Action registration';
  16.   sDuplicateActionName = 'Duplicate action name';
  17.   sOnlyOneDispatcher = 'Only one WebDispatcher per form/data module';
  18.   sHTTPItemName = 'Name';
  19.   sHTTPItemURI = 'PathInfo';
  20.   sHTTPItemEnabled = 'Enabled';
  21.   sHTTPItemDefault = 'Default';
  22.   sHTTPItemProducer = 'Producer';
  23.  
  24.   sResNotFound = 'Resource %s not found';
  25.  
  26.   sTooManyColumns = 'Too many table columns';
  27.   sFieldNameColumn = 'Field Name';
  28.   sFieldTypeColumn = 'Field Type';
  29.  
  30. implementation
  31.  
  32. end.
  33.  
  34.