generics.strings.pas 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. This file is part of the Free Pascal/NewPascal run time library.
  3. Copyright (c) 2014 by Maciej Izak (hnb)
  4. member of the NewPascal development team (http://newpascal.org)
  5. Copyright(c) 2004-2018 DaThoX
  6. It contains the generics collections library
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. {$IFNDEF FPC_DOTTEDUNITS}
  14. unit Generics.Strings;
  15. {$ENDIF FPC_DOTTEDUNITS}
  16. {$mode objfpc}{$H+}
  17. interface
  18. resourcestring
  19. SArgumentOutOfRange = 'Argument out of range';
  20. SArgumentNilNode = 'Node is nil';
  21. SDuplicatesNotAllowed = 'Duplicates not allowed in dictionary';
  22. SCollectionInconsistency = 'Collection inconsistency';
  23. SCollectionDuplicate = 'Collection does not allow duplicates';
  24. SDictionaryKeyDoesNotExist = 'Dictionary key does not exist';
  25. SDictionaryKeyNNNDoesNotExist = 'Dictionary key "%s" does not exist';
  26. SItemNotFound = 'Item not found';
  27. SErrSameArrays = 'Cannot copy between same arrays';
  28. implementation
  29. end.