generics.strings.pas 474 B

12345678910111213141516171819
  1. unit Generics.Strings;
  2. {$Mode Delphi}
  3. interface
  4. resourcestring
  5. SArgumentOutOfRange = 'Argument out of range';
  6. //SArgumentNilNode = 'Node is nil';
  7. //SDuplicatesNotAllowed = 'Duplicates not allowed in dictionary';
  8. //SCollectionInconsistency = 'Collection inconsistency';
  9. //SCollectionDuplicate = 'Collection does not allow duplicates';
  10. //SDictionaryKeyDoesNotExist = 'Dictionary key does not exist';
  11. //SItemNotFound = 'Item not found';
  12. implementation
  13. end.