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