home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kolekce / d3456 / ALEXSOFT.ZIP / DBXCNSTS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-09-04  |  2.5 KB  |  47 lines

  1. (*////////////////////////////////////////////////////////////////////////////
  2. //   Part of AlexSoft VCL/DLL Library.                                      //
  3. //   All rights reserved. (c) Copyright 1998.                               //
  4. //   Created by: Alex Rabichooc                                             //
  5. //**************************************************************************//
  6. //  Users of this unit must accept this disclaimer of warranty:             //
  7. //    "This unit is supplied as is. The author disclaims all warranties,    //
  8. //    expressed or implied, including, without limitation, the warranties   //
  9. //    of merchantability and of fitness for any purpose.                    //
  10. //    The author assumes no liability for damages, direct or                //
  11. //    consequential, which may result from the use of this unit."           //
  12. //                                                                          //
  13. //  This Unit is donated to the public as public domain.                    //
  14. //                                                                          //
  15. //  This Unit can be freely used and distributed in commercial and          //
  16. //  private environments provided this notice is not modified in any way.   //
  17. //                                                                          //
  18. //  If you do find this Unit handy and you feel guilty for using such a     //
  19. //  great product without paying someone - sorry :-)                        //
  20. //                                                                          //
  21. //  Please forward any comments or suggestions to Alex Rabichooc at:        //
  22. //                                                                          //
  23. //  a_rabichooc@yahoo.com or alex@carmez.mldnet.com                         //
  24. /////////////////////////////////////////////////////////////////////////////*)
  25.  
  26. unit DbXCnsts;
  27.  
  28. interface
  29.  
  30. ResourceString
  31.   SSearchRecord = 'Search';
  32.   SMoreInfo = 'More Info';
  33.   SDuplicateRecord = 'Duplicate';
  34.   SCantChangeReadOnly = 'Cannot change ReadOnly when CreateMode <> cmAuto';
  35.   SCantChangeDataSource = 'Cannot change DataSource when CreateMode <> cmAuto';
  36.   SCantInsertComponent = '%s does not allow insertion of component %s';
  37.   SInvalidValue = 'Invalid value';
  38.   SInvalidRange = 'Valid value range is: 0..100';
  39.   SOverWriteConfirm = 'File %s exists. Overwrite it?';
  40.   SChanged = 'Modified';
  41.   SSaveConfirm = 'Save changes?';
  42.   SInsert = 'Insert';
  43.   SOverWrite = 'Overwrite';
  44.   SValueNotFound = 'Value not found.';
  45.  
  46. implementation
  47. end.