generics.strings.pas 937 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2014 by Maciej Izak (hnb)
  4. member of the Free Sparta development team (http://freesparta.com)
  5. Copyright(c) 2004-2014 DaThoX
  6. It contains the Free Pascal generics 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. unit Generics.Strings;
  14. {$mode objfpc}{$H+}
  15. interface
  16. resourcestring
  17. SArgumentOutOfRange = 'Argument out of range';
  18. SDuplicatesNotAllowed = 'Duplicates not allowed in dictionary';
  19. SDictionaryKeyDoesNotExist = 'Dictionary key does not exist';
  20. SItemNotFound = 'Item not found';
  21. implementation
  22. end.